From 82de663bc8470cd72c1f28e2c3ffba8d11f9fb1c Mon Sep 17 00:00:00 2001 From: bgobandit Date: Sat, 27 Feb 2016 18:13:33 -0500 Subject: [PATCH 01/77] Shuttle collisions now deal damage to the chest and head for human mobs, gib all other mobs. --- code/modules/shuttle/shuttle.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 13b3d500a17..cf4ff2e8faa 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -455,12 +455,15 @@ for(var/turf/T in L) for(var/atom/movable/AM in T) if(ismob(AM)) - if(istype(AM, /mob/living)) + if(istype(AM, /mob/living/carbon/human)) var/mob/living/M = AM M.Paralyse(10) - M.take_organ_damage(80) + M.apply_damage(60, BRUTE, "chest") + M.apply_damage(60, BRUTE, "head") M.anchored = 0 else + var/mob/M = AM + M.gib() continue if(!AM.anchored) From f30a9287a5c5c1db81c0aab2c9fc39c704a442d3 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Sun, 28 Feb 2016 17:54:31 +0000 Subject: [PATCH 02/77] Removed Detective from Traitor protected roles list. --- code/game/gamemodes/traitor/traitor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm index 1ca929d9c03..6cc138f70aa 100644 --- a/code/game/gamemodes/traitor/traitor.dm +++ b/code/game/gamemodes/traitor/traitor.dm @@ -10,7 +10,7 @@ config_tag = "traitor" antag_flag = ROLE_TRAITOR restricted_jobs = list("Cyborg")//They are part of the AI if he is traitor so are they, they use to get double chances - protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain") + protected_jobs = list("Security Officer", "Warden", "Head of Security", "Captain") required_players = 0 required_enemies = 1 recommended_enemies = 4 From 7742f7df0973970ec7706c88a7717f8475d552a7 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Sun, 28 Feb 2016 22:50:58 +0000 Subject: [PATCH 03/77] The detective no longer starts implanted with loyalty. --- code/modules/jobs/job_types/security.dm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/modules/jobs/job_types/security.dm b/code/modules/jobs/job_types/security.dm index 7f47d287f3c..f44849ae6da 100644 --- a/code/modules/jobs/job_types/security.dm +++ b/code/modules/jobs/job_types/security.dm @@ -160,14 +160,6 @@ Detective var/obj/item/clothing/mask/cigarette/cig = H.wear_mask cig.light("") - if(visualsOnly) - return - - var/obj/item/weapon/implant/loyalty/L = new/obj/item/weapon/implant/loyalty(H) - L.imp_in = H - L.implanted = 1 - H.sec_hud_set_implants() - /* Security Officer */ From 7f79c983c3b6064a1d2a37bd84448fff00d999a7 Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sun, 28 Feb 2016 20:38:32 -0300 Subject: [PATCH 04/77] Nerfs the detective's revolver It now takes three full seconds to reload. --- code/modules/projectiles/ammunition.dm | 7 ++++++- code/modules/projectiles/ammunition/magazines.dm | 11 +++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index f13303da093..c2e2501ce35 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -114,8 +114,13 @@ return 0 +/obj/item/ammo_box/proc/can_load(mob/user) + return 1 + /obj/item/ammo_box/attackby(obj/item/A, mob/user, params, silent = 0, replace_spent = 0) var/num_loaded = 0 + if(!can_load(user)) + return if(istype(A, /obj/item/ammo_box)) var/obj/item/ammo_box/AM = A for(var/obj/item/ammo_casing/AC in AM.stored_ammo) @@ -157,4 +162,4 @@ //Behavior for magazines /obj/item/ammo_box/magazine/proc/ammo_count() - return stored_ammo.len \ No newline at end of file + return stored_ammo.len diff --git a/code/modules/projectiles/ammunition/magazines.dm b/code/modules/projectiles/ammunition/magazines.dm index a056d8e95c2..12400eda73e 100644 --- a/code/modules/projectiles/ammunition/magazines.dm +++ b/code/modules/projectiles/ammunition/magazines.dm @@ -60,11 +60,18 @@ return 0 /obj/item/ammo_box/magazine/internal/cylinder/rev38 - name = "d-tiv revolver cylinder" + name = "detective revolver cylinder" ammo_type = /obj/item/ammo_casing/c38 caliber = "38" max_ammo = 6 +/obj/item/ammo_box/magazine/internal/cylinder/rev38/can_load(mob/user) + user << "You start reloading \the [src]..." + if(!do_after(user, 30)) + user << "You didn't manage to reload \the [src]!" + return 0 + return 1 + /obj/item/ammo_box/magazine/internal/cylinder/grenademulti name = "grenade launcher internal magazine" ammo_type = /obj/item/ammo_casing/a40mm @@ -372,4 +379,4 @@ obj/item/ammo_box/magazine/tommygunm45 /obj/item/ammo_box/magazine/toy/m762/update_icon() ..() - icon_state = "a762-[round(ammo_count(),10)]" \ No newline at end of file + icon_state = "a762-[round(ammo_count(),10)]" From 6ce6e4f004a2cce79d24a9f5e5fa6a0878e7a0d2 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Sun, 28 Feb 2016 23:46:20 +0000 Subject: [PATCH 05/77] Removed Detective's access to security lockers and secbots. wrong access --- .../structures/crates_lockers/closets/secure/security.dm | 1 - code/modules/jobs/job_types/security.dm | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index f9574074328..91ed010dfc9 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -170,7 +170,6 @@ new /obj/item/clothing/head/fedora(src) new /obj/item/clothing/shoes/laceup(src) new /obj/item/weapon/storage/box/evidence(src) - new /obj/item/device/radio/headset/headset_sec/alt(src) new /obj/item/device/radio/headset/headset_sec(src) new /obj/item/device/detective_scanner(src) new /obj/item/weapon/holosign_creator/security(src) diff --git a/code/modules/jobs/job_types/security.dm b/code/modules/jobs/job_types/security.dm index f44849ae6da..1ca0b3a11be 100644 --- a/code/modules/jobs/job_types/security.dm +++ b/code/modules/jobs/job_types/security.dm @@ -135,8 +135,8 @@ Detective outfit = /datum/outfit/job/detective - access = list(access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_court, access_weapons, access_brig, access_security) - minimal_access = list(access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_court, access_weapons) + access = list(access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_court, access_brig, access_weapons) + minimal_access = list(access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_court, access_brig, access_weapons) /datum/outfit/job/detective name = "Detective" From 400da855b1ae34d955996b340413372a5ae0a198 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Mon, 29 Feb 2016 17:02:26 +0000 Subject: [PATCH 06/77] Changed Box Brig Security Office access to 'access_security'. --- _maps/map_files/TgStation/tgstation.2.1.3.dmm | 85937 ++++++++++++++-- 1 file changed, 75623 insertions(+), 10314 deletions(-) diff --git a/_maps/map_files/TgStation/tgstation.2.1.3.dmm b/_maps/map_files/TgStation/tgstation.2.1.3.dmm index 5e7a7c40f37..44902380e2d 100644 --- a/_maps/map_files/TgStation/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation/tgstation.2.1.3.dmm @@ -5,13 +5,13 @@ "aab" = ( /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/space; + width = 18 }, /turf/space, /area/space) @@ -49,8 +49,8 @@ "aaj" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/wall/r_wall, /area/security/prison) @@ -58,7 +58,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -67,11 +67,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -80,11 +80,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -94,7 +94,7 @@ /obj/item/seeds/ambrosiavulgarisseed, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aao" = ( @@ -108,25 +108,25 @@ /obj/item/seeds/carrotseed, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aaq" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /obj/machinery/hydroponics/soil, /obj/item/device/analyzer/plant_analyzer, /obj/machinery/camera{ c_tag = "Prison Common Room"; - network = list("SS13","Prison") + network = list("SS13","Prison") }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aar" = ( @@ -134,7 +134,7 @@ /obj/item/seeds/glowshroom, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aas" = ( @@ -157,8 +157,8 @@ "aav" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -167,7 +167,7 @@ "aaw" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plating, /area/security/prison) @@ -194,7 +194,7 @@ /obj/item/seeds/potatoseed, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aaC" = ( @@ -207,7 +207,7 @@ /obj/item/seeds/grassseed, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aaE" = ( @@ -216,7 +216,7 @@ /obj/item/weapon/cultivator, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 6 + dir = 6 }, /area/security/prison) "aaF" = ( @@ -225,13 +225,13 @@ /obj/item/weapon/cultivator, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "green" + icon_state = "green" }, /area/security/prison) "aaG" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -264,8 +264,8 @@ "aaL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/window/reinforced{ dir = 1 @@ -281,7 +281,7 @@ /obj/structure/table, /obj/machinery/newscaster{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -307,8 +307,8 @@ "aaQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -341,7 +341,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel, @@ -362,8 +362,8 @@ /obj/structure/window/reinforced, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -375,7 +375,7 @@ "aba" = ( /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /obj/structure/lattice, /turf/space, @@ -442,7 +442,7 @@ "abk" = ( /obj/machinery/keycard_auth{ pixel_x = 24; - pixel_y = 10 + pixel_y = 10 }, /obj/structure/table/wood, /obj/item/device/radio/off, @@ -461,7 +461,7 @@ /obj/item/weapon/grenade/barrier, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abn" = ( @@ -470,12 +470,12 @@ }, /obj/structure/closet/secure_closet{ anchored = 1; - name = "Contraband Locker"; - req_access_txt = "3" + name = "Contraband Locker"; + req_access_txt = "3" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abo" = ( @@ -497,7 +497,7 @@ "abs" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/tracker, /turf/simulated/floor/plasteel/airless{ @@ -507,32 +507,32 @@ "abt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 9 + dir = 9 }, /area/security/transfer) "abu" = ( /obj/machinery/door/poddoor{ id = "executionspaceblast"; - name = "blast door" + name = "blast door" }, /turf/simulated/floor/plating, /area/security/transfer) "abv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 5 + dir = 5 }, /area/security/transfer) "abw" = ( @@ -541,12 +541,12 @@ }, /obj/machinery/flasher{ id = "executionflash"; - pixel_x = 0; - pixel_y = 25 + pixel_x = 0; + pixel_y = 25 }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 1 + dir = 1 }, /area/security/transfer) "abx" = ( @@ -571,9 +571,9 @@ /obj/machinery/light, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -599,7 +599,7 @@ /obj/machinery/light, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -608,8 +608,8 @@ "abE" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -626,10 +626,10 @@ "abG" = ( /obj/machinery/door/window/westleft{ base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Unisex Showers"; - req_access_txt = "0" + dir = 8; + icon_state = "right"; + name = "Unisex Showers"; + req_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -639,15 +639,15 @@ /obj/item/weapon/grenade/barrier, /obj/machinery/camera/motion{ c_tag = "Armory Motion Sensor"; - dir = 2; - name = "motion-sensitive security camera" + dir = 2; + name = "motion-sensitive security camera" }, /obj/machinery/airalarm{ pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abI" = ( @@ -666,7 +666,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abJ" = ( @@ -676,7 +676,7 @@ /obj/item/key/security, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abK" = ( @@ -686,17 +686,17 @@ }, /obj/machinery/button/door{ id = "permabolt3"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "0"; - specialfunctions = 4 + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -709,17 +709,17 @@ }, /obj/machinery/button/door{ id = "permabolt2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "0"; - specialfunctions = 4 + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -749,7 +749,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abO" = ( @@ -779,14 +779,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "abR" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -799,21 +799,21 @@ "abT" = ( /obj/machinery/requests_console{ announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_x = 0; - pixel_y = 30 + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = 0; + pixel_y = 30 }, /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = -31 + name = "Station Intercom (General)"; + pixel_x = -31 }, /obj/structure/table/wood, /obj/item/weapon/storage/box/seccarts{ pixel_x = 3; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/box/deputy, /turf/simulated/floor/carpet, @@ -832,7 +832,7 @@ }, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/table/wood, /obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, @@ -843,7 +843,7 @@ "abX" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/tracker, /turf/simulated/floor/plasteel/airless{ @@ -857,9 +857,9 @@ "abZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/lattice/catwalk, /turf/space, @@ -867,18 +867,18 @@ "aca" = ( /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 8 + dir = 8 }, /area/security/transfer) "acb" = ( /obj/machinery/sparker{ dir = 2; - id = "executionburn"; - pixel_x = 25 + id = "executionburn"; + pixel_x = 25 }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 4 + dir = 4 }, /area/security/transfer) "acc" = ( @@ -896,11 +896,11 @@ "ace" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell3"; - name = "cell blast door" + name = "cell blast door" }, /obj/machinery/door/airlock/glass{ id_tag = "permabolt3"; - name = "Cell 3" + name = "Cell 3" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -909,11 +909,11 @@ "acf" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell2"; - name = "cell blast door" + name = "cell blast door" }, /obj/machinery/door/airlock/glass{ id_tag = "permabolt2"; - name = "Cell 2" + name = "Cell 2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -923,16 +923,16 @@ "acg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ id = "permacell1"; - name = "cell blast door" + name = "cell blast door" }, /obj/machinery/door/airlock/glass{ id_tag = "permabolt1"; - name = "Cell 1" + name = "Cell 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -942,7 +942,7 @@ "ach" = ( /obj/machinery/door/airlock{ name = "Unisex Restroom"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -958,13 +958,13 @@ /obj/structure/closet/secure_closet/lethalshots, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "acj" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/suit_storage_unit/hos, /turf/simulated/floor/carpet, @@ -972,31 +972,31 @@ "ack" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "acl" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "acm" = ( /obj/machinery/power/apc{ cell_type = 5000; - dir = 4; - name = "Armory APC"; - pixel_x = 24; - pixel_y = 0 + dir = 4; + name = "Armory APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + pixel_y = 1; + d2 = 2 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "acn" = ( @@ -1035,12 +1035,12 @@ "acs" = ( /obj/machinery/newscaster/security_unit{ pixel_x = -30; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Head of Security's Office"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/recharger{ pixel_y = 4 @@ -1058,12 +1058,12 @@ "acv" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/suit_storage_unit/security, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "acw" = ( @@ -1076,9 +1076,9 @@ "acx" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/lattice/catwalk, /turf/space, @@ -1094,7 +1094,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 10 + dir = 10 }, /area/security/transfer) "acA" = ( @@ -1103,28 +1103,28 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 6 + dir = 6 }, /area/security/transfer) "acB" = ( /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 2 + dir = 2 }, /area/security/transfer) "acC" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 3"; - network = list("SS13","Prison") + network = list("SS13","Prison") }, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = 0; - pixel_y = 24; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 0; + pixel_y = 24; + prison_radio = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1137,17 +1137,17 @@ }, /obj/machinery/button/door{ id = "permabolt1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "0"; - specialfunctions = 4 + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1157,15 +1157,15 @@ /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 2"; - network = list("SS13","Prison") + network = list("SS13","Prison") }, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = 0; - pixel_y = 24; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 0; + pixel_y = 24; + prison_radio = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1184,15 +1184,15 @@ /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 1"; - network = list("SS13","Prison") + network = list("SS13","Prison") }, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = 0; - pixel_y = 24; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 0; + pixel_y = 24; + prison_radio = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1201,26 +1201,26 @@ "acI" = ( /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; - name = "blast door" + layer = 2.9; + name = "blast door" }, /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/window/westright{ dir = 1; - name = "Transfer Room"; - req_access_txt = "2" + name = "Transfer Room"; + req_access_txt = "2" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/security/transfer) "acJ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -1230,9 +1230,9 @@ "acK" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/light/small{ dir = 4 @@ -1244,14 +1244,14 @@ "acL" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "acM" = ( /obj/structure/rack, /obj/item/weapon/storage/box/chemimp{ pixel_x = 4; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/box/trackimp, /obj/machinery/atmospherics/components/unary/vent_scrubber{ @@ -1260,7 +1260,7 @@ /obj/item/weapon/storage/lockbox/loyalty, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/ai_monitored/security/armory) "acN" = ( @@ -1268,19 +1268,19 @@ /obj/item/weapon/storage/box/handcuffs, /obj/item/weapon/storage/box/flashbangs{ pixel_x = -2; - pixel_y = -2 + pixel_y = -2 }, /obj/item/weapon/storage/box/teargas, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/ai_monitored/security/armory) "acO" = ( /obj/structure/closet/l3closet/security, /obj/machinery/camera{ c_tag = "Brig Equipment Room"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -1302,12 +1302,12 @@ /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ on = 0; - pixel_x = -3; - pixel_y = 8 + pixel_x = -3; + pixel_y = 8 }, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /turf/simulated/floor/carpet, /area/security/hos) @@ -1319,11 +1319,11 @@ "acT" = ( /obj/machinery/door/window/eastleft{ name = "armoury desk"; - req_access_txt = "1" + req_access_txt = "1" }, /obj/machinery/door/window/westleft{ name = "armoury desk"; - req_access_txt = "3" + req_access_txt = "3" }, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel, @@ -1331,18 +1331,18 @@ "acU" = ( /obj/machinery/door/airlock/external{ name = "Security External Airlock"; - req_access_txt = "63" + req_access_txt = "63" }, /turf/simulated/floor/plating, /area/security/main) "acV" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/solar{ id = "auxsolareast"; - name = "Port Auxiliary Solar Array" + name = "Port Auxiliary Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -1359,8 +1359,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; - name = "blast door" + layer = 2.9; + name = "blast door" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, @@ -1379,8 +1379,8 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; - name = "blast door" + layer = 2.9; + name = "blast door" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, @@ -1391,7 +1391,7 @@ }, /obj/machinery/flasher{ id = "PCell 3"; - pixel_x = -28 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1408,11 +1408,11 @@ "adc" = ( /obj/machinery/flasher{ id = "PCell 1"; - pixel_x = -28 + pixel_x = -28 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1424,7 +1424,7 @@ }, /obj/machinery/flasher{ id = "PCell 2"; - pixel_x = -28 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1433,8 +1433,8 @@ "ade" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -1454,12 +1454,12 @@ "adg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "adh" = ( @@ -1471,7 +1471,7 @@ /obj/machinery/suit_storage_unit/security, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "adj" = ( @@ -1480,36 +1480,36 @@ /obj/item/weapon/gun/energy/ionrifle, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/ai_monitored/security/armory) "adk" = ( /obj/structure/rack, /obj/item/weapon/gun/projectile/shotgun/riot{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/gun/projectile/shotgun/riot, /obj/item/weapon/gun/projectile/shotgun/riot{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/ai_monitored/security/armory) "adl" = ( /obj/machinery/door/poddoor/shutters{ id = "armory"; - name = "Armoury Shutter" + name = "Armoury Shutter" }, /obj/machinery/button/door{ id = "armory"; - name = "Armory Shutters"; - pixel_x = 0; - pixel_y = -26; - req_access_txt = "3" + name = "Armory Shutters"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "3" }, /turf/simulated/floor/plasteel, /area/ai_monitored/security/armory) @@ -1534,8 +1534,8 @@ "adp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/security/hos) @@ -1543,28 +1543,28 @@ /obj/machinery/flasher/portable, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "adr" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/security/main) "ads" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/solar{ id = "auxsolareast"; - name = "Port Auxiliary Solar Array" + name = "Port Auxiliary Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -1578,19 +1578,19 @@ "adu" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1598,13 +1598,13 @@ "adv" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1612,7 +1612,7 @@ "adw" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1620,7 +1620,7 @@ "adx" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -1632,19 +1632,19 @@ "adz" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1652,13 +1652,13 @@ "adA" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1666,7 +1666,7 @@ "adB" = ( /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /turf/space, /area/space) @@ -1688,15 +1688,15 @@ "adD" = ( /obj/machinery/button/flasher{ id = "executionflash"; - pixel_x = 24; - pixel_y = 5 + pixel_x = 24; + pixel_y = 5 }, /obj/machinery/button/door{ id = "executionspaceblast"; - name = "Vent to Space"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "7" + name = "Vent to Space"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "7" }, /obj/machinery/atmospherics/pipe/simple/general/hidden, /turf/simulated/floor/plasteel{ @@ -1710,7 +1710,7 @@ }, /obj/item/device/taperecorder{ pixel_x = -3; - pixel_y = 0 + pixel_y = 0 }, /obj/item/device/assembly/flash/handheld, /obj/item/weapon/reagent_containers/spray/pepper, @@ -1729,7 +1729,7 @@ "adH" = ( /obj/machinery/door/airlock/glass_security{ name = "Long-Term Cell 3"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1738,7 +1738,7 @@ "adI" = ( /obj/machinery/door/airlock/glass_security{ name = "Long-Term Cell 2"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -1748,12 +1748,12 @@ "adJ" = ( /obj/machinery/door/airlock/glass_security{ name = "Long-Term Cell 1"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -1766,34 +1766,34 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "adL" = ( /obj/item/weapon/storage/toolbox/drone, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "adM" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/carpet, /area/security/hos) "adN" = ( /obj/machinery/power/apc{ dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -24; - pixel_y = 0 + name = "Head of Security's Office APC"; + pixel_x = -24; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/carpet, @@ -1808,8 +1808,8 @@ "adP" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/carpet, @@ -1817,7 +1817,7 @@ "adQ" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "adR" = ( @@ -1826,13 +1826,13 @@ "adS" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1840,19 +1840,19 @@ "adT" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1864,7 +1864,7 @@ "adV" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1872,19 +1872,19 @@ "adW" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1892,7 +1892,7 @@ "adX" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -1900,13 +1900,13 @@ "adY" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -1915,7 +1915,7 @@ /obj/structure/cable, /obj/machinery/power/solar{ id = "auxsolareast"; - name = "Port Auxiliary Solar Array" + name = "Port Auxiliary Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -1926,7 +1926,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 9 + dir = 9 }, /area/security/transfer) "aeb" = ( @@ -1945,27 +1945,27 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/security/transfer) "aed" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/machinery/button/ignition{ id = "executionburn"; - pixel_x = 24; - pixel_y = 5 + pixel_x = 24; + pixel_y = 5 }, /obj/machinery/button/door{ id = "executionfireblast"; - name = "Transfer Area Lockdown"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "2" + name = "Transfer Area Lockdown"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/general/hidden, /turf/simulated/floor/plasteel{ @@ -1987,7 +1987,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/prison) "aeg" = ( @@ -1997,20 +1997,20 @@ "aeh" = ( /obj/machinery/button/door{ id = "permacell3"; - name = "Cell 3 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" + name = "Cell 3 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" }, /obj/machinery/button/flasher{ id = "PCell 3"; - pixel_x = 6; - pixel_y = 24 + pixel_x = 6; + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/security/prison) "aei" = ( @@ -2026,7 +2026,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/security/prison) "aek" = ( @@ -2035,10 +2035,10 @@ }, /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2048,28 +2048,28 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/prison) "ael" = ( /obj/machinery/button/door{ id = "permacell2"; - name = "Cell 2 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" + name = "Cell 2 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" }, /obj/machinery/button/flasher{ id = "PCell 2"; - pixel_x = 6; - pixel_y = 24 + pixel_x = 6; + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/security/prison) "aem" = ( @@ -2079,21 +2079,21 @@ "aen" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/camera{ c_tag = "Prison Hallway"; - network = list("SS13","Prison") + network = list("SS13","Prison") }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/prison) "aeo" = ( @@ -2102,14 +2102,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/security/prison) "aep" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2120,51 +2120,51 @@ "aeq" = ( /obj/machinery/button/door{ id = "permacell1"; - name = "Cell 1 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" + name = "Cell 1 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" }, /obj/machinery/button/flasher{ id = "PCell 1"; - pixel_x = 6; - pixel_y = 24 + pixel_x = 6; + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/security/prison) "aer" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/power/apc{ dir = 4; - name = "Prison Wing APC"; - pixel_x = 24; - pixel_y = 0 + name = "Prison Wing APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/prison) "aes" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/ai_monitored/security/armory) "aet" = ( @@ -2173,29 +2173,29 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "aeu" = ( /obj/vehicle/secway, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "aev" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -2205,8 +2205,8 @@ "aew" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -2221,13 +2221,13 @@ "aey" = ( /obj/machinery/door/airlock/glass_command{ name = "Head of Security"; - req_access_txt = "58" + req_access_txt = "58" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/carpet, @@ -2237,7 +2237,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "aeA" = ( @@ -2245,7 +2245,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/security/main) "aeB" = ( @@ -2257,8 +2257,8 @@ "aeC" = ( /obj/machinery/camera{ c_tag = "Security Escape Pod"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plating, /area/security/main) @@ -2268,28 +2268,28 @@ }, /turf/simulated/wall/shuttle{ icon_state = "swall_f6"; - dir = 2 + dir = 2 }, /area/shuttle/pod_3) "aeE" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/pod_3) "aeF" = ( /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "swall_f10"; - layer = 2 + icon_state = "swall_f10"; + layer = 2 }, /area/shuttle/pod_3) "aeG" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "auxsolareast"; - name = "Port Auxiliary Solar Array" + name = "Port Auxiliary Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -2304,7 +2304,7 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/security/transfer) "aeI" = ( @@ -2314,18 +2314,18 @@ }, /obj/item/device/flashlight{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/tank/internals/anesthetic{ pixel_x = -3; - pixel_y = 1 + pixel_y = 1 }, /obj/item/weapon/tank/internals/oxygen/red{ pixel_x = 3 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/security/transfer) "aeJ" = ( @@ -2344,8 +2344,8 @@ /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2363,12 +2363,12 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/prison) "aeN" = ( @@ -2377,18 +2377,18 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ aiControlDisabled = 0; - icon_state = "door_closed"; - id_tag = null; - locked = 0; - name = "Prisoner Transfer Centre"; - req_access = null; - req_access_txt = "2" + icon_state = "door_closed"; + id_tag = null; + locked = 0; + name = "Prisoner Transfer Centre"; + req_access = null; + req_access_txt = "2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2400,8 +2400,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/security/prison) @@ -2414,23 +2414,23 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/prison) "aeQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/security/prison) @@ -2440,8 +2440,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -2449,8 +2449,8 @@ "aeS" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2460,22 +2460,22 @@ "aeT" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/security/prison) "aeU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel, @@ -2483,56 +2483,56 @@ "aeV" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/security/prison) "aeW" = ( /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_x = -30; - pixel_y = 0 + departmentType = 5; + pixel_x = -30; + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Brig Control Room"; - dir = 4 + dir = 4 }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/structure/rack, /obj/item/clothing/mask/gas/sechailer{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/clothing/mask/gas/sechailer, /obj/item/clothing/mask/gas/sechailer{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/clothing/mask/gas/sechailer{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/clothing/mask/gas/sechailer{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/clothing/mask/gas/sechailer{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -2542,12 +2542,12 @@ /obj/structure/rack, /obj/item/weapon/gun/energy/gun{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/gun/energy/gun, /obj/item/weapon/gun/energy/gun{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2558,19 +2558,19 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "aeY" = ( /obj/structure/rack, /obj/item/weapon/gun/energy/gun/advtaser{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/gun/energy/gun/advtaser, /obj/item/weapon/gun/energy/gun/advtaser{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2578,19 +2578,19 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "aeZ" = ( /obj/structure/rack, /obj/item/weapon/gun/energy/laser{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/gun/energy/laser, /obj/item/weapon/gun/energy/laser{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2598,32 +2598,32 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/security/armory) "afa" = ( /obj/machinery/door/window/southleft{ base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" }, /obj/machinery/door/firedoor, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "afb" = ( @@ -2643,9 +2643,9 @@ "afd" = ( /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/closet/wardrobe/red, @@ -2665,7 +2665,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/main) "afg" = ( @@ -2674,7 +2674,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "afh" = ( @@ -2684,65 +2684,65 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "afi" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/effect/landmark/start{ name = "Security Officer" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "afj" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "afk" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/effect/landmark/start{ name = "Security Officer" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "afl" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/security/main) "afm" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/main) "afn" = ( @@ -2751,7 +2751,7 @@ "afo" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Three"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/security/main) @@ -2761,8 +2761,8 @@ }, /obj/docking_port/mobile/pod{ dir = 4; - id = "pod3"; - name = "escape pod 3" + id = "pod3"; + name = "escape pod 3" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_3) @@ -2772,14 +2772,14 @@ }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 + layer = 3; + pixel_x = 0; + pixel_y = 32 }, /obj/machinery/computer/shuttle/pod{ pixel_y = -32; - possible_destinations = "pod_asteroid3"; - shuttleId = "pod3" + possible_destinations = "pod_asteroid3"; + shuttleId = "pod3" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_3) @@ -2792,7 +2792,7 @@ }, /obj/item/weapon/storage/pod{ pixel_x = 6; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_3) @@ -2807,7 +2807,7 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 10 + dir = 10 }, /area/security/transfer) "afu" = ( @@ -2818,7 +2818,7 @@ "afv" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2827,14 +2827,14 @@ "afw" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - layer = 2.4 + layer = 2.4 }, /obj/machinery/door/window/southleft{ base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Armory"; - req_access_txt = "2" + dir = 4; + icon_state = "right"; + name = "Armory"; + req_access_txt = "2" }, /turf/simulated/floor/plating{ icon_state = "warnplate" @@ -2843,15 +2843,15 @@ "afx" = ( /obj/machinery/light_switch{ pixel_x = 25; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 9 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2860,13 +2860,13 @@ "afy" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2877,7 +2877,7 @@ /obj/item/weapon/restraints/handcuffs, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/prison) "afA" = ( @@ -2886,28 +2886,28 @@ "afB" = ( /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 + name = "Station Intercom (General)"; + pixel_x = 27 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/prison) "afC" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2920,18 +2920,18 @@ /obj/item/device/electropack, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/security/prison) "afE" = ( /obj/machinery/button/flasher{ id = "insaneflash"; - pixel_y = -26 + pixel_y = -26 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/security/prison) "afF" = ( @@ -2939,16 +2939,16 @@ /obj/item/device/assembly/signaler, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "escape" + icon_state = "escape" }, /area/security/prison) "afG" = ( /obj/structure/table, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/item/weapon/storage/box/hug, /obj/item/weapon/razor{ @@ -2956,7 +2956,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/security/prison) "afH" = ( @@ -2971,24 +2971,24 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/security/prison) "afJ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 1; - pixel_y = -27 + pixel_y = -27 }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/security/prison) "afK" = ( /obj/machinery/door/airlock/glass_security{ id_tag = null; - name = "Evidence Storage"; - req_access_txt = "63" + name = "Evidence Storage"; + req_access_txt = "63" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -3010,16 +3010,16 @@ "afO" = ( /obj/machinery/door/airlock/command{ name = "Command Tool Storage"; - req_access = null; - req_access_txt = "19" + req_access = null; + req_access_txt = "19" }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) "afP" = ( /obj/machinery/door/airlock/command{ name = "Command Tool Storage"; - req_access = null; - req_access_txt = "19" + req_access = null; + req_access_txt = "19" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -3042,7 +3042,7 @@ "afS" = ( /obj/machinery/door/airlock/glass_security{ name = "Equipment Room"; - req_access_txt = "1" + req_access_txt = "1" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -3058,7 +3058,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/main) "afU" = ( @@ -3078,8 +3078,8 @@ "afX" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/effect/landmark/start{ name = "Head of Security" @@ -3107,18 +3107,18 @@ "aga" = ( /obj/structure/sign/pods{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/security/main) "agb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/main) "agc" = ( @@ -3134,14 +3134,14 @@ }, /turf/simulated/wall/shuttle{ icon_state = "swall_f5"; - dir = 2 + dir = 2 }, /area/shuttle/pod_3) "age" = ( /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f9"; - dir = 2 + dir = 2 }, /area/shuttle/pod_3) "agf" = ( @@ -3153,7 +3153,7 @@ /obj/item/weapon/pen, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -3164,9 +3164,9 @@ /obj/structure/cable, /obj/machinery/power/apc{ dir = 2; - name = "Prisoner Transfer Centre"; - pixel_x = 0; - pixel_y = -27 + name = "Prisoner Transfer Centre"; + pixel_x = 0; + pixel_y = -27 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -3182,8 +3182,8 @@ /obj/machinery/light/small, /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -3193,12 +3193,12 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Prison Wing"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/prison) "agj" = ( @@ -3208,23 +3208,23 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Prison Wing"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/prison) "agl" = ( /obj/machinery/door/airlock/glass_security{ name = "Insanity Ward"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -3259,7 +3259,7 @@ "agq" = ( /obj/machinery/door/window/southleft{ name = "Armory"; - req_access_txt = "3" + req_access_txt = "3" }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3267,7 +3267,7 @@ }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "agr" = ( @@ -3280,8 +3280,8 @@ "ags" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -3298,8 +3298,8 @@ /obj/machinery/recharger, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3308,7 +3308,7 @@ "agv" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "agw" = ( @@ -3317,7 +3317,7 @@ /obj/item/weapon/gun/energy/laser/practice, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/main) "agx" = ( @@ -3326,14 +3326,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "agy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "agz" = ( @@ -3345,22 +3345,22 @@ }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/security/main) "agA" = ( /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_y = 30 + departmentType = 5; + pixel_y = 30 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/main) "agB" = ( @@ -3373,8 +3373,8 @@ /obj/machinery/hologram/holopad, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -3383,12 +3383,12 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; - name = "prison blast door" + name = "prison blast door" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/security/brig) "agE" = ( @@ -3401,56 +3401,56 @@ /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; - name = "prison blast door" + name = "prison blast door" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/security/brig) "agG" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/main) "agH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/security/prison) "agI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 5 + dir = 5 }, /area/security/prison) "agJ" = ( @@ -3464,7 +3464,7 @@ "agK" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -3476,7 +3476,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/security/prison) "agM" = ( @@ -3503,27 +3503,27 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/brig) "agP" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/brig) "agQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3533,7 +3533,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -3541,7 +3541,7 @@ "agS" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3550,8 +3550,8 @@ "agT" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3575,7 +3575,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -3585,8 +3585,8 @@ /obj/machinery/recharger, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3597,7 +3597,7 @@ /obj/item/weapon/storage/fancy/donut_box, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/main) "agZ" = ( @@ -3620,7 +3620,7 @@ "ahc" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/security/main) @@ -3634,16 +3634,16 @@ "ahe" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j2s"; - sortType = 8 + icon_state = "pipe-j2s"; + sortType = 8 }, /turf/simulated/floor/plasteel, /area/security/main) "ahf" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3670,31 +3670,31 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /turf/simulated/floor/plasteel, /area/security/main) "ahi" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j2s"; - sortType = 7 + icon_state = "pipe-j2s"; + sortType = 7 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/main) "ahj" = ( /obj/machinery/door/window/eastright{ base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" + dir = 8; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3709,15 +3709,15 @@ "ahk" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) "ahl" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Security" + freq = 1400; + location = "Security" }, /obj/structure/plasticflaps{ opacity = 1 @@ -3751,21 +3751,21 @@ "ahp" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -3774,13 +3774,13 @@ "ahq" = ( /obj/machinery/flasher{ id = "insaneflash"; - pixel_x = 26 + pixel_x = 26 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -3818,13 +3818,13 @@ "ahv" = ( /obj/machinery/power/apc{ dir = 8; - name = "Brig Control APC"; - pixel_x = -24; - pixel_y = 0 + name = "Brig Control APC"; + pixel_x = -24; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3833,9 +3833,9 @@ "ahw" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3844,19 +3844,19 @@ "ahx" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3865,9 +3865,9 @@ "ahy" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -3877,14 +3877,14 @@ "ahz" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -3893,26 +3893,26 @@ "ahA" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/main) "ahB" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -3927,9 +3927,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -3937,13 +3937,13 @@ "ahD" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -3953,22 +3953,22 @@ "ahE" = ( /obj/machinery/door/airlock/glass_security{ name = "Brig Control"; - req_access_txt = "3" + req_access_txt = "3" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -3980,9 +3980,9 @@ "ahF" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3998,14 +3998,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4015,12 +4015,12 @@ "ahH" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-y"; - dir = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4030,9 +4030,9 @@ "ahI" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -4049,8 +4049,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4063,13 +4063,13 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/chair, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -4078,8 +4078,8 @@ "ahL" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4089,17 +4089,17 @@ "ahM" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4109,20 +4109,20 @@ "ahN" = ( /obj/machinery/power/apc{ dir = 4; - name = "Security Office APC"; - pixel_x = 24; - pixel_y = 0 + name = "Security Office APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/main) "ahO" = ( @@ -4132,7 +4132,7 @@ "ahP" = ( /obj/machinery/camera{ c_tag = "Brig Interrogation"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -4142,8 +4142,8 @@ /obj/structure/closet/secure_closet/warden, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -4156,17 +4156,17 @@ }, /obj/machinery/button/door{ id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = -27; - pixel_y = 8; - req_access_txt = "2" + name = "Prison Wing Lockdown"; + pixel_x = -27; + pixel_y = 8; + req_access_txt = "2" }, /obj/machinery/button/door{ id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -27; - pixel_y = -2; - req_access_txt = "0" + name = "Cell Shutters"; + pixel_x = -27; + pixel_y = -2; + req_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -4176,13 +4176,13 @@ /obj/structure/table, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -4198,10 +4198,10 @@ /obj/item/clothing/suit/straight_jacket, /obj/machinery/camera{ c_tag = "Prison Sanitatium"; - dir = 4; - network = list("SS13","Prison"); - pixel_x = 0; - pixel_y = 0 + dir = 4; + network = list("SS13","Prison"); + pixel_x = 0; + pixel_y = 0 }, /obj/effect/landmark{ name = "revenantspawn" @@ -4234,8 +4234,8 @@ /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = 0 + name = "Station Intercom (General)"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -4250,30 +4250,30 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/brig) "ahZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/main) "aia" = ( /obj/structure/noticeboard{ dir = 1; - pixel_y = -27 + pixel_y = -27 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -4286,8 +4286,8 @@ "aib" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4298,13 +4298,13 @@ "aic" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4337,9 +4337,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -4356,7 +4356,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/book/manual/wiki/security_space_law, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4396,8 +4396,8 @@ "aik" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -4422,8 +4422,8 @@ "ain" = ( /obj/machinery/door/airlock/security{ name = "Interrogation"; - req_access = null; - req_access_txt = "63" + req_access = null; + req_access_txt = "63" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -4452,8 +4452,8 @@ "aiq" = ( /obj/machinery/camera{ c_tag = "Security Office"; - dir = 1; - network = list("SS13") + dir = 1; + network = list("SS13") }, /obj/machinery/computer/secure_data, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4481,7 +4481,7 @@ }, /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -4490,7 +4490,7 @@ "ait" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /obj/machinery/computer/security, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4509,9 +4509,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -4520,12 +4520,12 @@ "aiv" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -4537,13 +4537,13 @@ "aiw" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; - req_access_txt = "63" + req_access_txt = "63" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -4556,9 +4556,9 @@ "aix" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -4568,27 +4568,27 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/main) "aiy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/security/brig) "aiz" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/security/brig) "aiA" = ( @@ -4621,9 +4621,9 @@ "aiE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -4640,31 +4640,31 @@ "aiG" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/brig) "aiH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "aiI" = ( /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -4673,20 +4673,20 @@ /obj/structure/table/reinforced, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/window/brigdoor{ dir = 1; - name = "Armory Desk"; - req_access_txt = "3" + name = "Armory Desk"; + req_access_txt = "3" }, /obj/machinery/door/window/southleft{ name = "Reception Desk"; - req_access_txt = "63" + req_access_txt = "63" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -4696,11 +4696,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable, /obj/structure/window/reinforced/fulltile, @@ -4710,11 +4710,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -4722,7 +4722,7 @@ "aiM" = ( /obj/machinery/door/airlock/glass_security{ name = "Brig Control"; - req_access_txt = "3" + req_access_txt = "3" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -4732,7 +4732,7 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -4741,13 +4741,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Security Office"; - req_access = null; - req_access_txt = "63" + req_access = null; + req_access_txt = "63" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -4762,14 +4762,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "aiR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "aiS" = ( @@ -4798,16 +4798,16 @@ "aiY" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/courtroom) "aiZ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4815,15 +4815,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/security/brig) "aja" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -4838,7 +4838,7 @@ "ajc" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajd" = ( @@ -4847,7 +4847,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "aje" = ( @@ -4856,30 +4856,30 @@ }, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajf" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajg" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -4902,23 +4902,23 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "blue" + icon_state = "blue" }, /area/crew_quarters/courtroom) "ajj" = ( /obj/item/device/radio/intercom{ broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 }, /obj/machinery/camera{ c_tag = "Courtroom North" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/crew_quarters/courtroom) @@ -4928,7 +4928,7 @@ }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "blue" + icon_state = "blue" }, /area/crew_quarters/courtroom) "ajl" = ( @@ -4937,16 +4937,16 @@ }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 + layer = 3; + pixel_x = 0; + pixel_y = 32 }, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/crew_quarters/courtroom) "ajm" = ( @@ -4971,7 +4971,7 @@ "ajq" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -4979,7 +4979,7 @@ "ajr" = ( /obj/machinery/computer/security{ name = "Labor Camp Monitoring"; - network = list("Labor") + network = list("Labor") }, /turf/simulated/floor/plasteel, /area/security/processing) @@ -4990,7 +4990,7 @@ "ajt" = ( /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/closet/emcloset, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5012,14 +5012,14 @@ "ajv" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/brig) "ajw" = ( @@ -5031,46 +5031,46 @@ "ajx" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajy" = ( /obj/machinery/power/apc{ dir = 1; - name = "Labor Shuttle Dock APC"; - pixel_y = 24 + name = "Labor Shuttle Dock APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajz" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajA" = ( @@ -5079,7 +5079,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "ajB" = ( @@ -5090,14 +5090,14 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/security/armory) "ajD" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -5108,22 +5108,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 5 + dir = 5 }, /area/crew_quarters/courtroom) "ajF" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/security/brig) "ajG" = ( /obj/machinery/light, /obj/machinery/door_timer{ id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 + name = "Cell 1"; + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5138,7 +5138,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/courtroom) "ajI" = ( @@ -5157,8 +5157,8 @@ "ajK" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5172,7 +5172,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/brig) "ajM" = ( @@ -5185,8 +5185,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Brig"; - req_access = null; - req_access_txt = "63; 42" + req_access = null; + req_access_txt = "63; 42" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -5197,14 +5197,14 @@ /obj/structure/table/wood, /obj/item/device/radio/intercom{ broadcasting = 0; - dir = 8; - listening = 1; - name = "Station Intercom (Court)"; - pixel_x = 0 + dir = 8; + listening = 1; + name = "Station Intercom (Court)"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/courtroom) "ajP" = ( @@ -5213,7 +5213,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 9 + dir = 9 }, /area/crew_quarters/courtroom) "ajQ" = ( @@ -5221,7 +5221,7 @@ /obj/item/weapon/book/manual/wiki/security_space_law, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/courtroom) "ajR" = ( @@ -5231,7 +5231,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/courtroom) "ajS" = ( @@ -5244,23 +5244,23 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/crew_quarters/courtroom) "ajT" = ( /obj/structure/chair{ dir = 8; - name = "Defense" + name = "Defense" }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "green" + icon_state = "green" }, /area/crew_quarters/courtroom) "ajU" = ( /obj/machinery/door/window/southleft{ name = "Court Cell"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -5274,13 +5274,13 @@ "ajW" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" + req_access = null; + req_access_txt = "10; 13" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -5293,15 +5293,15 @@ /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f6"; - dir = 2 + dir = 2 }, /area/shuttle/labor) "ajZ" = ( /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "swall_f10"; - layer = 2 + icon_state = "swall_f10"; + layer = 2 }, /area/shuttle/labor) "aka" = ( @@ -5313,18 +5313,18 @@ "akb" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/security/processing) "akc" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -5334,8 +5334,8 @@ "akd" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -5343,28 +5343,28 @@ "ake" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/brig) "akf" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Labor Shuttle"; - req_access = null; - req_access_txt = "2" + req_access = null; + req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5374,31 +5374,31 @@ "akg" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/camera{ c_tag = "Brig West"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/security/brig) "akh" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5408,13 +5408,13 @@ "aki" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5422,14 +5422,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/security/brig) "akj" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5444,7 +5444,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/security/brig) "akl" = ( @@ -5460,7 +5460,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/security/brig) "akn" = ( @@ -5469,7 +5469,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/courtroom) "ako" = ( @@ -5478,8 +5478,8 @@ }, /obj/machinery/door_timer{ id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 + name = "Cell 2"; + pixel_y = -32 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -5496,15 +5496,15 @@ "akq" = ( /obj/machinery/camera{ c_tag = "Brig Central"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/door_timer{ id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 + name = "Cell 3"; + pixel_y = -32 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -5514,19 +5514,19 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/brig) "aks" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/security/brig) "akt" = ( @@ -5536,8 +5536,8 @@ }, /obj/machinery/door_timer{ id = "Cell 4"; - name = "Cell 4"; - pixel_y = -32 + name = "Cell 4"; + pixel_y = -32 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -5549,7 +5549,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/brig) "akv" = ( @@ -5578,7 +5578,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/courtroom) "akz" = ( @@ -5590,18 +5590,18 @@ "akA" = ( /obj/structure/chair{ dir = 8; - name = "Defense" + name = "Defense" }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 6 + dir = 6 }, /area/crew_quarters/courtroom) "akB" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -5609,7 +5609,7 @@ /obj/machinery/computer/shuttle/labor, /obj/structure/reagent_dispensers/peppertank{ pixel_x = -31; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -5618,7 +5618,7 @@ "akD" = ( /turf/simulated/wall/shuttle{ icon_state = "swall3"; - dir = 2 + dir = 2 }, /area/shuttle/labor) "akE" = ( @@ -5641,11 +5641,11 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -5653,14 +5653,14 @@ "akH" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/security/processing) "akI" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/security/processing) "akJ" = ( @@ -5675,8 +5675,8 @@ "akK" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5693,11 +5693,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5708,11 +5708,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/window/reinforced/fulltile, @@ -5721,13 +5721,13 @@ "akO" = ( /obj/machinery/door/window/brigdoor{ id = "Cell 1"; - name = "Cell 1"; - req_access_txt = "2" + name = "Cell 1"; + req_access_txt = "2" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -5737,11 +5737,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/window/reinforced/fulltile, @@ -5750,21 +5750,21 @@ "akQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/wall, /area/security/brig) "akR" = ( /obj/machinery/door/window/brigdoor{ id = "Cell 2"; - name = "Cell 2"; - req_access_txt = "2" + name = "Cell 2"; + req_access_txt = "2" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -5774,11 +5774,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/window/reinforced/fulltile, @@ -5787,13 +5787,13 @@ "akT" = ( /obj/machinery/door/window/brigdoor{ id = "Cell 3"; - name = "Cell 3"; - req_access_txt = "2" + name = "Cell 3"; + req_access_txt = "2" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -5802,17 +5802,17 @@ "akU" = ( /obj/machinery/door/airlock/glass_security{ name = "Brig Desk"; - req_access_txt = "1" + req_access_txt = "1" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -5822,11 +5822,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -5834,46 +5834,46 @@ "akW" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" + name = "Brig"; + req_access_txt = "63" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/brig) "akX" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" + name = "Brig"; + req_access_txt = "63" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/brig) "akY" = ( /obj/structure/grille, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -5882,7 +5882,7 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/window/reinforced/fulltile, @@ -5891,13 +5891,13 @@ "ala" = ( /obj/machinery/door/window/brigdoor{ id = "Cell 4"; - name = "Cell 4"; - req_access_txt = "2" + name = "Cell 4"; + req_access_txt = "2" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -5907,11 +5907,11 @@ "alb" = ( /obj/structure/chair{ dir = 4; - name = "Prosecution" + name = "Prosecution" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/crew_quarters/courtroom) "alc" = ( @@ -5919,7 +5919,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/courtroom) "ald" = ( @@ -5933,15 +5933,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 6 + dir = 6 }, /area/crew_quarters/courtroom) "alf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -5950,7 +5950,7 @@ "alg" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -5958,13 +5958,13 @@ "alh" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" + req_access = null; + req_access_txt = "10; 13" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -5982,7 +5982,7 @@ /obj/structure/grille, /obj/structure/cable/yellow{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/shuttle, /turf/simulated/floor/plating, @@ -5990,8 +5990,8 @@ "all" = ( /obj/machinery/mineral/labor_claim_console{ machinedir = 2; - pixel_x = 30; - pixel_y = 30 + pixel_x = 30; + pixel_y = 30 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -6000,10 +6000,10 @@ "alm" = ( /obj/machinery/button/flasher{ id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_x = 0; - pixel_y = -26; - req_access_txt = "1" + name = "Flash Control"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "1" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -6012,14 +6012,14 @@ "aln" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plating, /area/security/processing) "alo" = ( /obj/machinery/door/airlock/shuttle{ name = "Labor Shuttle Airlock"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -6034,8 +6034,8 @@ "alr" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -6043,8 +6043,8 @@ "als" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -6059,28 +6059,28 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/ai_monitored/nuke_storage) "alv" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6089,9 +6089,9 @@ "alw" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /obj/machinery/light/small{ dir = 4 @@ -6108,17 +6108,17 @@ "aly" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6127,20 +6127,20 @@ "alz" = ( /obj/machinery/button/door{ id = "briggate"; - name = "Desk Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "0" + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "0" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/button/flasher{ id = "brigentry"; - pixel_x = -28; - pixel_y = -8 + pixel_x = -28; + pixel_y = -8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6150,15 +6150,15 @@ /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; - name = "security shutters" + name = "security shutters" }, /obj/machinery/door/window/eastleft{ name = "Brig Desk"; - req_access_txt = "1" + req_access_txt = "1" }, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ @@ -6174,7 +6174,7 @@ "alC" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/brig) "alD" = ( @@ -6186,13 +6186,13 @@ "alE" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /obj/machinery/flasher{ id = "Cell 4"; - pixel_x = 28 + pixel_x = 28 }, /obj/machinery/light/small{ dir = 4 @@ -6210,11 +6210,11 @@ "alG" = ( /obj/structure/chair{ dir = 4; - name = "Prosecution" + name = "Prosecution" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/crew_quarters/courtroom) "alH" = ( @@ -6227,7 +6227,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 10 + dir = 10 }, /area/crew_quarters/courtroom) "alJ" = ( @@ -6240,13 +6240,13 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -6255,13 +6255,13 @@ /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ dir = 8; - name = "Courtroom APC"; - pixel_x = -24; - pixel_y = 0 + name = "Courtroom APC"; + pixel_x = -24; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -6270,8 +6270,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -6279,8 +6279,8 @@ "alN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/space, @@ -6296,12 +6296,12 @@ "alQ" = ( /obj/machinery/power/solar_control{ id = "auxsolareast"; - name = "Fore Port Solar Control"; - track = 0 + name = "Fore Port Solar Control"; + track = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -6311,24 +6311,24 @@ "alS" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) "alT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -6351,21 +6351,21 @@ "alY" = ( /obj/machinery/door/airlock/shuttle{ name = "Labor Shuttle Airlock"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plasteel/shuttle{ icon = 'icons/turf/floors.dmi'; - icon_state = "dark" + icon_state = "dark" }, /area/shuttle/labor) "alZ" = ( /obj/machinery/mineral/stacking_machine/laborstacker{ input_dir = 2; - output_dir = 1 + output_dir = 1 }, /turf/simulated/floor/plasteel/shuttle{ icon = 'icons/turf/floors.dmi'; - icon_state = "dark" + icon_state = "dark" }, /area/shuttle/labor) "ama" = ( @@ -6374,9 +6374,9 @@ "amb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/security/processing) @@ -6384,7 +6384,7 @@ /obj/machinery/computer/shuttle/labor, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/security/processing) "amd" = ( @@ -6394,8 +6394,8 @@ "ame" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -6407,12 +6407,12 @@ /obj/item/weapon/bedsheet, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/flasher{ id = "Cell 1"; - pixel_x = -28 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6421,7 +6421,7 @@ "amg" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; - name = "Cell 1 Locker" + name = "Cell 1 Locker" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6432,7 +6432,7 @@ /obj/item/weapon/bedsheet, /obj/machinery/flasher{ id = "Cell 2"; - pixel_x = -28 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6441,7 +6441,7 @@ "ami" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; - name = "Cell 2 Locker" + name = "Cell 2 Locker" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6452,7 +6452,7 @@ /obj/item/weapon/bedsheet, /obj/machinery/flasher{ id = "Cell 3"; - pixel_x = -28 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6461,7 +6461,7 @@ "amk" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; - name = "Cell 3 Locker" + name = "Cell 3 Locker" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6473,26 +6473,26 @@ }, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = -5; - req_access_txt = "63" + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" }, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 5; - req_access_txt = "63" + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6502,11 +6502,11 @@ /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; - name = "security shutters" + name = "security shutters" }, /obj/machinery/door/window/eastright{ name = "Brig Desk"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/item/weapon/restraints/handcuffs, /obj/item/device/radio/off, @@ -6525,17 +6525,17 @@ "amo" = ( /obj/machinery/flasher{ id = "brigentry"; - pixel_x = 28 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/brig) "amp" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; - name = "Cell 4 Locker" + name = "Cell 4 Locker" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6546,11 +6546,11 @@ /obj/item/weapon/bedsheet, /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = 25; - pixel_y = -2; - prison_radio = 1 + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -6570,7 +6570,7 @@ "amt" = ( /obj/machinery/door/airlock/glass{ name = "Courtroom"; - req_access_txt = "42" + req_access_txt = "42" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6579,9 +6579,9 @@ "amu" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6590,13 +6590,13 @@ "amv" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" + req_access = null; + req_access_txt = "10; 13" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) @@ -6620,7 +6620,7 @@ "amz" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/terminal, /obj/machinery/light/small{ @@ -6631,8 +6631,8 @@ "amA" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) @@ -6646,9 +6646,9 @@ "amD" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -6656,7 +6656,7 @@ /obj/structure/bed, /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /obj/item/weapon/bedsheet, /turf/simulated/floor/plating, @@ -6664,7 +6664,7 @@ "amF" = ( /obj/machinery/computer/slot_machine{ balance = 15; - money = 500 + money = 500 }, /obj/item/weapon/coin/iron, /obj/item/weapon/coin/diamond, @@ -6685,8 +6685,8 @@ }, /obj/structure/noticeboard{ dir = 8; - pixel_x = 27; - pixel_y = 0 + pixel_x = 27; + pixel_y = 0 }, /obj/item/trash/plate, /turf/simulated/floor/plating, @@ -6697,16 +6697,16 @@ "amJ" = ( /obj/machinery/mineral/labor_claim_console{ machinedir = 1; - pixel_x = 30; - pixel_y = 0 + pixel_x = 30; + pixel_y = 0 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/labor) "amK" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 }, /turf/simulated/wall, /area/security/processing) @@ -6719,12 +6719,12 @@ "amM" = ( /obj/machinery/door/airlock/glass_security{ name = "Prisoner Processing"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -6733,19 +6733,19 @@ /obj/structure/table, /obj/item/clothing/glasses/sunglasses{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/clothing/glasses/sunglasses{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/clothing/ears/earmuffs{ pixel_x = -3; - pixel_y = -2 + pixel_y = -2 }, /obj/item/clothing/ears/earmuffs{ pixel_x = -3; - pixel_y = -2 + pixel_y = -2 }, /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/plasteel{ @@ -6759,14 +6759,14 @@ }, /turf/simulated/wall/shuttle{ dir = 8; - icon_state = "diagonalWall3" + icon_state = "diagonalWall3" }, /area/shuttle/syndicate) "amP" = ( /obj/structure/grille, /obj/machinery/door/poddoor/shutters{ id = "syndieshutters"; - name = "blast shutters" + name = "blast shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -6774,13 +6774,13 @@ "amQ" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/grille, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; - name = "brig shutters" + name = "brig shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -6788,16 +6788,16 @@ "amR" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; - name = "brig shutters" + name = "brig shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -6805,8 +6805,8 @@ "amS" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/wall/r_wall, /area/security/brig) @@ -6814,21 +6814,21 @@ /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; - name = "security shutters" + name = "security shutters" }, /obj/machinery/door/window/southleft{ name = "Brig Desk"; - req_access_txt = "1" + req_access_txt = "1" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6838,11 +6838,11 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "briggate"; - name = "security blast door" + name = "security blast door" }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -6851,18 +6851,18 @@ /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; - name = "security shutters" + name = "security shutters" }, /obj/machinery/door/window/southleft{ base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6872,24 +6872,24 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" + name = "Brig"; + req_access_txt = "63" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/brig) "amX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" + name = "Brig"; + req_access_txt = "63" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/brig) "amY" = ( @@ -6927,8 +6927,8 @@ "anc" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, @@ -6944,8 +6944,8 @@ "ane" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) @@ -6955,24 +6955,24 @@ "ang" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; - name = "Fore Port Solar APC"; - pixel_x = -25; - pixel_y = 3 + name = "Fore Port Solar APC"; + pixel_x = -25; + pixel_y = 3 }, /obj/machinery/camera{ c_tag = "Fore Port Solar Control"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) "anh" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/smes, /turf/simulated/floor/plating, @@ -6980,20 +6980,20 @@ "ani" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) "anj" = ( /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ icon_state = "manifold"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -7006,7 +7006,7 @@ "anl" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 9 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -7020,21 +7020,21 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 4; - name = "4maintenance loot spawner" + name = "4maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "ano" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/fpmaint2) "anp" = ( /obj/item/weapon/cigbutt, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/fpmaint2) "anq" = ( @@ -7049,50 +7049,50 @@ }, /obj/machinery/flasher{ id = "gulagshuttleflasher"; - pixel_x = 25 + pixel_x = 25 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/labor) "ans" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/processing) "ant" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/security/processing) "anu" = ( /obj/machinery/button/door{ desc = "A remote control switch for the exit."; - id = "laborexit"; - name = "exit button"; - normaldoorcontrol = 1; - pixel_x = 26; - pixel_y = -6; - req_access_txt = "0" + id = "laborexit"; + name = "exit button"; + normaldoorcontrol = 1; + pixel_x = 26; + pixel_y = -6; + req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/processing) "anv" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7100,40 +7100,40 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/processing) "anw" = ( /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/fore) "anx" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/fore) "any" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/fore) "anz" = ( @@ -7142,7 +7142,7 @@ "anA" = ( /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "anB" = ( @@ -7154,7 +7154,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "anC" = ( @@ -7165,8 +7165,8 @@ "anD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -7186,41 +7186,41 @@ "anG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) "anH" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/auxsolarport) "anI" = ( /obj/machinery/door/airlock/engineering{ icon_state = "door_closed"; - locked = 0; - name = "Fore Port Solar Access"; - req_access_txt = "10" + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) "anJ" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -7246,24 +7246,24 @@ "anO" = ( /obj/machinery/door/airlock/shuttle{ id_tag = "prisonshuttle"; - name = "Labor Shuttle Airlock" + name = "Labor Shuttle Airlock" }, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "labor camp shuttle"; - travelDir = 90; - width = 9 + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "labor camp shuttle"; + travelDir = 90; + width = 9 }, /obj/docking_port/stationary{ dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - width = 9 + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/labor) @@ -7271,18 +7271,18 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ id_tag = "laborexit"; - name = "Labor Shuttle"; - req_access = null; - req_access_txt = "63" + name = "Labor Shuttle"; + req_access = null; + req_access_txt = "63" }, /turf/simulated/floor/plasteel, /area/security/processing) "anQ" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /obj/machinery/light{ dir = 1 @@ -7292,8 +7292,8 @@ "anR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -7307,7 +7307,7 @@ "anT" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -7329,9 +7329,9 @@ "anW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7340,11 +7340,11 @@ "anX" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /obj/machinery/camera{ c_tag = "Courtroom South"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7353,8 +7353,8 @@ "anY" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7363,7 +7363,7 @@ "anZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7381,7 +7381,7 @@ "aob" = ( /obj/machinery/light_switch{ pixel_x = -20; - pixel_y = 0 + pixel_y = 0 }, /obj/item/device/radio/intercom{ pixel_y = 25 @@ -7412,25 +7412,25 @@ "aog" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "aoh" = ( /obj/machinery/power/solar_control{ id = "auxsolareast"; - name = "Fore Starboard Solar Control"; - track = 0 + name = "Fore Starboard Solar Control"; + track = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) @@ -7439,11 +7439,11 @@ /obj/item/clothing/mask/gas, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/item/device/multitool, /turf/simulated/floor/plating, @@ -7460,15 +7460,15 @@ "aok" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 6 + dir = 6 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "aol" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -7491,7 +7491,7 @@ /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1; - layer = 2.9 + layer = 2.9 }, /turf/simulated/floor/plating/airless, /area/shuttle/labor) @@ -7499,11 +7499,11 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = -32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -7511,151 +7511,151 @@ "aor" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/processing) "aos" = ( /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/security/processing) "aot" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/processing) "aou" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/camera{ c_tag = "Labor Shuttle Dock South"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/processing) "aov" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aow" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aox" = ( /obj/machinery/camera{ c_tag = "Fore Primary Hallway West"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoy" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=EVA"; - location = "Security" + location = "Security" }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aoz" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoA" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoB" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoC" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoD" = ( /obj/machinery/camera{ c_tag = "Fore Primary Hallway East"; - dir = 1 + dir = 1 }, /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoE" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoF" = ( /obj/machinery/vending/snack, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/fore) "aoG" = ( /obj/structure/table, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7665,7 +7665,7 @@ /obj/structure/table, /obj/item/weapon/book/manual/wiki/security_space_law{ pixel_x = -3; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7674,25 +7674,25 @@ "aoI" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/light/small{ dir = 4 }, /obj/machinery/power/apc{ dir = 2; - name = "Fitness Room APC"; - pixel_x = 0; - pixel_y = -24 + name = "Fitness Room APC"; + pixel_x = 0; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -7710,25 +7710,25 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 9 + dir = 9 }, /area/maintenance/fsmaint) "aoL" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Air Out"; - on = 1 + name = "Air Out"; + on = 1 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 5 + dir = 5 }, /area/maintenance/fsmaint) "aoM" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) @@ -7741,7 +7741,7 @@ "aoO" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/terminal, /obj/machinery/light/small{ @@ -7781,7 +7781,7 @@ /obj/structure/bed, /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -7806,33 +7806,33 @@ /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f5"; - dir = 2 + dir = 2 }, /area/shuttle/labor) "apa" = ( /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f9"; - dir = 2 + dir = 2 }, /area/shuttle/labor) "apb" = ( /obj/machinery/door/airlock/glass_security{ name = "N2O Storage"; - req_access_txt = "3" + req_access_txt = "3" }, /turf/simulated/floor/plating, /area/security/processing) "apc" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/security/processing) @@ -7843,7 +7843,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Detective"; - req_access_txt = "4" + req_access_txt = "4" }, /turf/simulated/floor/plasteel, /area/security/detectives_office) @@ -7865,7 +7865,7 @@ "api" = ( /obj/machinery/door/airlock{ name = "Law Office"; - req_access_txt = "38" + req_access_txt = "38" }, /turf/simulated/floor/plasteel, /area/lawoffice) @@ -7877,7 +7877,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/fore) "apl" = ( @@ -7890,7 +7890,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "apn" = ( @@ -7906,7 +7906,7 @@ "app" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7924,12 +7924,12 @@ "apr" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/apc{ dir = 1; - name = "Dormitory Maintenance APC"; - pixel_y = 24 + name = "Dormitory Maintenance APC"; + pixel_y = 24 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -7961,8 +7961,8 @@ "apu" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -7978,8 +7978,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -7988,21 +7988,21 @@ "apw" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - name = "Air In"; - on = 1 + name = "Air In"; + on = 1 }, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/maintenance/fsmaint) "apx" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance"; - req_access_txt = "12;24" + req_access_txt = "12;24" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -8016,43 +8016,43 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/maintenance/fsmaint) "apz" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "apA" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; - name = "Fore Starboard Solar APC"; - pixel_x = -25; - pixel_y = 3 + name = "Fore Starboard Solar APC"; + pixel_x = -25; + pixel_y = 3 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "apB" = ( /obj/machinery/camera{ c_tag = "Fore Starboard Solars"; - dir = 1 + dir = 1 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/smes, /turf/simulated/floor/plating, @@ -8074,15 +8074,15 @@ /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f6"; - dir = 2 + dir = 2 }, /area/shuttle/pod_1) "apG" = ( /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "swall_f10"; - layer = 2 + icon_state = "swall_f10"; + layer = 2 }, /area/shuttle/pod_1) "apH" = ( @@ -8094,15 +8094,15 @@ /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f6"; - dir = 2 + dir = 2 }, /area/shuttle/pod_2) "apJ" = ( /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "swall_f10"; - layer = 2 + icon_state = "swall_f10"; + layer = 2 }, /area/shuttle/pod_2) "apK" = ( @@ -8114,7 +8114,7 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -8158,16 +8158,16 @@ "apS" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/security/processing) "apT" = ( /obj/structure/chair/comfy/beige{ dir = 1; - icon_state = "comfychair" + icon_state = "comfychair" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -8181,7 +8181,7 @@ "apV" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/storage/briefcase, /obj/machinery/light_switch{ @@ -8208,8 +8208,8 @@ "apZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/wood, /area/lawoffice) @@ -8223,7 +8223,7 @@ "aqb" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/storage/briefcase, /obj/effect/decal/cleanable/cobweb2, @@ -8236,12 +8236,12 @@ "aqd" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "aqe" = ( @@ -8256,7 +8256,7 @@ "aqf" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -8285,7 +8285,7 @@ "aqi" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8295,13 +8295,13 @@ "aqj" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8311,12 +8311,12 @@ "aqk" = ( /obj/machinery/power/apc{ dir = 2; - name = "Dormitory APC"; - pixel_y = -24 + name = "Dormitory APC"; + pixel_y = -24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8326,17 +8326,17 @@ "aql" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -8346,13 +8346,13 @@ "aqm" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8367,16 +8367,16 @@ }, /obj/machinery/button/door{ id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep) @@ -8398,7 +8398,7 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 10 + dir = 10 }, /area/maintenance/fsmaint) "aqq" = ( @@ -8408,7 +8408,7 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 6 + dir = 6 }, /area/maintenance/fsmaint) "aqr" = ( @@ -8449,31 +8449,31 @@ "aqv" = ( /obj/machinery/door/airlock/external{ name = "External Access"; - req_access = null; - req_access_txt = "13" + req_access = null; + req_access_txt = "13" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "aqw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ icon_state = "door_closed"; - locked = 0; - name = "Fore Starboard Solar Access"; - req_access_txt = "10" + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "aqx" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/auxsolarstarboard) @@ -8500,7 +8500,7 @@ "aqC" = ( /obj/machinery/computer/slot_machine{ balance = 15; - money = 500 + money = 500 }, /obj/item/weapon/coin/iron, /turf/simulated/floor/plating, @@ -8513,42 +8513,42 @@ "aqE" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "aqF" = ( /turf/simulated/wall/shuttle{ icon_state = "swall3"; - dir = 2 + dir = 2 }, /area/shuttle/pod_1) "aqG" = ( /obj/docking_port/stationary/random{ dir = 4; - id = "pod_asteroid3"; - name = "asteroid" + id = "pod_asteroid3"; + name = "asteroid" }, /turf/space, /area/space) "aqH" = ( /turf/simulated/wall/shuttle{ icon_state = "swall3"; - dir = 2 + dir = 2 }, /area/shuttle/pod_2) "aqI" = ( /obj/docking_port/stationary/random{ id = "pod_asteroid1"; - name = "asteroid" + name = "asteroid" }, /turf/space, /area/space) "aqJ" = ( /obj/machinery/door/airlock/external{ name = "External Access"; - req_access = null; - req_access_txt = "13" + req_access = null; + req_access_txt = "13" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -8561,14 +8561,14 @@ "aqL" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 5 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "aqM" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 10 + dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -8576,7 +8576,7 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -8584,20 +8584,20 @@ /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "aqP" = ( /obj/machinery/power/apc{ dir = 1; - name = "Arrivals North Maintenance APC"; - pixel_x = -1; - pixel_y = 26 + name = "Arrivals North Maintenance APC"; + pixel_x = -1; + pixel_y = 26 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -8618,20 +8618,20 @@ "aqT" = ( /obj/machinery/power/apc{ dir = 8; - name = "Labor Shuttle Dock APC"; - pixel_x = -24 + name = "Labor Shuttle Dock APC"; + pixel_x = -24 }, /obj/structure/cable, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/security/processing) "aqU" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/structure/filingcabinet, /turf/simulated/floor/plasteel{ @@ -8651,8 +8651,8 @@ /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ on = 0; - pixel_x = -3; - pixel_y = 8 + pixel_x = -3; + pixel_y = 8 }, /obj/item/weapon/book/manual/wiki/security_space_law, /obj/item/weapon/restraints/handcuffs, @@ -8664,7 +8664,7 @@ /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/carpet, @@ -8676,12 +8676,12 @@ "ara" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/requests_console{ department = "Law office"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32; + pixel_y = 0 }, /obj/structure/closet/lawcloset, /turf/simulated/floor/wood, @@ -8703,7 +8703,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "lawyer_blast"; - name = "privacy door" + name = "privacy door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -8712,7 +8712,7 @@ /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/wood, /area/lawoffice) @@ -8751,18 +8751,18 @@ "arl" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; - dir = 2 + dir = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 9 + dir = 9 }, /area/crew_quarters/fitness) "arm" = ( @@ -8778,7 +8778,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/fitness) "aro" = ( @@ -8790,11 +8790,11 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -8804,32 +8804,32 @@ /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 8; - name = "8maintenance loot spawner" + name = "8maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "arr" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "ars" = ( /obj/machinery/power/apc{ dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 + name = "Bar Maintenance APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -8855,7 +8855,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -8887,7 +8887,7 @@ "arC" = ( /obj/docking_port/stationary/random{ id = "pod_asteroid2"; - name = "asteroid" + name = "asteroid" }, /turf/space, /area/space) @@ -8897,14 +8897,14 @@ }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 + layer = 3; + pixel_x = 32; + pixel_y = 0 }, /obj/machinery/computer/shuttle/pod{ pixel_x = -32; - possible_destinations = "pod_asteroid1"; - shuttleId = "pod1" + possible_destinations = "pod_asteroid1"; + shuttleId = "pod1" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_1) @@ -8912,11 +8912,11 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -8924,62 +8924,62 @@ "arF" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 5 + dir = 5 }, /turf/simulated/wall, /area/maintenance/fpmaint2) "arG" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/wall, /area/maintenance/fpmaint2) "arH" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "arI" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "arJ" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "arK" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 9 + dir = 9 }, /turf/simulated/floor/plating{ icon_state = "platingdmg3" @@ -8988,30 +8988,30 @@ "arL" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "arM" = ( /obj/structure/closet/crate{ icon_state = "crateopen"; - opened = 1 + opened = 1 }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "arN" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -9027,9 +9027,9 @@ "arQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -9106,20 +9106,20 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/wood, /area/lawoffice) "asa" = ( /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 + layer = 3; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "asb" = ( @@ -9129,14 +9129,14 @@ /obj/machinery/disposal/bin, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/fitness) "asc" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9152,8 +9152,8 @@ "ase" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -9167,7 +9167,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 5 + dir = 5 }, /area/crew_quarters/sleep) "asg" = ( @@ -9176,14 +9176,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 9 + dir = 9 }, /area/crew_quarters/sleep) "ash" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -9196,13 +9196,13 @@ "asi" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9222,8 +9222,8 @@ "asl" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/computer/secure_data, /turf/simulated/floor/plasteel{ @@ -9242,15 +9242,15 @@ "asn" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/security/detectives_office) "aso" = ( /obj/machinery/door/airlock/maintenance{ name = "Law Office Maintenance"; - req_access_txt = "38" + req_access_txt = "38" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -9272,7 +9272,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/fitness) "asr" = ( @@ -9286,7 +9286,7 @@ /obj/item/clothing/shoes/jackboots, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/fitness) "ass" = ( @@ -9296,7 +9296,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 5 + dir = 5 }, /area/crew_quarters/fitness) "ast" = ( @@ -9306,7 +9306,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/fitness) "asu" = ( @@ -9314,17 +9314,17 @@ /obj/item/weapon/bedsheet/red, /obj/machinery/button/door{ id = "Dorm5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep) @@ -9332,15 +9332,15 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; - name = "3maintenance loot spawner" + name = "3maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "asw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -9351,7 +9351,7 @@ "asy" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -9376,7 +9376,7 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/wall/shuttle{ icon_state = "swall_f5"; - dir = 2 + dir = 2 }, /area/shuttle/pod_1) "asE" = ( @@ -9387,7 +9387,7 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/wall/shuttle{ icon_state = "swall_f9"; - dir = 2 + dir = 2 }, /area/shuttle/pod_1) "asG" = ( @@ -9396,7 +9396,7 @@ }, /obj/docking_port/mobile/pod{ id = "pod1"; - name = "escape pod 1" + name = "escape pod 1" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_1) @@ -9405,7 +9405,7 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/wall/shuttle{ icon_state = "swall_f5"; - dir = 2 + dir = 2 }, /area/shuttle/pod_2) "asI" = ( @@ -9413,7 +9413,7 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/wall/shuttle{ icon_state = "swall_f9"; - dir = 2 + dir = 2 }, /area/shuttle/pod_2) "asJ" = ( @@ -9422,15 +9422,15 @@ }, /obj/docking_port/mobile/pod{ id = "pod2"; - name = "escape pod 2" + name = "escape pod 2" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_2) "asK" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9442,17 +9442,17 @@ /obj/item/weapon/bedsheet/red, /obj/machinery/button/door{ id = "Dorm6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep) @@ -9463,12 +9463,12 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/fitness) "asN" = ( @@ -9506,8 +9506,8 @@ "asU" = ( /obj/machinery/requests_console{ department = "Detective's office"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30; + pixel_y = 0 }, /obj/structure/table/wood, /obj/item/device/camera/detective, @@ -9524,15 +9524,15 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness) "asW" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/security/detectives_office) @@ -9557,7 +9557,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/crew_quarters/fitness) "ata" = ( @@ -9567,7 +9567,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9584,17 +9584,17 @@ "atd" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "ate" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9607,16 +9607,16 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep) "atg" = ( /obj/machinery/door/airlock{ id_tag = "Dorm4"; - name = "Dorm 4" + name = "Dorm 4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9635,7 +9635,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/sleep) "atj" = ( @@ -9645,7 +9645,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "atk" = ( @@ -9681,8 +9681,8 @@ "atp" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9699,8 +9699,8 @@ "atr" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -9739,17 +9739,17 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "atx" = ( /obj/machinery/button/door{ id = "maint3"; - name = "Blast Door Control C"; - pixel_x = 0; - pixel_y = 24; - req_access_txt = "0" + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -9779,14 +9779,14 @@ /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/stack/cable_coil{ amount = 5 }, /obj/item/stack/sheet/mineral/plasma{ amount = 10; - layer = 2.9 + layer = 2.9 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -9809,7 +9809,7 @@ /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -9817,7 +9817,7 @@ /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/bluegrid, /area/maintenance/electrical) @@ -9834,7 +9834,7 @@ "atK" = ( /obj/machinery/camera{ c_tag = "Detective's Office"; - dir = 1 + dir = 1 }, /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9855,8 +9855,8 @@ "atN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -9876,7 +9876,7 @@ "atQ" = ( /obj/machinery/door/airlock{ id_tag = "Dorm5"; - name = "Cabin 1" + name = "Cabin 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/wood, @@ -9902,26 +9902,26 @@ }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "atV" = ( /obj/machinery/airalarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/fitness) "atW" = ( @@ -9931,8 +9931,8 @@ "atX" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -9955,14 +9955,14 @@ "aua" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/crew_quarters/fitness) "aub" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9973,8 +9973,8 @@ "auc" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -9982,9 +9982,9 @@ "aud" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10003,21 +10003,21 @@ /obj/structure/table/wood, /obj/machinery/camera{ c_tag = "Law Office"; - dir = 1; - network = list("SS13") + dir = 1; + network = list("SS13") }, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; - dir = 1; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = -27 + dir = 1; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = -27 }, /turf/simulated/floor/wood, /area/lawoffice) @@ -10033,18 +10033,18 @@ /obj/machinery/photocopier, /obj/machinery/button/door{ id = "lawyer_blast"; - name = "Privacy Shutters"; - pixel_x = 25; - pixel_y = 8 + name = "Privacy Shutters"; + pixel_x = 25; + pixel_y = 8 }, /turf/simulated/floor/wood, /area/lawoffice) "auj" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -10052,33 +10052,33 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/brig) "auk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/sleep) "aul" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "aum" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -10092,7 +10092,7 @@ "auo" = ( /obj/machinery/door/airlock/maintenance{ name = "Detective Maintenance"; - req_access_txt = "4" + req_access_txt = "4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -10100,7 +10100,7 @@ "aup" = ( /obj/machinery/door/airlock{ id_tag = "Dorm6"; - name = "Cabin 2" + name = "Cabin 2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/wood, @@ -10112,9 +10112,9 @@ "aur" = ( /obj/machinery/door/window/eastright{ base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" + dir = 8; + icon_state = "left"; + name = "Fitness Ring" }, /obj/structure/window/reinforced{ dir = 1 @@ -10126,9 +10126,9 @@ "aus" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -10156,7 +10156,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -10170,16 +10170,16 @@ }, /obj/machinery/button/door{ id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep) @@ -10190,7 +10190,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 4 + dir = 4 }, /area/crew_quarters/sleep) "auy" = ( @@ -10212,8 +10212,8 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness) @@ -10242,16 +10242,16 @@ "auE" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "auF" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -10261,16 +10261,16 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "auH" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -10285,8 +10285,8 @@ "auK" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -10295,13 +10295,13 @@ "auL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -10310,12 +10310,12 @@ "auM" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -10327,7 +10327,7 @@ }, /obj/machinery/camera{ c_tag = "Arrivals Escape Pod 1"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) @@ -10344,25 +10344,25 @@ }, /obj/machinery/camera{ c_tag = "Arrivals Escape Pod 2"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) "auR" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "auS" = ( /obj/machinery/requests_console{ department = "Crew Quarters"; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/camera{ c_tag = "Dormitory North" @@ -10372,28 +10372,28 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "auT" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "auU" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "auV" = ( @@ -10407,14 +10407,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "auX" = ( /obj/structure/mirror{ icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 + pixel_y = 28; + shattered = 1 }, /obj/machinery/iv_drip, /turf/simulated/floor/plating, @@ -10422,8 +10422,8 @@ "auY" = ( /obj/structure/mirror{ icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 + pixel_y = 28; + shattered = 1 }, /obj/item/weapon/shard{ icon_state = "medium" @@ -10450,7 +10450,7 @@ /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 4; - name = "4maintenance loot spawner" + name = "4maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -10463,11 +10463,11 @@ "ave" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, @@ -10475,7 +10475,7 @@ "avf" = ( /obj/machinery/door/airlock/maintenance{ name = "Chemical Storage"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -10483,18 +10483,18 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "avh" = ( /obj/machinery/power/apc{ dir = 8; - name = "Detective APC"; - pixel_x = -24 + name = "Detective APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -10502,12 +10502,12 @@ "avi" = ( /obj/machinery/power/apc{ dir = 1; - name = "Law Office APC"; - pixel_y = 24 + name = "Law Office APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -10515,54 +10515,54 @@ "avj" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/fore) "avk" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/fore) "avl" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "avm" = ( /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 + layer = 3; + pixel_x = 0; + pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "avn" = ( @@ -10571,15 +10571,15 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/crew_quarters/sleep) "avo" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 }, /turf/simulated/wall, /area/maintenance/electrical) @@ -10589,8 +10589,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -10598,8 +10598,8 @@ "avq" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -10607,8 +10607,8 @@ "avr" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -10619,8 +10619,8 @@ "avs" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -10639,7 +10639,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 5 + dir = 5 }, /area/crew_quarters/sleep) "avv" = ( @@ -10658,7 +10658,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/fitness) "avx" = ( @@ -10677,7 +10677,7 @@ "avz" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/crew_quarters/fitness) "avA" = ( @@ -10694,7 +10694,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/crew_quarters/fitness) "avC" = ( @@ -10719,8 +10719,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -10733,9 +10733,9 @@ "avH" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -10763,28 +10763,28 @@ "avL" = ( /obj/machinery/power/apc{ dir = 1; - name = "Electrical Maintenance APC"; - pixel_y = 24 + name = "Electrical Maintenance APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "avM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "avN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -10793,14 +10793,14 @@ /obj/item/clothing/gloves/color/fyellow, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /obj/item/device/multitool, /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -10829,13 +10829,13 @@ "avT" = ( /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_ne"; - name = "northeast of station"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/space; + width = 18 }, /turf/space, /area/space) @@ -10854,7 +10854,7 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -10902,12 +10902,12 @@ "awd" = ( /obj/machinery/power/apc{ dir = 1; - name = "EVA Maintenance APC"; - pixel_y = 24 + name = "EVA Maintenance APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10917,16 +10917,16 @@ "awe" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10936,7 +10936,7 @@ "awf" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -10946,8 +10946,8 @@ "awg" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -10963,16 +10963,16 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10983,16 +10983,16 @@ "awi" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -11003,8 +11003,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -11026,8 +11026,8 @@ "awl" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -11052,7 +11052,7 @@ "awn" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -11060,7 +11060,7 @@ "awo" = ( /obj/machinery/door/airlock{ id_tag = "Dorm3"; - name = "Dorm 3" + name = "Dorm 3" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11123,8 +11123,8 @@ "awx" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11145,9 +11145,9 @@ "awA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11162,15 +11162,15 @@ }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/crew_quarters/fitness) "awC" = ( /obj/structure/table, /obj/item/weapon/paper{ desc = ""; - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness) @@ -11188,7 +11188,7 @@ /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -11203,22 +11203,22 @@ "awI" = ( /obj/machinery/button/door{ id = "maint2"; - name = "Blast Door Control B"; - pixel_x = -28; - pixel_y = 4; - req_access_txt = "0" + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" }, /obj/machinery/button/door{ id = "maint1"; - name = "Blast Door Control A"; - pixel_x = -28; - pixel_y = -6; - req_access_txt = "0" + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -11235,15 +11235,15 @@ /obj/structure/table/glass, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "awM" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -11259,16 +11259,16 @@ "awO" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/electrical) "awP" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11278,12 +11278,12 @@ "awQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ name = "Electrical Maintenance"; - req_access_txt = "11" + req_access_txt = "11" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11293,13 +11293,13 @@ "awR" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11315,8 +11315,8 @@ "awT" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11328,18 +11328,18 @@ /obj/structure/table, /obj/machinery/light{ icon_state = "tube1"; - dir = 4 + dir = 4 }, /obj/item/wallframe/camera, /obj/item/wallframe/camera, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -11348,7 +11348,7 @@ "awV" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "awW" = ( @@ -11368,43 +11368,43 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "awZ" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "axa" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "axb" = ( /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 5 + dir = 5 }, /area/hallway/secondary/entry) "axc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "axd" = ( @@ -11414,7 +11414,7 @@ "axe" = ( /obj/machinery/sleeper{ dir = 4; - icon_state = "sleeper-open" + icon_state = "sleeper-open" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -11438,7 +11438,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "axi" = ( @@ -11450,7 +11450,7 @@ "axj" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -11467,9 +11467,9 @@ "axm" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11507,15 +11507,15 @@ "axr" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11525,8 +11525,8 @@ "axs" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11539,9 +11539,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11551,17 +11551,17 @@ "axu" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11575,14 +11575,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11592,13 +11592,13 @@ "axw" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -11608,13 +11608,13 @@ "axx" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11651,7 +11651,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/fore) "axD" = ( @@ -11680,41 +11680,41 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "axH" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "axI" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "axJ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -11756,15 +11756,15 @@ }, /obj/item/clothing/mask/balaclava{ pixel_x = -8; - pixel_y = 8 + pixel_y = 8 }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "axQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, @@ -11772,8 +11772,8 @@ "axR" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ @@ -11788,8 +11788,8 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -11798,14 +11798,14 @@ "axT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -11821,16 +11821,16 @@ "axV" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "axW" = ( /obj/machinery/door/window/eastright{ base_state = "left"; - icon_state = "left"; - name = "Fitness Ring" + icon_state = "left"; + name = "Fitness Ring" }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ @@ -11840,16 +11840,16 @@ "axX" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/sleep) "axY" = ( /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/crew_quarters/fitness) "axZ" = ( @@ -11865,7 +11865,7 @@ "aya" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness) @@ -11878,13 +11878,13 @@ "ayc" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -11907,8 +11907,8 @@ "ayg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -11916,8 +11916,8 @@ "ayh" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11928,8 +11928,8 @@ "ayi" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -11954,32 +11954,32 @@ "aym" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "ayn" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/hallway/secondary/entry) "ayo" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "ayp" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "warning" @@ -11988,25 +11988,25 @@ "ayq" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) "ayr" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "ays" = ( @@ -12038,8 +12038,8 @@ "ayw" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -12061,11 +12061,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -12074,7 +12074,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -12083,11 +12083,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/window/reinforced/fulltile, @@ -12097,11 +12097,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/window/reinforced/fulltile, @@ -12115,7 +12115,7 @@ /obj/structure/cable, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -12127,8 +12127,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -12136,12 +12136,12 @@ "ayI" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -12154,7 +12154,7 @@ /obj/structure/closet/crate/rcd, /obj/machinery/camera/motion{ c_tag = "EVA Motion Sensor"; - name = "motion-sensitive security camera" + name = "motion-sensitive security camera" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -12166,7 +12166,7 @@ "ayM" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/item/clothing/head/welding, /turf/simulated/floor/plasteel, @@ -12174,7 +12174,7 @@ "ayN" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/machinery/light{ dir = 1 @@ -12192,7 +12192,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/screwdriver{ pixel_y = 16 @@ -12204,13 +12204,13 @@ "ayP" = ( /obj/machinery/power/apc{ dir = 1; - name = "EVA Storage APC"; - pixel_x = 0; - pixel_y = 24 + name = "EVA Storage APC"; + pixel_x = 0; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) @@ -12218,7 +12218,7 @@ /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 3; - pixel_y = -7 + pixel_y = -7 }, /obj/machinery/cell_charger, /obj/item/weapon/stock_parts/cell/high/plus, @@ -12230,7 +12230,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/device/multitool, /turf/simulated/floor/plasteel, @@ -12239,7 +12239,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/sign/securearea{ pixel_y = 32 @@ -12260,9 +12260,9 @@ "ayU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) @@ -12274,16 +12274,16 @@ }, /obj/machinery/button/door{ id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep) @@ -12301,21 +12301,21 @@ "ayY" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/fore) "ayZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -12333,7 +12333,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 2 + dir = 2 }, /area/crew_quarters/sleep) "azc" = ( @@ -12342,19 +12342,19 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "azd" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 6 + dir = 6 }, /area/crew_quarters/sleep) "aze" = ( @@ -12377,14 +12377,14 @@ "azh" = ( /obj/machinery/camera{ c_tag = "Fitness Room South"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/crew_quarters/fitness) "azi" = ( @@ -12397,29 +12397,29 @@ "azj" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "neutral" + icon_state = "neutral" }, /area/crew_quarters/fitness) "azk" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness) "azl" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -12427,7 +12427,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "neutralcorner" + icon_state = "neutralcorner" }, /area/crew_quarters/fitness) "azm" = ( @@ -12444,7 +12444,7 @@ "azo" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/fitness) @@ -12463,20 +12463,20 @@ "azr" = ( /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "azs" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -12487,21 +12487,21 @@ /obj/machinery/power/terminal, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "azu" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/electrical) "azv" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -12511,7 +12511,7 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -12519,7 +12519,7 @@ /obj/machinery/power/terminal, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -12532,25 +12532,25 @@ "azz" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "azA" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "azB" = ( /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "azC" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "warning" @@ -12559,20 +12559,20 @@ "azD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "azE" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12606,13 +12606,13 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/gateway) "azK" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -12624,7 +12624,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/gateway) "azM" = ( @@ -12633,7 +12633,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/gateway) "azN" = ( @@ -12647,13 +12647,13 @@ "azO" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -12663,9 +12663,9 @@ "azP" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12675,13 +12675,13 @@ "azQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "EVA Maintenance"; - req_access_txt = "18" + req_access_txt = "18" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12698,17 +12698,17 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "EVA Storage"; - req_access_txt = "18" + req_access_txt = "18" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12719,20 +12719,20 @@ /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 2 + dir = 2 }, /area/crew_quarters/sleep) "azU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12742,8 +12742,8 @@ "azV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "neutral" @@ -12755,13 +12755,13 @@ "azX" = ( /obj/machinery/door/airlock{ name = "Unisex Showers"; - req_access_txt = "0" + req_access_txt = "0" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -12778,7 +12778,7 @@ "azZ" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/fore) "aAa" = ( @@ -12789,7 +12789,7 @@ "aAb" = ( /obj/machinery/door/airlock{ id_tag = "Dorm2"; - name = "Dorm 2" + name = "Dorm 2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12813,9 +12813,9 @@ "aAe" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -12829,7 +12829,7 @@ "aAg" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "neutral" @@ -12842,20 +12842,20 @@ /obj/structure/closet/wardrobe/pjs, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 6 + dir = 6 }, /area/crew_quarters/sleep) "aAj" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/power/apc{ dir = 2; - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12864,13 +12864,13 @@ "aAk" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12882,27 +12882,27 @@ "aAl" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "neutral" + icon_state = "neutral" }, /area/crew_quarters/fitness) "aAm" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -12918,9 +12918,9 @@ "aAn" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -12940,18 +12940,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 6 + dir = 6 }, /area/crew_quarters/fitness) "aAp" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -12976,7 +12976,7 @@ /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -12992,8 +12992,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -13009,13 +13009,13 @@ "aAw" = ( /obj/machinery/power/apc{ dir = 4; - name = "Garden APC"; - pixel_x = 27; - pixel_y = 2 + name = "Garden APC"; + pixel_x = 27; + pixel_y = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/hallway/secondary/construction{ @@ -13033,7 +13033,7 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -13043,11 +13043,11 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -13055,9 +13055,9 @@ "aAA" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/wall, /area/maintenance/electrical) @@ -13067,15 +13067,15 @@ }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/maintenance/electrical) "aAC" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/hallway/secondary/entry) @@ -13083,11 +13083,11 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -13102,20 +13102,20 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aAG" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aAH" = ( /obj/machinery/camera{ c_tag = "Arrivals Bay 1 North"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "warning" @@ -13125,19 +13125,19 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aAJ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "aAK" = ( @@ -13155,13 +13155,13 @@ "aAL" = ( /obj/machinery/power/apc{ dir = 2; - name = "Primary Tool Storage APC"; - pixel_x = 1; - pixel_y = -24 + name = "Primary Tool Storage APC"; + pixel_x = 1; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -13171,22 +13171,22 @@ "aAM" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) "aAN" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13214,9 +13214,9 @@ "aAR" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -13227,7 +13227,7 @@ "aAS" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ @@ -13250,8 +13250,8 @@ "aAV" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/effect/spawner/lootdrop/maintenance, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13262,7 +13262,7 @@ "aAW" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/tank/jetpack/carbondioxide, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13270,18 +13270,18 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aAX" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "aAY" = ( @@ -13293,9 +13293,9 @@ "aAZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -13318,7 +13318,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/gateway) "aBe" = ( @@ -13332,7 +13332,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/gateway) "aBg" = ( @@ -13344,16 +13344,16 @@ "aBh" = ( /obj/machinery/camera{ c_tag = "EVA Maintenance"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/light/small{ dir = 4 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -13364,13 +13364,13 @@ "aBi" = ( /obj/machinery/power/apc{ dir = 8; - name = "Gateway APC"; - pixel_x = -24; - pixel_y = -1 + name = "Gateway APC"; + pixel_x = -24; + pixel_y = -1 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -13380,11 +13380,11 @@ "aBj" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/item/weapon/tank/jetpack/carbondioxide, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13392,7 +13392,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aBk" = ( @@ -13404,7 +13404,7 @@ "aBl" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; - req_access_txt = "1" + req_access_txt = "1" }, /turf/simulated/floor/plating, /area/security/checkpoint2) @@ -13435,7 +13435,7 @@ "aBp" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/clothing/shoes/magboots, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13443,13 +13443,13 @@ }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aBq" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/clothing/shoes/magboots, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13457,13 +13457,13 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aBr" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) @@ -13472,7 +13472,7 @@ /obj/structure/cable, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -13488,7 +13488,7 @@ "aBu" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -13555,8 +13555,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13585,7 +13585,7 @@ "aBG" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ @@ -13594,11 +13594,11 @@ "aBH" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aBI" = ( @@ -13615,13 +13615,13 @@ "aBL" = ( /obj/machinery/door/airlock/maintenance{ name = "Garden Maintenance"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -13641,25 +13641,25 @@ "aBO" = ( /obj/machinery/requests_console{ department = "EVA"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aBP" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -13683,19 +13683,19 @@ /obj/structure/closet/secure_closet/freezer/money, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/ai_monitored/nuke_storage) "aBU" = ( /obj/machinery/power/apc{ dir = 1; - name = "Vault APC"; - pixel_x = 0; - pixel_y = 25 + name = "Vault APC"; + pixel_x = 0; + pixel_y = 25 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/bluegrid, @@ -13714,7 +13714,7 @@ /obj/item/weapon/folder/documents, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/ai_monitored/nuke_storage) "aBX" = ( @@ -13723,7 +13723,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/gateway) "aBY" = ( @@ -13732,38 +13732,38 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/gateway) "aBZ" = ( /obj/machinery/gateway, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/gateway) "aCa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) "aCb" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/item/weapon/pen{ desc = "Writes upside down!"; - name = "astronaut pen" + name = "astronaut pen" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -13773,7 +13773,7 @@ "aCc" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aCd" = ( @@ -13784,30 +13784,30 @@ }, /obj/machinery/button/door{ id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep) "aCe" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /obj/item/weapon/bikehorn/rubberducky, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -13819,15 +13819,15 @@ }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/crew_quarters/theatre) "aCg" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) @@ -13835,7 +13835,7 @@ /obj/machinery/vending/autodrobe, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/crew_quarters/theatre) "aCi" = ( @@ -13847,7 +13847,7 @@ "aCj" = ( /obj/machinery/camera{ c_tag = "EVA East"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) @@ -13860,8 +13860,8 @@ "aCl" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -13869,9 +13869,9 @@ "aCm" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/structure/mirror{ pixel_x = -28 @@ -13903,33 +13903,33 @@ "aCp" = ( /obj/machinery/camera{ c_tag = "Arrivals North"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "aCq" = ( /obj/structure/table/wood, /obj/machinery/requests_console{ department = "Theatre"; - departmentType = 0; - name = "theatre RC"; - pixel_x = -32; - pixel_y = 0 + departmentType = 0; + name = "theatre RC"; + pixel_x = -32; + pixel_y = 0 }, /obj/item/weapon/reagent_containers/food/snacks/baguette, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/crew_quarters/theatre) "aCr" = ( @@ -13940,14 +13940,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint2) "aCt" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13991,24 +13991,24 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "aCA" = ( /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/window{ icon_state = "window"; - dir = 4 + dir = 4 }, /obj/structure/window, /turf/simulated/floor/plating{ @@ -14036,8 +14036,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -14080,8 +14080,8 @@ "aCJ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -14100,7 +14100,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/checkpoint2) "aCM" = ( @@ -14151,14 +14151,14 @@ "aCS" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aCT" = ( /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f6"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aCU" = ( @@ -14176,39 +14176,39 @@ /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "swall_f10"; - layer = 2 + icon_state = "swall_f10"; + layer = 2 }, /area/shuttle/arrival) "aCX" = ( /turf/simulated/wall/shuttle{ icon_state = "swall14"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aCY" = ( /obj/machinery/computer/security, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 0; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint2) "aCZ" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/checkpoint2) "aDa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ @@ -14219,11 +14219,11 @@ /obj/item/weapon/wirecutters, /obj/item/device/flashlight{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -14234,20 +14234,20 @@ }, /obj/item/device/radio/intercom{ broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 + name = "Station Intercom (General)"; + pixel_y = 20 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint2) "aDd" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -14260,12 +14260,12 @@ /obj/machinery/computer/secure_data, /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_y = 30 + departmentType = 5; + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint2) "aDg" = ( @@ -14297,7 +14297,7 @@ /obj/structure/table, /obj/item/device/assembly/igniter{ pixel_x = -8; - pixel_y = -4 + pixel_y = -4 }, /obj/item/device/assembly/igniter, /obj/item/weapon/screwdriver{ @@ -14308,8 +14308,8 @@ }, /obj/machinery/requests_console{ department = "Tool Storage"; - departmentType = 0; - pixel_y = 30 + departmentType = 0; + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -14336,8 +14336,8 @@ /obj/item/device/assembly/signaler, /obj/item/device/radio/intercom{ broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 + name = "Station Intercom (General)"; + pixel_y = 20 }, /obj/item/device/multitool, /obj/item/device/multitool{ @@ -14352,7 +14352,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -14369,20 +14369,20 @@ "aDs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/nuke_storage) "aDt" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -14399,11 +14399,11 @@ "aDv" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/ai_monitored/nuke_storage) "aDw" = ( @@ -14418,12 +14418,12 @@ "aDx" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/window{ name = "Gateway Chamber"; - req_access_txt = "62" + req_access_txt = "62" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -14436,9 +14436,9 @@ /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -14450,7 +14450,7 @@ }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -14458,9 +14458,9 @@ "aDA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -14469,22 +14469,22 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aDC" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aDD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -14494,32 +14494,32 @@ /obj/machinery/light, /obj/machinery/camera{ c_tag = "EVA Storage"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aDF" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aDG" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/sleep) "aDH" = ( /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14528,7 +14528,7 @@ /obj/item/weapon/folder/white, /obj/item/weapon/stamp/rd{ pixel_x = 3; - pixel_y = -2 + pixel_y = -2 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -14537,8 +14537,8 @@ "aDI" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" + icon_state = "shock"; + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) @@ -14546,7 +14546,7 @@ /obj/structure/table, /obj/item/device/flashlight/lamp{ pixel_x = 4; - pixel_y = 1 + pixel_y = 1 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -14555,7 +14555,7 @@ "aDK" = ( /obj/machinery/door/airlock{ id_tag = "Dorm1"; - name = "Dorm 1" + name = "Dorm 1" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -14565,15 +14565,15 @@ "aDL" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -14588,8 +14588,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14604,8 +14604,8 @@ "aDO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14623,8 +14623,8 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14638,21 +14638,21 @@ /obj/item/weapon/lipstick/random, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/crew_quarters/theatre) "aDS" = ( /obj/machinery/door/airlock{ name = "Unisex Showers"; - req_access_txt = "0" + req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14662,8 +14662,8 @@ /obj/machinery/light/small, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14672,13 +14672,13 @@ "aDU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14709,20 +14709,20 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/crew_quarters/theatre) "aDZ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14735,17 +14735,17 @@ "aEa" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -14755,7 +14755,7 @@ "aEb" = ( /obj/machinery/door/airlock/maintenance{ name = "Theatre Maintenance"; - req_access_txt = "46" + req_access_txt = "46" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14768,21 +14768,21 @@ "aEc" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/crew_quarters/theatre) "aEd" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plating, @@ -14790,13 +14790,13 @@ "aEe" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -14806,8 +14806,8 @@ "aEf" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -14820,13 +14820,13 @@ }, /obj/machinery/power/apc{ dir = 2; - name = "Chapel APC"; - pixel_x = 0; - pixel_y = -24 + name = "Chapel APC"; + pixel_x = 0; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/chapel/main) @@ -14844,7 +14844,7 @@ }, /obj/machinery/door/airlock/maintenance{ name = "Chapel Maintenance"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -14869,22 +14869,22 @@ "aEm" = ( /obj/machinery/door/window{ dir = 8; - name = "Mass Driver"; - req_access_txt = "22" + name = "Mass Driver"; + req_access_txt = "22" }, /obj/machinery/mass_driver{ dir = 4; - id = "chapelgun" + id = "chapelgun" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/chapel/main) "aEn" = ( /obj/machinery/door/poddoor{ id = "chapelgun"; - name = "Chapel Launcher Door" + name = "Chapel Launcher Door" }, /turf/simulated/floor/plating, /area/chapel/main) @@ -14896,7 +14896,7 @@ "aEp" = ( /turf/simulated/wall/shuttle{ icon_state = "swall11"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aEq" = ( @@ -14925,56 +14925,56 @@ "aEw" = ( /obj/machinery/requests_console{ department = "Arrival shuttle"; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/arrival) "aEx" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_r"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel/shuttle{ icon = 'icons/turf/floors.dmi'; - icon_state = "dark" + icon_state = "dark" }, /area/shuttle/arrival) "aEy" = ( /obj/structure/shuttle/engine/heater{ icon_state = "heater"; - dir = 4 + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/plasteel/shuttle{ icon = 'icons/turf/floors.dmi'; - icon_state = "dark" + icon_state = "dark" }, /area/shuttle/arrival) "aEz" = ( /obj/machinery/power/apc{ dir = 4; - name = "Entry Hall APC"; - pixel_x = 24; - pixel_y = 0 + name = "Entry Hall APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/structure/cable, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "aEA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ dir = 2; - icon_state = "pipe-j1s"; - sortType = 18 + icon_state = "pipe-j1s"; + sortType = 18 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -14990,12 +14990,12 @@ "aEC" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -15006,13 +15006,13 @@ "aED" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -15039,7 +15039,7 @@ /obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -15048,7 +15048,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint2) "aEH" = ( @@ -15069,22 +15069,22 @@ "aEJ" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint2) "aEK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/security/checkpoint2) "aEL" = ( /obj/machinery/door/airlock{ name = "Garden"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ @@ -15099,56 +15099,56 @@ }, /obj/item/stack/sheet/mineral/gold{ pixel_x = -1; - pixel_y = 5 + pixel_y = 5 }, /obj/item/stack/sheet/mineral/gold{ pixel_y = 2 }, /obj/item/stack/sheet/mineral/gold{ pixel_x = 1; - pixel_y = -2 + pixel_y = -2 }, /obj/item/weapon/storage/belt/champion, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/nuke_storage) "aEO" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/bluegrid, /area/ai_monitored/nuke_storage) "aEP" = ( /obj/item/weapon/coin/silver{ pixel_x = 7; - pixel_y = 12 + pixel_y = 12 }, /obj/item/weapon/coin/silver{ pixel_x = 12; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/coin/silver{ pixel_x = 4; - pixel_y = 8 + pixel_y = 8 }, /obj/item/weapon/coin/silver{ pixel_x = -6; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/coin/silver{ pixel_x = 5; - pixel_y = -8 + pixel_y = -8 }, /obj/structure/closet/crate{ name = "Silver Crate" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/ai_monitored/nuke_storage) "aEQ" = ( @@ -15159,8 +15159,8 @@ "aER" = ( /obj/machinery/camera{ c_tag = "Gateway"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/table, /obj/structure/sign/biohazard{ @@ -15177,11 +15177,11 @@ }, /obj/item/device/radio/off{ pixel_x = 6; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/radio/off{ pixel_x = -6; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/radio/off, /turf/simulated/floor/plasteel, @@ -15189,8 +15189,8 @@ "aET" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -15219,7 +15219,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "EVA Storage"; - req_access_txt = "18" + req_access_txt = "18" }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) @@ -15260,21 +15260,21 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/sleep) "aFe" = ( /obj/machinery/camera{ c_tag = "Dormitory South"; - c_tag_order = 999; - dir = 4 + c_tag_order = 999; + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "aFf" = ( @@ -15294,7 +15294,7 @@ "aFh" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms"; - req_access_txt = "0" + req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -15306,9 +15306,9 @@ "aFi" = ( /obj/machinery/power/apc{ dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26; - pixel_y = 0 + name = "Dormitory Bathrooms APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -15344,7 +15344,7 @@ "aFm" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -15383,8 +15383,8 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -15394,9 +15394,9 @@ "aFs" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -15410,9 +15410,9 @@ "aFt" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -15428,12 +15428,12 @@ "aFv" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -15451,9 +15451,9 @@ "aFy" = ( /obj/machinery/power/apc{ dir = 2; - name = "Chapel Office APC"; - pixel_x = 0; - pixel_y = -24 + name = "Chapel Office APC"; + pixel_x = 0; + pixel_y = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -15468,11 +15468,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/computer/pod/old{ icon = 'icons/obj/airlock_machines.dmi'; - icon_state = "airlock_control_standby"; - id = "chapelgun"; - name = "Mass Driver Controller"; - pixel_x = 24; - pixel_y = 0 + icon_state = "airlock_control_standby"; + id = "chapelgun"; + name = "Mass Driver Controller"; + pixel_x = 24; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -15491,7 +15491,7 @@ "aFD" = ( /turf/simulated/wall/shuttle{ icon_state = "swall1"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aFE" = ( @@ -15506,17 +15506,17 @@ "aFF" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel/shuttle{ icon = 'icons/turf/floors.dmi'; - icon_state = "dark" + icon_state = "dark" }, /area/shuttle/arrival) "aFG" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "aFH" = ( @@ -15530,29 +15530,29 @@ "aFI" = ( /obj/machinery/camera{ c_tag = "Security Checkpoint"; - dir = 1 + dir = 1 }, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/light_switch{ pixel_x = 6; - pixel_y = -25 + pixel_y = -25 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/checkpoint2) "aFJ" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ icon_state = "intact"; - dir = 1 + dir = 1 }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plating, @@ -15560,7 +15560,7 @@ "aFK" = ( /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /obj/structure/table, @@ -15578,7 +15578,7 @@ /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/checkpoint2) "aFM" = ( @@ -15599,7 +15599,7 @@ /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -15607,13 +15607,13 @@ "aFO" = ( /obj/machinery/camera{ c_tag = "Garden"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ @@ -15631,26 +15631,26 @@ /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 2; - pixel_y = -2 + pixel_y = -2 }, /obj/item/stack/cable_coil{ pixel_x = 3; - pixel_y = -7 + pixel_y = -7 }, /obj/item/weapon/screwdriver{ pixel_y = 16 }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/storage/primary) "aFR" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -15675,9 +15675,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -15685,8 +15685,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15699,9 +15699,9 @@ "aFX" = ( /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -15709,7 +15709,7 @@ "aFY" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -15717,7 +15717,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/machinery/light{ dir = 4 @@ -15728,37 +15728,37 @@ /obj/machinery/light, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 6 + dir = 6 }, /area/ai_monitored/nuke_storage) "aGb" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/ai_monitored/nuke_storage) "aGc" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/camera/motion{ c_tag = "Vault"; - dir = 1; - network = list("MiniSat") + dir = 1; + network = list("MiniSat") }, /obj/machinery/light, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 10 + dir = 10 }, /area/ai_monitored/nuke_storage) "aGd" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "vault" @@ -15774,13 +15774,13 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/ai_monitored/nuke_storage) "aGf" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel, /area/gateway) @@ -15808,9 +15808,9 @@ "aGk" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -15866,11 +15866,11 @@ }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aGp" = ( @@ -15889,7 +15889,7 @@ /obj/structure/table, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aGr" = ( @@ -15899,7 +15899,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "redbluefull" @@ -15915,7 +15915,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/fore) "aGu" = ( @@ -15951,9 +15951,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plating, @@ -15961,17 +15961,17 @@ "aGz" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15982,19 +15982,19 @@ "aGA" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j1s"; - sortType = 19 + icon_state = "pipe-j1s"; + sortType = 19 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -16004,13 +16004,13 @@ "aGB" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j1s"; - sortType = 20 + icon_state = "pipe-j1s"; + sortType = 20 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -16020,12 +16020,12 @@ "aGC" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -16045,12 +16045,12 @@ "aGE" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -16060,8 +16060,8 @@ "aGF" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j2s"; - sortType = 17 + icon_state = "pipe-j2s"; + sortType = 17 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -16072,7 +16072,7 @@ "aGG" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -16083,13 +16083,13 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16099,12 +16099,12 @@ "aGI" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j1"; - dir = 4 + dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16117,9 +16117,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16132,8 +16132,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16143,8 +16143,8 @@ "aGL" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -16157,7 +16157,7 @@ "aGM" = ( /obj/machinery/door/airlock/maintenance{ name = "Crematorium Maintenance"; - req_access_txt = "27" + req_access_txt = "27" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16166,16 +16166,16 @@ "aGN" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16192,8 +16192,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -16201,12 +16201,12 @@ "aGQ" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16219,9 +16219,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16231,8 +16231,8 @@ "aGS" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16245,8 +16245,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -16259,8 +16259,8 @@ }, /obj/machinery/requests_console{ department = "Chapel"; - departmentType = 2; - pixel_y = 30 + departmentType = 2; + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -16307,8 +16307,8 @@ "aGZ" = ( /obj/machinery/door/airlock/security{ name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" + req_access = null; + req_access_txt = "1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -16319,8 +16319,8 @@ /obj/item/weapon/paper, /obj/machinery/door/window/westright{ dir = 1; - name = "Security Checkpoint"; - req_access_txt = "1" + name = "Security Checkpoint"; + req_access_txt = "1" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -16331,7 +16331,7 @@ /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/stack/packageWrap, /turf/simulated/floor/wood, @@ -16350,7 +16350,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -16369,8 +16369,8 @@ }, /obj/machinery/camera{ c_tag = "Chapel Office"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -16379,12 +16379,12 @@ "aHh" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/gateway) @@ -16400,12 +16400,12 @@ "aHj" = ( /obj/machinery/light_switch{ pixel_x = -20; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -16415,7 +16415,7 @@ "aHk" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -16425,7 +16425,7 @@ /obj/structure/closet/coffin, /obj/machinery/door/window/eastleft{ name = "Coffin Storage"; - req_access_txt = "22" + req_access_txt = "22" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -16454,7 +16454,7 @@ /obj/item/weapon/reagent_containers/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aHp" = ( @@ -16463,7 +16463,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aHq" = ( @@ -16492,21 +16492,21 @@ "aHu" = ( /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 + layer = 3; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/secondary/entry) "aHv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/gateway) @@ -16532,7 +16532,7 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "green" + icon_state = "green" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -16541,12 +16541,12 @@ /obj/item/weapon/reagent_containers/spray/plantbgone, /obj/item/weapon/reagent_containers/spray/pestspray{ pixel_x = 3; - pixel_y = 4 + pixel_y = 4 }, /obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, /obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ pixel_x = 2; - pixel_y = 1 + pixel_y = 1 }, /obj/structure/table/glass, /obj/machinery/light{ @@ -16554,7 +16554,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "green" + icon_state = "green" }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -16562,9 +16562,9 @@ "aHB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -16573,7 +16573,7 @@ "aHC" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -16605,17 +16605,17 @@ "aHG" = ( /obj/machinery/door/airlock/vault{ icon_state = "door_locked"; - locked = 1; - req_access_txt = "53" + locked = 1; + req_access_txt = "53" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/ai_monitored/nuke_storage) "aHH" = ( @@ -16626,7 +16626,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/crew_quarters/sleep) "aHI" = ( @@ -16647,13 +16647,13 @@ "aHL" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/closet/l3closet/scientist, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/gateway) "aHM" = ( @@ -16673,14 +16673,14 @@ /obj/item/weapon/crowbar, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aHO" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aHP" = ( @@ -16697,7 +16697,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aHR" = ( @@ -16707,14 +16707,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aHS" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ name = "Bar Storage Maintenance"; - req_access_txt = "25" + req_access_txt = "25" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -16730,19 +16730,19 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/crew_quarters/sleep) "aHU" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/structure/mirror{ pixel_x = -28 @@ -16788,8 +16788,8 @@ /obj/structure/table/wood, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/item/weapon/storage/crayons, /turf/simulated/floor/plasteel{ @@ -16806,8 +16806,8 @@ "aIb" = ( /obj/machinery/power/apc{ dir = 8; - name = "Theatre APC"; - pixel_x = -25 + name = "Theatre APC"; + pixel_x = -25 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16818,8 +16818,8 @@ "aIc" = ( /obj/machinery/power/apc{ dir = 2; - name = "Bar APC"; - pixel_y = -24 + name = "Bar APC"; + pixel_y = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16851,8 +16851,8 @@ "aIg" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" + freq = 1400; + location = "Bar" }, /obj/structure/plasticflaps{ opacity = 1 @@ -16862,14 +16862,14 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/crew_quarters/bar) "aIh" = ( /obj/machinery/power/apc{ dir = 2; - name = "Kitchen APC"; - pixel_y = -24 + name = "Kitchen APC"; + pixel_y = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16886,13 +16886,13 @@ "aIj" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j1s"; - sortType = 21 + icon_state = "pipe-j1s"; + sortType = 21 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -16902,7 +16902,7 @@ "aIk" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -16912,17 +16912,17 @@ "aIl" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -16936,8 +16936,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -16947,12 +16947,12 @@ "aIn" = ( /obj/machinery/power/apc{ dir = 2; - name = "Hydroponics APC"; - pixel_y = -24 + name = "Hydroponics APC"; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -16963,8 +16963,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -16985,8 +16985,8 @@ /obj/structure/chair/office/dark, /obj/machinery/camera{ c_tag = "Library North"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -17015,7 +17015,7 @@ /obj/structure/chair/office/dark, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/effect/landmark/start{ name = "Assistant" @@ -17028,7 +17028,7 @@ "aIx" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -17053,7 +17053,7 @@ /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -2; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/storage/crayons, /turf/simulated/floor/plasteel{ @@ -17100,7 +17100,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aIG" = ( @@ -17112,14 +17112,14 @@ "aIH" = ( /turf/simulated/wall/shuttle{ icon_state = "swall2"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aII" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -17157,7 +17157,7 @@ "aIO" = ( /obj/machinery/camera{ c_tag = "Arrivals Lounge"; - dir = 2 + dir = 2 }, /obj/machinery/light{ dir = 1 @@ -17173,7 +17173,7 @@ "aIQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -17192,11 +17192,11 @@ /obj/item/device/analyzer/plant_analyzer, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -17207,17 +17207,17 @@ /obj/item/device/analyzer/plant_analyzer, /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, /obj/machinery/light_switch{ pixel_x = -6; - pixel_y = -25 + pixel_y = -25 }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 8 + dir = 8 }, /area/hallway/secondary/construction{ name = "\improper Garden" @@ -17225,8 +17225,8 @@ "aIU" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" + freq = 1400; + location = "Tool Storage" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -17236,10 +17236,10 @@ "aIV" = ( /obj/machinery/button/door{ id = "stationawaygate"; - name = "Gateway Access Shutter Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" + name = "Gateway Access Shutter Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" }, /turf/simulated/floor/plasteel, /area/gateway) @@ -17248,7 +17248,7 @@ /obj/item/weapon/crowbar, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /obj/item/clothing/gloves/color/fyellow, /turf/simulated/floor/plasteel, @@ -17270,8 +17270,8 @@ "aJa" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -17290,7 +17290,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -17298,34 +17298,34 @@ "aJe" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/hallway/primary/port) "aJf" = ( /obj/machinery/camera{ c_tag = "EVA South"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) "aJg" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aJh" = ( @@ -17338,7 +17338,7 @@ /obj/structure/closet/secure_closet/exile, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/gateway) "aJj" = ( @@ -17351,31 +17351,31 @@ }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/extinguisher, /obj/item/weapon/extinguisher, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aJk" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; - req_access_txt = "46" + req_access_txt = "46" }, /turf/simulated/floor/plasteel, /area/crew_quarters/theatre) @@ -17383,11 +17383,11 @@ /obj/structure/tank_dispenser/oxygen, /obj/machinery/light{ icon_state = "tube1"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/ai_monitored/storage/eva) "aJm" = ( @@ -17408,17 +17408,17 @@ }, /obj/machinery/camera{ c_tag = "Central Hallway North"; - dir = 2 + dir = 2 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aJp" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aJq" = ( @@ -17427,43 +17427,43 @@ "aJr" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aJs" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aJt" = ( /obj/structure/sign/directions/security{ dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 40 + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 40 }, /obj/structure/sign/directions/medical{ dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = 32 + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 32 }, /obj/structure/sign/directions/evac{ dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 24 + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 24 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aJu" = ( /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aJv" = ( @@ -17484,13 +17484,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "aJz" = ( /obj/machinery/camera{ c_tag = "Dormitory Toilets"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -17499,7 +17499,7 @@ "aJA" = ( /obj/machinery/door/airlock/maintenance{ name = "Kitchen Maintenance"; - req_access_txt = "28" + req_access_txt = "28" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17509,7 +17509,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; - req_access_txt = "35" + req_access_txt = "35" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -17520,7 +17520,7 @@ "aJD" = ( /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -17545,9 +17545,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/wood, /area/library) @@ -17570,10 +17570,10 @@ "aJH" = ( /obj/machinery/door/window/southleft{ base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -17593,29 +17593,29 @@ "aJK" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" + freq = 1400; + location = "Kitchen" }, /obj/structure/plasticflaps{ opacity = 1 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/crew_quarters/kitchen) "aJL" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" + freq = 1400; + location = "Hydroponics" }, /obj/structure/plasticflaps{ opacity = 1 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/hydroponics) "aJM" = ( @@ -17694,8 +17694,8 @@ /obj/structure/closet/coffin, /obj/machinery/door/window/eastleft{ dir = 8; - name = "Coffin Storage"; - req_access_txt = "22" + name = "Coffin Storage"; + req_access_txt = "22" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -17724,8 +17724,8 @@ "aJZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ @@ -17746,11 +17746,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /obj/structure/cable, @@ -17760,15 +17760,15 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ icon_state = "door_closed"; - lockdownbyai = 0; - locked = 0; - name = "Gateway Access"; - req_access_txt = "62" + lockdownbyai = 0; + locked = 0; + name = "Gateway Access"; + req_access_txt = "62" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -17777,7 +17777,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "stationawaygate"; - name = "Gateway Access Shutters" + name = "Gateway Access Shutters" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -17786,14 +17786,14 @@ /obj/structure/table/glass, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aKf" = ( /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f5"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aKg" = ( @@ -17803,25 +17803,25 @@ "aKh" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/arrival) "aKi" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_l"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel/shuttle{ icon = 'icons/turf/floors.dmi'; - icon_state = "dark" + icon_state = "dark" }, /area/shuttle/arrival) "aKj" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 2 + dir = 2 }, /area/hallway/secondary/entry) "aKk" = ( @@ -17832,7 +17832,7 @@ "aKl" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "neutralcorner" + icon_state = "neutralcorner" }, /area/hallway/secondary/entry) "aKm" = ( @@ -17855,7 +17855,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aKp" = ( @@ -17869,14 +17869,14 @@ }, /obj/machinery/camera{ c_tag = "Theatre Stage"; - dir = 2 + dir = 2 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) "aKr" = ( /obj/machinery/airalarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) @@ -17889,11 +17889,11 @@ "aKt" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/structure/window/reinforced/fulltile, @@ -17902,7 +17902,7 @@ "aKu" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/grille, /obj/structure/window/reinforced/fulltile, @@ -17913,11 +17913,11 @@ /obj/structure/cable, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -17925,29 +17925,29 @@ "aKw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/hallway/primary/port) "aKx" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/structure/window/reinforced/fulltile, @@ -17957,8 +17957,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -17969,9 +17969,9 @@ "aKz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) @@ -17979,7 +17979,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "stationawaygate"; - name = "Gateway Access Shutters" + name = "Gateway Access Shutters" }, /turf/simulated/floor/plasteel, /area/gateway) @@ -18006,13 +18006,13 @@ "aKE" = ( /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "aKF" = ( /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aKG" = ( @@ -18027,9 +18027,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" @@ -18092,7 +18092,7 @@ }, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -18101,7 +18101,7 @@ "aKP" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -18139,10 +18139,10 @@ "aKV" = ( /obj/machinery/door/window/southleft{ base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Kitchen Delivery"; - req_access_txt = "28" + dir = 2; + icon_state = "left"; + name = "Kitchen Delivery"; + req_access_txt = "28" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -18159,7 +18159,7 @@ "aKX" = ( /obj/machinery/door/window/eastright{ name = "Hydroponics Delivery"; - req_access_txt = "35" + req_access_txt = "35" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -18173,18 +18173,18 @@ "aKZ" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/camera{ c_tag = "Chapel Crematorium"; - dir = 4 + dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -18193,7 +18193,7 @@ "aLa" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -18208,7 +18208,7 @@ }, /obj/machinery/door/airlock{ name = "Crematorium"; - req_access_txt = "27" + req_access_txt = "27" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -18220,7 +18220,7 @@ "aLc" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -18230,15 +18230,15 @@ /obj/structure/table, /obj/item/weapon/reagent_containers/spray/plantbgone{ pixel_x = 0; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/reagent_containers/spray/plantbgone{ pixel_x = 8; - pixel_y = 8 + pixel_y = 8 }, /obj/item/weapon/reagent_containers/spray/plantbgone{ pixel_x = 13; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/watertank, /turf/simulated/floor/plasteel{ @@ -18259,8 +18259,8 @@ "aLf" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/wood, /area/library) @@ -18271,7 +18271,7 @@ "aLh" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/library) @@ -18292,32 +18292,32 @@ "aLk" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aLl" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/port) "aLm" = ( @@ -18326,15 +18326,15 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/hallway/primary/port) "aLn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -18348,20 +18348,20 @@ "aLp" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/port) "aLq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/port) "aLr" = ( @@ -18378,18 +18378,18 @@ }, /obj/docking_port/mobile{ dwidth = 5; - height = 7; - id = "arrival"; - name = "arrival shuttle"; - travelDir = -90; - width = 15 + height = 7; + id = "arrival"; + name = "arrival shuttle"; + travelDir = -90; + width = 15 }, /obj/docking_port/stationary{ dwidth = 5; - height = 7; - id = "arrival_home"; - name = "port bay 1"; - width = 15 + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 }, /turf/simulated/floor/plating, /area/shuttle/arrival) @@ -18397,23 +18397,23 @@ /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f9"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aLu" = ( /turf/simulated/wall/shuttle{ icon_state = "swall13"; - dir = 2 + dir = 2 }, /area/shuttle/arrival) "aLv" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aLw" = ( @@ -18443,7 +18443,7 @@ /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -18452,7 +18452,7 @@ "aLB" = ( /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 8 + dir = 8 }, /area/hallway/secondary/entry) "aLC" = ( @@ -18481,28 +18481,28 @@ "aLG" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/apc{ name = "Port Hall APC"; - dir = 1; - pixel_y = 26 + dir = 1; + pixel_y = 26 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aLH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aLI" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -18512,13 +18512,13 @@ }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/hallway/primary/port) "aLK" = ( @@ -18528,24 +18528,24 @@ "aLL" = ( /obj/machinery/camera{ c_tag = "Port Hallway 2"; - dir = 2 + dir = 2 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/port) "aLM" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/port) "aLN" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/port) "aLO" = ( @@ -18554,29 +18554,29 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aLP" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/port) "aLQ" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-East"; - dir = 2 + dir = 2 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -18589,13 +18589,13 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/central) "aLS" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) @@ -18603,14 +18603,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/port) "aLU" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/light/small{ dir = 8 @@ -18624,14 +18624,14 @@ }, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "aLW" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-West"; - dir = 2 + dir = 2 }, /obj/machinery/airalarm{ pixel_y = 23 @@ -18641,7 +18641,7 @@ "aLX" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aLY" = ( @@ -18681,8 +18681,8 @@ "aMf" = ( /turf/simulated/floor/plasteel{ desc = ""; - icon_state = "L13"; - name = "floor" + icon_state = "L13"; + name = "floor" }, /area/hallway/primary/central) "aMg" = ( @@ -18691,13 +18691,13 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aMh" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -18705,7 +18705,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/wood, @@ -18716,7 +18716,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/central) "aMk" = ( @@ -18736,8 +18736,8 @@ "aMl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -18746,7 +18746,7 @@ "aMm" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -18778,7 +18778,7 @@ "aMs" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -18791,7 +18791,7 @@ }, /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = -31 + pixel_y = -31 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -18858,7 +18858,7 @@ }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -18884,7 +18884,7 @@ "aME" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -18930,9 +18930,9 @@ "aMK" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -18941,9 +18941,9 @@ "aML" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -18952,8 +18952,8 @@ "aMM" = ( /obj/machinery/camera{ c_tag = "Chapel North"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -18979,8 +18979,8 @@ "aMQ" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -18990,8 +18990,8 @@ "aMR" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_pump{ on = 1 @@ -19012,8 +19012,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -19024,8 +19024,8 @@ "aMV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -19106,54 +19106,54 @@ "aNj" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" + location = "Lockers" }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aNk" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aNl" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aNm" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aNn" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aNo" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -19177,18 +19177,18 @@ "aNs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "aNt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) @@ -19216,7 +19216,7 @@ "aNy" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" + location = "EVA" }, /turf/simulated/floor/plasteel{ icon_state = "L6" @@ -19230,7 +19230,7 @@ "aNA" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" + location = "EVA2" }, /turf/simulated/floor/plasteel{ icon_state = "L10" @@ -19239,13 +19239,13 @@ "aNB" = ( /turf/simulated/floor/plasteel{ desc = ""; - icon_state = "L14" + icon_state = "L14" }, /area/hallway/primary/central) "aNC" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" + location = "Dorm" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -19257,9 +19257,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) @@ -19281,8 +19281,8 @@ "aNH" = ( /obj/machinery/door/window{ dir = 4; - name = "Theatre Stage"; - req_access_txt = "0" + name = "Theatre Stage"; + req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -19296,9 +19296,9 @@ }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 + layer = 3; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -19339,7 +19339,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ name = "Hydroponics"; - req_access_txt = "35" + req_access_txt = "35" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19353,8 +19353,8 @@ }, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/closet/chefcloset, /turf/simulated/floor/plasteel{ @@ -19384,13 +19384,13 @@ "aNT" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -19407,7 +19407,7 @@ }, /obj/machinery/camera{ c_tag = "Port Hallway"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -19421,7 +19421,7 @@ "aNW" = ( /obj/machinery/door/airlock/glass{ name = "Chapel Office"; - req_access_txt = "22" + req_access_txt = "22" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -19430,9 +19430,9 @@ "aNX" = ( /obj/item/device/radio/intercom{ broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 25 + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 25 }, /obj/structure/chair, /turf/simulated/floor/plasteel{ @@ -19442,7 +19442,7 @@ "aNY" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; - req_access_txt = "22" + req_access_txt = "22" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -19452,7 +19452,7 @@ /obj/structure/chair, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/hallway/secondary/exit) "aOa" = ( @@ -19462,28 +19462,28 @@ /obj/structure/chair, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/hallway/secondary/exit) "aOb" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/hallway/secondary/exit) "aOc" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "aOd" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "aOe" = ( @@ -19493,36 +19493,36 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aOf" = ( /obj/machinery/vending/snack, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aOg" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aOh" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aOi" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -19539,7 +19539,7 @@ }, /obj/item/weapon/lighter/greyscale{ pixel_x = 4; - pixel_y = 2 + pixel_y = 2 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -19560,12 +19560,12 @@ "aOm" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -19579,7 +19579,7 @@ "aOo" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -19589,7 +19589,7 @@ "aOp" = ( /obj/machinery/camera{ c_tag = "Port Hallway 3"; - dir = 1 + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -19599,14 +19599,14 @@ "aOq" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j1"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) "aOr" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -19620,9 +19620,9 @@ "aOt" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/light, /obj/structure/disposalpipe/segment{ @@ -19636,9 +19636,9 @@ "aOu" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -19651,9 +19651,9 @@ "aOv" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -19663,18 +19663,18 @@ "aOw" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel, @@ -19682,8 +19682,8 @@ "aOx" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -19693,14 +19693,14 @@ "aOy" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel, @@ -19708,19 +19708,19 @@ "aOz" = ( /obj/structure/sign/directions/security{ dir = 4; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = -24 + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = -24 }, /obj/structure/sign/directions/evac{ dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = -32 + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = -32 }, /obj/structure/sign/directions/engineering{ pixel_x = 32; - pixel_y = -40 + pixel_y = -40 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -19754,7 +19754,7 @@ "aOD" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=QM"; - location = "CHW" + location = "CHW" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -19764,35 +19764,35 @@ "aOE" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aOF" = ( /obj/machinery/light, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aOG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 }, /obj/machinery/door/firedoor, /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aOH" = ( @@ -19827,7 +19827,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -19845,7 +19845,7 @@ "aOO" = ( /obj/machinery/door/airlock{ name = "Bar Storage"; - req_access_txt = "25" + req_access_txt = "25" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -19862,9 +19862,9 @@ "aOQ" = ( /obj/machinery/requests_console{ department = "Hydroponics"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 + departmentType = 2; + pixel_x = 0; + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -19874,7 +19874,7 @@ "aOR" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -19894,17 +19894,17 @@ "aOU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "aOV" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -19914,7 +19914,7 @@ /obj/machinery/hydroponics/constructable, /obj/machinery/camera{ c_tag = "Hydroponics North"; - dir = 2 + dir = 2 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -19929,7 +19929,7 @@ "aOY" = ( /obj/structure/chair/comfy/beige{ dir = 1; - icon_state = "comfychair" + icon_state = "comfychair" }, /obj/effect/landmark/start{ name = "Assistant" @@ -19951,7 +19951,7 @@ "aPa" = ( /obj/structure/chair/comfy/beige{ dir = 1; - icon_state = "comfychair" + icon_state = "comfychair" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -19965,8 +19965,8 @@ "aPc" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -19978,7 +19978,7 @@ "aPe" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -19993,19 +19993,19 @@ }, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aPh" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen/invisible, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aPi" = ( @@ -20019,7 +20019,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aPj" = ( @@ -20033,27 +20033,27 @@ "aPk" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aPl" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aPm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aPn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aPo" = ( @@ -20066,16 +20066,16 @@ "aPp" = ( /obj/machinery/camera{ c_tag = "Escape Arm Holding Area"; - dir = 4 + dir = 4 }, /obj/item/device/radio/intercom{ dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 + name = "Station Intercom (General)"; + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/hallway/secondary/exit) "aPq" = ( @@ -20090,36 +20090,36 @@ "aPs" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "aPt" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aPu" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/hallway/secondary/entry) "aPv" = ( /obj/item/device/radio/intercom{ broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 + name = "Station Intercom (General)"; + pixel_y = 20 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aPw" = ( /obj/item/weapon/storage/secure/safe{ pixel_x = 5; - pixel_y = 29 + pixel_y = 29 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20131,7 +20131,7 @@ "aPx" = ( /obj/structure/chair/comfy/beige{ dir = 1; - icon_state = "comfychair" + icon_state = "comfychair" }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -20156,9 +20156,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -20174,7 +20174,7 @@ "aPE" = ( /obj/machinery/status_display{ density = 0; - layer = 4 + layer = 4 }, /turf/simulated/wall, /area/crew_quarters/locker) @@ -20195,8 +20195,8 @@ "aPI" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -20223,8 +20223,8 @@ /obj/structure/table, /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -20235,7 +20235,7 @@ "aPP" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer, @@ -20256,17 +20256,17 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" + layer = 2.9; + name = "bridge blast door" }, /turf/simulated/floor/plating, /area/bridge) @@ -20274,12 +20274,12 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" + layer = 2.9; + name = "bridge blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -20288,21 +20288,21 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/status_display{ density = 0; - layer = 4 + layer = 4 }, /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" + layer = 2.9; + name = "bridge blast door" }, /turf/simulated/floor/plating, /area/bridge) @@ -20310,21 +20310,21 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" + layer = 2.9; + name = "bridge blast door" }, /turf/simulated/floor/plating, /area/bridge) @@ -20332,21 +20332,21 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/status_display{ density = 0; - layer = 4 + layer = 4 }, /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" + layer = 2.9; + name = "bridge blast door" }, /turf/simulated/floor/plating, /area/bridge) @@ -20354,13 +20354,13 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" + layer = 2.9; + name = "bridge blast door" }, /turf/simulated/floor/plating, /area/bridge) @@ -20415,17 +20415,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "green" + icon_state = "green" }, /area/hydroponics) "aQg" = ( /obj/machinery/disposal/bin, /obj/structure/sign/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 4; - pixel_y = 28 + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 }, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -20438,13 +20438,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "green" + icon_state = "green" }, /area/hydroponics) "aQi" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -20457,7 +20457,7 @@ "aQk" = ( /obj/machinery/door/airlock{ name = "Kitchen cold room"; - req_access_txt = "28" + req_access_txt = "28" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -20471,13 +20471,13 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aQm" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "green" + icon_state = "green" }, /area/hydroponics) "aQn" = ( @@ -20486,17 +20486,17 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aQo" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aQp" = ( @@ -20515,7 +20515,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aQs" = ( @@ -20523,7 +20523,7 @@ /obj/item/clothing/under/suit_jacket/red, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aQt" = ( @@ -20535,7 +20535,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aQu" = ( @@ -20546,7 +20546,7 @@ "aQv" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aQw" = ( @@ -20565,15 +20565,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aQz" = ( /obj/item/device/radio/intercom{ broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 25 + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 25 }, /obj/structure/chair{ dir = 1 @@ -20593,7 +20593,7 @@ "aQB" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/hallway/secondary/exit) "aQC" = ( @@ -20606,7 +20606,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aQE" = ( @@ -20615,53 +20615,53 @@ "aQF" = ( /obj/machinery/door/airlock/external{ name = "Security Escape Airlock"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) "aQG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "aQH" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/hallway/secondary/entry) "aQI" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 4 + dir = 4 }, /area/hallway/secondary/entry) "aQJ" = ( /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aQK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aQL" = ( @@ -20672,9 +20672,9 @@ "aQM" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, @@ -20724,14 +20724,14 @@ "aQX" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aQY" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /obj/structure/table, /obj/item/stack/cable_coil/random, @@ -20753,8 +20753,8 @@ "aRb" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -20762,7 +20762,7 @@ "aRc" = ( /obj/machinery/door/airlock{ name = "Port Emergency Storage"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/storage/emergency2) @@ -20772,15 +20772,15 @@ }, /turf/simulated/floor/plasteel{ icon_state = "neutral"; - dir = 1 + dir = 1 }, /area/hallway/secondary/entry) "aRe" = ( /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -20790,7 +20790,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ name = "Auxiliary Tool Storage"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -20811,7 +20811,7 @@ /obj/machinery/computer/atmos_alert, /turf/simulated/floor/plasteel{ icon_state = "yellow"; - dir = 10 + dir = 10 }, /area/bridge) "aRj" = ( @@ -20819,7 +20819,7 @@ /obj/item/weapon/storage/secure/briefcase, /obj/item/weapon/storage/box/PDAs{ pixel_x = 4; - pixel_y = 4 + pixel_y = 4 }, /obj/item/weapon/storage/box/ids, /turf/simulated/floor/plasteel, @@ -20830,11 +20830,11 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "yellow" + icon_state = "yellow" }, /area/bridge) "aRl" = ( @@ -20847,48 +20847,48 @@ /obj/machinery/computer/communications, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aRn" = ( /obj/machinery/computer/shuttle/labor, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 10 + dir = 10 }, /area/bridge) "aRo" = ( /obj/machinery/computer/card, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "green" + icon_state = "green" }, /area/bridge) "aRp" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/computer/shuttle/mining, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 6 + dir = 6 }, /area/bridge) "aRq" = ( /obj/machinery/computer/med_data, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "green" + icon_state = "green" }, /area/bridge) "aRr" = ( /obj/machinery/computer/crew, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "green" + icon_state = "green" }, /area/bridge) "aRs" = ( @@ -20903,14 +20903,14 @@ "aRt" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "aRu" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ @@ -20946,7 +20946,7 @@ "aRy" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -20955,7 +20955,7 @@ "aRz" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -20973,7 +20973,7 @@ }, /obj/machinery/camera{ c_tag = "Kitchen"; - dir = 2 + dir = 2 }, /obj/structure/closet/secure_closet/freezer/fridge, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -21001,14 +21001,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 8 + dir = 8 }, /area/hydroponics) "aRF" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; - pixel_y = 6 + pixel_y = 6 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -21018,7 +21018,7 @@ /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; - pixel_y = 6 + pixel_y = 6 }, /obj/machinery/airalarm{ pixel_y = 24 @@ -21040,7 +21040,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/hydroponics) "aRJ" = ( @@ -21050,13 +21050,13 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/power/apc{ dir = 4; - name = "Library APC"; - pixel_x = 24 + name = "Library APC"; + pixel_x = 24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -21065,7 +21065,7 @@ "aRL" = ( /obj/machinery/door/airlock/glass_security{ name = "Holding Area"; - req_access_txt = "2" + req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -21085,25 +21085,25 @@ "aRP" = ( /obj/machinery/camera{ c_tag = "Library South"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /turf/simulated/floor/wood, /area/library) "aRQ" = ( /obj/machinery/door/morgue{ name = "Private Study"; - req_access_txt = "37" + req_access_txt = "37" }, /turf/simulated/floor/plasteel{ icon_state = "cult"; - dir = 2 + dir = 2 }, /area/library) "aRR" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -21115,12 +21115,12 @@ "aRT" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/storage/tools) @@ -21133,16 +21133,16 @@ "aRV" = ( /obj/machinery/power/apc{ dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 24 + name = "Auxiliary Tool Storage APC"; + pixel_y = 24 }, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel, /area/storage/tools) @@ -21150,8 +21150,8 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -21160,19 +21160,19 @@ /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "aRY" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "arrival" + icon_state = "arrival" }, /area/hallway/secondary/entry) "aRZ" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/secondary/entry) "aSa" = ( @@ -21181,15 +21181,15 @@ }, /obj/machinery/camera{ c_tag = "Auxiliary Tool Storage"; - dir = 2 + dir = 2 }, /turf/simulated/floor/plasteel, /area/storage/tools) "aSb" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -21200,7 +21200,7 @@ "aSd" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -21211,8 +21211,8 @@ "aSf" = ( /obj/machinery/camera{ c_tag = "Arrivals Hallway"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -21223,16 +21223,16 @@ /obj/structure/closet/wardrobe/mixed, /obj/item/device/radio/intercom{ dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 + name = "Station Intercom (General)"; + pixel_x = -27 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aSi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -21265,7 +21265,7 @@ "aSo" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -21312,7 +21312,7 @@ "aSu" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/bridge) "aSv" = ( @@ -21324,37 +21324,37 @@ "aSw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/bridge) "aSx" = ( /obj/structure/chair{ dir = 1; - name = "Engineering Station" + name = "Engineering Station" }, /turf/simulated/floor/plasteel, /area/bridge) "aSy" = ( /obj/structure/chair{ dir = 1; - name = "Command Station" + name = "Command Station" }, /obj/machinery/button/door{ id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -2; - req_access_txt = "19" + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" }, /obj/machinery/keycard_auth{ pixel_x = 29; - pixel_y = 8 + pixel_y = 8 }, /turf/simulated/floor/plasteel, /area/bridge) @@ -21364,38 +21364,38 @@ /obj/item/device/multitool, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/bridge) "aSA" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "greencorner" + icon_state = "greencorner" }, /area/bridge) "aSB" = ( /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 4 + dir = 4 }, /area/bridge) "aSC" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "greencorner" + icon_state = "greencorner" }, /area/bridge) "aSD" = ( /obj/structure/chair{ dir = 1; - name = "Crew Station" + name = "Crew Station" }, /turf/simulated/floor/plasteel, /area/bridge) @@ -21430,7 +21430,7 @@ "aSI" = ( /obj/machinery/door/airlock/glass{ name = "Kitchen"; - req_access_txt = "28" + req_access_txt = "28" }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -21450,7 +21450,7 @@ "aSK" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -21470,7 +21470,7 @@ "aSM" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -21482,12 +21482,12 @@ "aSN" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -21511,13 +21511,13 @@ "aSQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 8 + dir = 8 }, /area/hydroponics) "aSR" = ( @@ -21536,13 +21536,13 @@ "aSU" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/hydroponics) "aSV" = ( @@ -21554,7 +21554,7 @@ "aSW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/storage/tools) @@ -21569,7 +21569,7 @@ /obj/structure/table/reinforced, /obj/item/clothing/head/that{ throwforce = 1; - throwing = 1 + throwing = 1 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -21586,14 +21586,14 @@ "aTa" = ( /obj/machinery/requests_console{ department = "Bar"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 + departmentType = 2; + pixel_x = 30; + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Bar"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/structure/table, /obj/machinery/chem_dispenser/drinks, @@ -21610,16 +21610,16 @@ "aTc" = ( /obj/machinery/door/window/northright{ base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Library Desk Door"; - req_access_txt = "37" + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 + layer = 3; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/wood, /area/library) @@ -21651,7 +21651,7 @@ /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aTh" = ( @@ -21669,13 +21669,13 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aTj" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -21684,19 +21684,19 @@ "aTk" = ( /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/secondary/exit) "aTl" = ( /obj/machinery/vending/cola, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; - pixel_y = 32 + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "aTm" = ( @@ -21709,11 +21709,11 @@ }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) @@ -21735,9 +21735,9 @@ /obj/machinery/door/firedoor, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 + layer = 3; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -21752,20 +21752,20 @@ "aTu" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/port) "aTv" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -21773,7 +21773,7 @@ /obj/structure/closet/wardrobe/green, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -21798,7 +21798,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -21812,7 +21812,7 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, @@ -21821,13 +21821,13 @@ /obj/structure/closet/secure_closet/personal, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/camera{ c_tag = "Locker Room East"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/light{ dir = 4 @@ -21842,8 +21842,8 @@ "aTF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/structure/table, /obj/item/device/camera_film, @@ -21872,7 +21872,7 @@ "aTK" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/tank/internals/emergency_oxygen, /obj/item/weapon/tank/internals/emergency_oxygen, @@ -21923,14 +21923,14 @@ /obj/machinery/computer/prisoner, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/bridge) "aTS" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/bridge) "aTT" = ( @@ -21942,8 +21942,8 @@ "aTU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/bridge) @@ -21955,9 +21955,9 @@ "aTW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/bridge) @@ -21967,19 +21967,19 @@ "aTY" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/bridge) "aTZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/bridge) "aUa" = ( @@ -21992,7 +21992,7 @@ /obj/machinery/computer/teleporter, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "brown" + icon_state = "brown" }, /area/bridge) "aUc" = ( @@ -22004,26 +22004,26 @@ /obj/machinery/computer/security/mining, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "brown" + icon_state = "brown" }, /area/bridge) "aUe" = ( /obj/machinery/computer/cargo/request, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "brown" + icon_state = "brown" }, /area/bridge) "aUf" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/camera{ c_tag = "Bar West"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/chair, /turf/simulated/floor/plasteel{ @@ -22040,18 +22040,18 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/eastleft{ name = "Hydroponics Desk"; - req_access_txt = "35" + req_access_txt = "35" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/crew_quarters/kitchen) "aUi" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/hydroponics) "aUj" = ( @@ -22091,7 +22091,7 @@ /obj/structure/table, /obj/item/clothing/head/soft/grey{ pixel_x = -2; - pixel_y = 3 + pixel_y = 3 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22144,9 +22144,9 @@ "aUw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/storage/tools) @@ -22157,8 +22157,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -22166,8 +22166,8 @@ "aUy" = ( /obj/machinery/camera{ c_tag = "Vacant Office"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/wood, /area/security/vacantoffice) @@ -22175,8 +22175,8 @@ /obj/machinery/hydroponics/constructable, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -22202,7 +22202,7 @@ /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/wood, /area/library) @@ -22220,8 +22220,8 @@ "aUG" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -22234,14 +22234,14 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aUI" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aUJ" = ( @@ -22249,7 +22249,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aUK" = ( @@ -22257,21 +22257,21 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aUL" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "aUM" = ( /obj/machinery/camera{ c_tag = "Arrivals Bay 2"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -22288,7 +22288,7 @@ "aUP" = ( /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/wood, /area/security/vacantoffice) @@ -22305,16 +22305,16 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/port) "aUT" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -22322,8 +22322,8 @@ /obj/structure/closet/wardrobe/grey, /obj/machinery/requests_console{ department = "Locker Room"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -22364,44 +22364,44 @@ "aVa" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel, /area/storage/tools) "aVb" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aVc" = ( /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - name = "bridge blast door" + name = "bridge blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/bridge) "aVd" = ( /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -22409,14 +22409,14 @@ "aVe" = ( /obj/machinery/camera{ c_tag = "Bridge West"; - dir = 4 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/bridge) "aVf" = ( @@ -22425,13 +22425,13 @@ }, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/bridge) "aVg" = ( /obj/structure/chair{ dir = 1; - name = "Security Station" + name = "Security Station" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22441,22 +22441,22 @@ "aVh" = ( /obj/machinery/power/apc{ dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 + name = "Fore Primary Hallway APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/camera{ c_tag = "Fore Primary Hallway"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 1 + dir = 1 }, /area/hallway/primary/fore) "aVi" = ( @@ -22468,8 +22468,8 @@ "aVj" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22480,14 +22480,14 @@ /obj/machinery/hologram/holopad, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22497,9 +22497,9 @@ "aVl" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -22509,8 +22509,8 @@ "aVm" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22520,14 +22520,14 @@ "aVn" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22537,13 +22537,13 @@ "aVo" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22555,8 +22555,8 @@ /obj/item/device/radio/beacon, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22566,39 +22566,39 @@ "aVq" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/bridge) "aVr" = ( /obj/machinery/camera{ c_tag = "Bridge East"; - dir = 8 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/bridge) "aVs" = ( /obj/structure/chair{ dir = 1; - name = "Logistics Station" + name = "Logistics Station" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22608,39 +22608,39 @@ "aVt" = ( /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - name = "bridge blast door" + name = "bridge blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/bridge) "aVu" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aVv" = ( /obj/machinery/camera{ c_tag = "Bridge East Entrance"; - dir = 2 + dir = 2 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aVw" = ( @@ -22656,7 +22656,7 @@ /obj/structure/table, /obj/item/weapon/reagent_containers/food/condiment/saltshaker{ pixel_x = -3; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -22702,7 +22702,7 @@ /obj/structure/table, /obj/item/weapon/reagent_containers/food/condiment/saltshaker{ pixel_x = -3; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/reagent_containers/food/condiment/peppermill{ pixel_x = 3 @@ -22715,7 +22715,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/donkpockets{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/reagent_containers/glass/beaker{ pixel_x = 5 @@ -22740,7 +22740,7 @@ /obj/machinery/processor, /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -22749,7 +22749,7 @@ "aVI" = ( /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 8 + dir = 8 }, /area/hydroponics) "aVJ" = ( @@ -22770,13 +22770,13 @@ "aVL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ dir = 2; - icon_state = "pipe-j2s"; - sortType = 16 + icon_state = "pipe-j2s"; + sortType = 16 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -22829,7 +22829,7 @@ /obj/item/weapon/pen/red, /obj/item/weapon/pen/blue{ pixel_x = 5; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/wood, /area/library) @@ -22843,7 +22843,7 @@ /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /turf/simulated/floor/wood, /area/library) @@ -22852,14 +22852,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "chapel" + icon_state = "chapel" }, /area/chapel/main) "aVV" = ( /obj/machinery/camera{ c_tag = "Chapel South"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -22871,7 +22871,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "aVX" = ( @@ -22906,10 +22906,10 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -22917,7 +22917,7 @@ "aWb" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22927,17 +22927,17 @@ "aWc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) "aWd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/library) @@ -22974,7 +22974,7 @@ /obj/structure/grille, /obj/structure/window{ icon_state = "window"; - dir = 8 + dir = 8 }, /obj/structure/window, /turf/simulated/floor/plating, @@ -22983,9 +22983,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -22993,18 +22993,18 @@ /obj/structure/grille, /obj/structure/window{ icon_state = "window"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/port) "aWm" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/light_switch{ pixel_x = -28; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/wood, /area/security/vacantoffice) @@ -23016,7 +23016,7 @@ "aWo" = ( /obj/machinery/camera{ c_tag = "Locker Room West"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -23039,16 +23039,16 @@ "aWr" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/security/vacantoffice) "aWs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/security/vacantoffice) @@ -23073,13 +23073,13 @@ "aWw" = ( /obj/machinery/power/apc{ dir = 1; - name = "Art Storage"; - pixel_x = 0; - pixel_y = 24 + name = "Art Storage"; + pixel_x = 0; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -23089,13 +23089,13 @@ "aWx" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -23107,20 +23107,20 @@ "aWz" = ( /obj/machinery/power/apc{ dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 + name = "Port Emergency Storage APC"; + pixel_y = 24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/storage/emergency2) "aWA" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -23150,7 +23150,7 @@ "aWG" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/machinery/light, /obj/item/device/multitool, @@ -23160,47 +23160,47 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "aWI" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - name = "bridge blast door" + name = "bridge blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/bridge) "aWJ" = ( /obj/structure/cable, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/airlock/glass_command{ name = "Bridge"; - req_access_txt = "19" + req_access_txt = "19" }, /turf/simulated/floor/plasteel, /area/bridge) "aWK" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -23208,12 +23208,12 @@ "aWL" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/glass_command{ name = "Bridge"; - req_access_txt = "19" + req_access_txt = "19" }, /turf/simulated/floor/plasteel, /area/bridge) @@ -23226,8 +23226,8 @@ "aWN" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -23237,19 +23237,19 @@ "aWO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /obj/machinery/light, /obj/machinery/light_switch{ pixel_x = -6; - pixel_y = -22 + pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWP" = ( @@ -23263,15 +23263,15 @@ "aWQ" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWR" = ( @@ -23283,30 +23283,30 @@ }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWS" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWT" = ( /obj/machinery/requests_console{ announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23314,7 +23314,7 @@ }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWU" = ( @@ -23323,40 +23323,40 @@ }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWV" = ( /obj/machinery/turretid{ control_area = "AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_y = -25 + name = "AI Upload turret control"; + pixel_y = -25 }, /obj/machinery/camera{ c_tag = "Bridge Center"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWW" = ( /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; - name = "Bridge APC"; - pixel_y = -24 + dir = 2; + name = "Bridge APC"; + pixel_y = -24 }, /obj/structure/cable, /obj/machinery/light, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWX" = ( @@ -23368,7 +23368,7 @@ }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aWY" = ( @@ -23377,14 +23377,14 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/bridge) "aWZ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -23395,18 +23395,18 @@ "aXa" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -23416,8 +23416,8 @@ "aXb" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -23425,22 +23425,22 @@ }, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - name = "bridge blast door" + name = "bridge blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/bridge) "aXc" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/glass_command{ name = "Bridge"; - req_access_txt = "19" + req_access_txt = "19" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -23450,8 +23450,8 @@ "aXd" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -23459,26 +23459,26 @@ }, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "aXe" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/door/airlock/glass_command{ name = "Bridge"; - req_access_txt = "19" + req_access_txt = "19" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -23494,8 +23494,8 @@ "aXg" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -23505,14 +23505,14 @@ "aXh" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "aXi" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -31 @@ -23545,8 +23545,8 @@ "aXl" = ( /obj/machinery/door/window/southright{ name = "Bar Door"; - req_access_txt = "0"; - req_one_access_txt = "25;28" + req_access_txt = "0"; + req_one_access_txt = "25;28" }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -23565,9 +23565,9 @@ /obj/machinery/reagentgrinder, /obj/machinery/requests_console{ department = "Kitchen"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 + departmentType = 2; + pixel_x = 30; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -23576,13 +23576,13 @@ "aXo" = ( /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/hydroponics) "aXp" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms"; - req_access_txt = "0" + req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -23611,7 +23611,7 @@ "aXt" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/crew_quarters/locker) "aXu" = ( @@ -23623,14 +23623,14 @@ "aXv" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "aXw" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/crew_quarters/locker) "aXx" = ( @@ -23659,7 +23659,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/crew_quarters/locker) "aXB" = ( @@ -23680,7 +23680,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "aXE" = ( @@ -23689,8 +23689,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plating, @@ -23699,25 +23699,25 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/crew_quarters/fitness) "aXG" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "aXH" = ( /obj/structure/table, /obj/machinery/button/door{ id = "syndieshutters"; - name = "remote shutter control"; - req_access_txt = "150" + name = "remote shutter control"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -23726,8 +23726,8 @@ "aXI" = ( /obj/machinery/door/airlock/external{ id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" + name = "Port Docking Bay 2"; + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) @@ -23737,9 +23737,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -23778,9 +23778,9 @@ "aXO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -23800,8 +23800,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -23828,7 +23828,7 @@ "aXU" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/library) @@ -23845,7 +23845,7 @@ "aXX" = ( /obj/machinery/door/airlock/engineering{ name = "Vacant Office"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -23869,13 +23869,13 @@ "aYa" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; - name = "Locker Room Maintenance APC"; - pixel_x = -27; - pixel_y = 2 + name = "Locker Room Maintenance APC"; + pixel_x = -27; + pixel_y = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -23883,9 +23883,9 @@ "aYb" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -23898,22 +23898,22 @@ "aYc" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -23967,7 +23967,7 @@ "aYj" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/wall, /area/storage/tools) @@ -23975,7 +23975,7 @@ /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aYl" = ( @@ -23987,28 +23987,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 6 + dir = 6 }, /area/hallway/primary/central) "aYn" = ( /obj/machinery/camera{ c_tag = "Bridge West Entrance"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aYo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - name = "bridge blast door" + name = "bridge blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/bridge) "aYp" = ( @@ -24022,29 +24022,29 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aYr" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aYs" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aYt" = ( @@ -24056,17 +24056,17 @@ "aYu" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 6 + dir = 6 }, /area/bridge) "aYv" = ( @@ -24078,15 +24078,15 @@ "aYw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ icon_state = "door_closed"; - locked = 0; - name = "AI Upload Access"; - req_access_txt = "16" + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -24126,52 +24126,52 @@ "aYC" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 10 + dir = 10 }, /area/bridge) "aYD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/bridge) "aYE" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 10 + dir = 10 }, /area/hallway/primary/central) "aYF" = ( /obj/machinery/power/apc{ dir = 2; - name = "Central Hall APC"; - pixel_y = -24 + name = "Central Hall APC"; + pixel_y = -24 }, /obj/structure/cable, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "aYG" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aYH" = ( @@ -24179,7 +24179,7 @@ /obj/item/weapon/razor, /obj/structure/window{ icon_state = "window"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -24206,7 +24206,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Kitchen"; - req_access_txt = "28" + req_access_txt = "28" }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24221,14 +24221,14 @@ "aYM" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/button/door{ id = "kitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "28" + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "28" }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -24255,7 +24255,7 @@ /obj/machinery/hydroponics/constructable, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "green" + icon_state = "green" }, /area/hydroponics) "aYR" = ( @@ -24269,15 +24269,15 @@ /obj/structure/closet, /obj/item/clothing/under/suit_jacket/female{ pixel_x = 3; - pixel_y = 1 + pixel_y = 1 }, /obj/item/clothing/under/suit_jacket/really_black{ pixel_x = -2; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/window{ icon_state = "window"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -24287,8 +24287,8 @@ /obj/structure/reagent_dispensers/watertank, /obj/machinery/camera{ c_tag = "Hydroponics South"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/hydroponics) @@ -24309,7 +24309,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/crew_quarters/locker) "aYY" = ( @@ -24325,7 +24325,7 @@ "aZa" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" + req_access_txt = "31" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -24333,7 +24333,7 @@ "aZb" = ( /obj/machinery/camera{ c_tag = "Bar South"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24343,8 +24343,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -24352,7 +24352,7 @@ "aZd" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/wood, /area/library) @@ -24395,7 +24395,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "aZk" = ( @@ -24412,12 +24412,12 @@ "aZm" = ( /obj/machinery/camera{ c_tag = "Escape Arm Airlocks"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "aZn" = ( @@ -24429,15 +24429,15 @@ "aZo" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -24446,7 +24446,7 @@ "aZp" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/stack/sheet/cardboard, /obj/item/stack/rods{ @@ -24460,9 +24460,9 @@ "aZq" = ( /obj/machinery/button/door{ id = "heads_meeting"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = 24 + name = "Security Shutters"; + pixel_x = 0; + pixel_y = 24 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -24519,13 +24519,13 @@ "aZy" = ( /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 + layer = 3; + pixel_x = 0; + pixel_y = 32 }, /obj/machinery/camera{ c_tag = "Conference Room"; - dir = 2 + dir = 2 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -24568,8 +24568,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -24580,9 +24580,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24593,14 +24593,14 @@ "aZH" = ( /obj/machinery/conveyor{ dir = 4; - id = "packageSort2" + id = "packageSort2" }, /turf/simulated/floor/plating, /area/quartermaster/office) "aZI" = ( /obj/machinery/conveyor{ dir = 4; - id = "packageSort2" + id = "packageSort2" }, /obj/machinery/light{ dir = 8 @@ -24610,7 +24610,7 @@ "aZJ" = ( /obj/machinery/conveyor{ dir = 4; - id = "packageSort2" + id = "packageSort2" }, /obj/structure/plasticflaps{ opacity = 0 @@ -24648,13 +24648,13 @@ "aZQ" = ( /obj/machinery/door/airlock/command{ name = "Conference Room"; - req_access = null; - req_access_txt = "19" + req_access = null; + req_access_txt = "19" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/wood, @@ -24673,8 +24673,8 @@ "aZT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -24698,13 +24698,13 @@ "aZX" = ( /obj/machinery/door/airlock/command{ name = "Captain's Office"; - req_access = null; - req_access_txt = "20" + req_access = null; + req_access_txt = "20" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24715,13 +24715,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "aZZ" = ( /obj/machinery/vending/cigarette{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24737,7 +24737,7 @@ /obj/machinery/light, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24768,12 +24768,12 @@ "baf" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -24783,8 +24783,8 @@ "bag" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24793,7 +24793,7 @@ "bah" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; - pixel_y = -30 + pixel_y = -30 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24811,7 +24811,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchen"; - name = "kitchen shutters" + name = "kitchen shutters" }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -24822,7 +24822,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchen"; - name = "kitchen shutters" + name = "kitchen shutters" }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -24831,13 +24831,13 @@ "bal" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/hydroponics) @@ -24851,24 +24851,24 @@ /obj/machinery/door/firedoor, /obj/machinery/door/window/northleft{ name = "Hydroponics Desk"; - req_access_txt = "35" + req_access_txt = "35" }, /turf/simulated/floor/plasteel, /area/hydroponics) "bao" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 0; - pixel_y = 32 + pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) @@ -24877,8 +24877,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/window/westright{ dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" + name = "Hydroponics Desk"; + req_access_txt = "35" }, /turf/simulated/floor/plasteel, /area/hydroponics) @@ -24888,9 +24888,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24918,26 +24918,26 @@ }, /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/wood, /area/library) "bav" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/wood, /area/library) "baw" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /obj/structure/mirror{ pixel_x = 28 @@ -24962,9 +24962,9 @@ "baz" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -24978,9 +24978,9 @@ "baB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -24989,32 +24989,32 @@ "baC" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "baD" = ( /obj/machinery/power/apc{ dir = 8; - name = "Escape Hallway APC"; - pixel_x = -25 + name = "Escape Hallway APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "baE" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -25023,17 +25023,17 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "baG" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/light{ icon_state = "tube1"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -25045,14 +25045,14 @@ "baI" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) "baJ" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/wood, /area/security/vacantoffice) @@ -25073,19 +25073,19 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/power/apc{ dir = 4; - name = "Locker Restrooms APC"; - pixel_x = 27; - pixel_y = 2 + name = "Locker Restrooms APC"; + pixel_x = 27; + pixel_y = 2 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/crew_quarters/locker/locker_toilet) @@ -25126,8 +25126,8 @@ "baT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -25139,7 +25139,7 @@ "baU" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/electronics/apc, /obj/item/weapon/stock_parts/cell{ @@ -25153,13 +25153,13 @@ /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/office) "baW" = ( /obj/machinery/conveyor{ dir = 1; - id = "packageSort1" + id = "packageSort1" }, /turf/simulated/floor/plating, /area/quartermaster/office) @@ -25169,20 +25169,20 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/office) "baY" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/office) "baZ" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; - pixel_y = 32 + pixel_x = 0; + pixel_y = 32 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel, @@ -25190,18 +25190,18 @@ "bba" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) "bbb" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/secondary/entry) "bbc" = ( @@ -25244,7 +25244,7 @@ }, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -25259,12 +25259,12 @@ "bbi" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/wood, @@ -25274,7 +25274,7 @@ /obj/item/weapon/aiModule/reset, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25317,13 +25317,13 @@ "bbq" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -25332,8 +25332,8 @@ "bbr" = ( /obj/machinery/camera{ c_tag = "Locker Room South"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -25346,7 +25346,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/crew_quarters/locker) "bbt" = ( @@ -25359,30 +25359,30 @@ "bbu" = ( /obj/machinery/power/apc{ cell_type = 2500; - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bbv" = ( /obj/machinery/status_display{ pixel_x = 0; - pixel_y = 32 + pixel_y = 32 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) @@ -25403,25 +25403,25 @@ "bbz" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/primary/starboard) "bbA" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 2"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/primary/starboard) "bbB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ name = "Hydroponics"; - req_access_txt = "35" + req_access_txt = "35" }, /turf/simulated/floor/plasteel, /area/hydroponics) @@ -25449,18 +25449,18 @@ "bbG" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "bbH" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -25468,13 +25468,13 @@ "bbI" = ( /obj/machinery/power/apc{ dir = 8; - name = "Vacant Office APC"; - pixel_x = -24; - pixel_y = 0 + name = "Vacant Office APC"; + pixel_x = -24; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/security/vacantoffice) @@ -25482,22 +25482,22 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/port) "bbK" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -25537,7 +25537,7 @@ "bbQ" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/office) "bbR" = ( @@ -25549,12 +25549,12 @@ /obj/item/stack/wrapping_paper, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 + departmentType = 2; + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 1 + dir = 1 }, /area/quartermaster/office) "bbT" = ( @@ -25564,13 +25564,13 @@ /obj/item/weapon/storage/box, /obj/item/device/radio/intercom{ broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 1 + dir = 1 }, /area/quartermaster/office) "bbU" = ( @@ -25585,13 +25585,13 @@ /obj/item/stack/packageWrap, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 5 + dir = 5 }, /area/quartermaster/office) "bbV" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -25599,8 +25599,8 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" + layer = 2.9; + name = "privacy shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -25625,7 +25625,7 @@ "bcb" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -25640,8 +25640,8 @@ "bcd" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25661,8 +25661,8 @@ /obj/machinery/hologram/holopad, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25688,21 +25688,21 @@ "bci" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) "bcj" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-j1" + icon_state = "pipe-j1" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -25728,8 +25728,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) @@ -25740,22 +25740,22 @@ "bco" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" + location = "HOP2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bcp" = ( /obj/structure/sign/directions/evac{ dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 28 + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 28 }, /obj/structure/sign/directions/security{ dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 36 + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 36 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -25766,22 +25766,22 @@ "bcr" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) "bcs" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) "bct" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -25797,7 +25797,7 @@ "bcv" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -25808,8 +25808,8 @@ "bcx" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 5"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -25817,7 +25817,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/secondary/exit) "bcz" = ( @@ -25830,8 +25830,8 @@ "bcA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -25841,21 +25841,21 @@ "bcB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "bcC" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -25866,7 +25866,7 @@ "bcE" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -25892,14 +25892,14 @@ "bcH" = ( /obj/machinery/camera{ c_tag = "Cargo Bay Storage"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -25912,7 +25912,7 @@ "bcJ" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/quartermaster/office) "bcK" = ( @@ -25925,20 +25925,20 @@ "bcL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/port) "bcM" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -25951,9 +25951,9 @@ "bcO" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -25962,9 +25962,9 @@ "bcP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) @@ -25994,7 +25994,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/office) "bcU" = ( @@ -26007,24 +26007,24 @@ /obj/structure/table, /obj/item/device/destTagger{ pixel_x = 4; - pixel_y = 3 + pixel_y = 3 }, /obj/item/device/destTagger{ pixel_x = 4; - pixel_y = 3 + pixel_y = 3 }, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 4 + dir = 4 }, /area/quartermaster/office) "bcW" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -26033,8 +26033,8 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" + layer = 2.9; + name = "privacy shutters" }, /turf/simulated/floor/plating, /area/bridge/meeting_room) @@ -26048,9 +26048,9 @@ /obj/structure/table/wood, /obj/item/device/radio/intercom{ dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 0 + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 0 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) @@ -26064,18 +26064,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/hallway/primary/starboard) "bdc" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; - pixel_y = -30 + pixel_y = -30 }, /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/primary/starboard) "bdd" = ( @@ -26085,8 +26085,8 @@ "bde" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -26097,8 +26097,8 @@ "bdf" = ( /obj/machinery/airalarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23; + pixel_y = 0 }, /obj/machinery/porta_turret/ai{ dir = 4 @@ -26110,15 +26110,15 @@ "bdg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "bdh" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/ai_upload) "bdi" = ( @@ -26139,13 +26139,13 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -26153,9 +26153,9 @@ "bdm" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -26163,26 +26163,26 @@ "bdn" = ( /obj/machinery/camera{ c_tag = "Central Hallway East"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/disposalpipe/segment, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 + layer = 3; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "bdo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -26195,7 +26195,7 @@ "bdq" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -26208,7 +26208,7 @@ "bds" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 4"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -26218,8 +26218,8 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -26229,7 +26229,7 @@ "bdu" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -26239,7 +26239,7 @@ "bdv" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" + location = "Stbd" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -26269,12 +26269,12 @@ "bdz" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -26291,9 +26291,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -26303,19 +26303,19 @@ "bdC" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/sortjunction{ dir = 1; - icon_state = "pipe-j2s"; - sortType = 1 + icon_state = "pipe-j2s"; + sortType = 1 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -26328,9 +26328,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26349,9 +26349,9 @@ "bdF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) @@ -26401,7 +26401,7 @@ "bdN" = ( /obj/machinery/door/airlock/medical{ name = "Morgue"; - req_access_txt = "6" + req_access_txt = "6" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -26415,8 +26415,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -26434,8 +26434,8 @@ "bdR" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -26445,25 +26445,25 @@ "bdS" = ( /obj/machinery/camera{ c_tag = "Cargo Delivery Office"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bdT" = ( /obj/machinery/power/apc{ dir = 8; - name = "Disposal APC"; - pixel_x = -24; - pixel_y = 0 + name = "Disposal APC"; + pixel_x = -24; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -26473,7 +26473,7 @@ "bdU" = ( /obj/machinery/conveyor{ dir = 4; - id = "packageExternal" + id = "packageExternal" }, /obj/structure/plasticflaps{ opacity = 1 @@ -26485,7 +26485,7 @@ "bdV" = ( /obj/machinery/conveyor{ dir = 4; - id = "packageExternal" + id = "packageExternal" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -26494,7 +26494,7 @@ "bdW" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/central) "bdX" = ( @@ -26505,7 +26505,7 @@ "bdY" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /obj/structure/table/wood, @@ -26514,9 +26514,9 @@ "bdZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -26535,10 +26535,10 @@ /obj/item/weapon/aiModule/core/freeformcore, /obj/machinery/door/window{ base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" }, /obj/structure/window/reinforced, /obj/item/weapon/aiModule/core/full/corp, @@ -26559,8 +26559,8 @@ /obj/machinery/light, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -26569,9 +26569,9 @@ "bed" = ( /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; - name = "Upload APC"; - pixel_y = -24 + dir = 2; + name = "Upload APC"; + pixel_y = -24 }, /obj/structure/cable, /turf/simulated/floor/bluegrid, @@ -26580,8 +26580,8 @@ /obj/machinery/computer/upload/ai, /obj/machinery/flasher{ id = "AI"; - pixel_x = 0; - pixel_y = -21 + pixel_x = 0; + pixel_y = -21 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) @@ -26589,10 +26589,10 @@ /obj/machinery/computer/upload/borg, /obj/item/device/radio/intercom{ broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) @@ -26602,10 +26602,10 @@ /obj/item/weapon/aiModule/zeroth/oneHuman, /obj/machinery/door/window{ base_state = "left"; - dir = 8; - icon_state = "left"; - name = "High-Risk Modules"; - req_access_txt = "20" + dir = 8; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" }, /obj/item/weapon/aiModule/reset/purge, /obj/structure/window/reinforced, @@ -26633,7 +26633,7 @@ "bei" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -26655,8 +26655,8 @@ "bem" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) @@ -26664,7 +26664,7 @@ /obj/structure/table/wood, /obj/machinery/camera{ c_tag = "Captain's Office"; - dir = 8 + dir = 8 }, /obj/item/weapon/storage/lockbox/medal{ pixel_y = 0 @@ -26674,7 +26674,7 @@ "beo" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" + location = "HOP" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -26685,32 +26685,32 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "beq" = ( /obj/structure/sign/directions/medical{ dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = -24 + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24 }, /obj/structure/sign/directions/science{ dir = 4; - icon_state = "direction_sci"; - pixel_x = 32; - pixel_y = -32 + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = -32 }, /obj/structure/sign/directions/engineering{ pixel_x = 32; - pixel_y = -40 + pixel_y = -40 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "ber" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; - pixel_y = -30 + pixel_y = -30 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -26723,37 +26723,37 @@ "bet" = ( /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/starboard) "beu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/starboard) "bev" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/starboard) "bew" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -26764,10 +26764,10 @@ "bex" = ( /obj/machinery/button/door{ id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -26779,14 +26779,14 @@ "bey" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/primary/starboard) "bez" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -26801,21 +26801,21 @@ "beB" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 3"; - dir = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) "beC" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard) @@ -26841,7 +26841,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/secondary/exit) "beH" = ( @@ -26851,43 +26851,43 @@ /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "beI" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "beJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/hallway/secondary/exit) "beK" = ( /obj/machinery/door/airlock/external{ name = "Port Docking Bay 4"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) "beL" = ( /obj/machinery/door/airlock/external{ name = "Port Docking Bay 3"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) @@ -26902,7 +26902,7 @@ "beN" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /obj/structure/chair{ dir = 1 @@ -26917,7 +26917,7 @@ "beP" = ( /obj/machinery/conveyor{ dir = 8; - id = "garbage" + id = "garbage" }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -26930,25 +26930,25 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/maintenance/disposal) "beR" = ( /obj/machinery/conveyor{ dir = 8; - id = "garbage" + id = "garbage" }, /obj/machinery/recycler, /obj/structure/sign/securearea{ name = "\improper STAY CLEAR HEAVY MACHINERY"; - pixel_y = 32 + pixel_y = 32 }, /turf/simulated/floor/plating, /area/maintenance/disposal) "beS" = ( /obj/machinery/conveyor{ dir = 8; - id = "garbage" + id = "garbage" }, /obj/machinery/light/small{ dir = 1 @@ -26962,8 +26962,8 @@ "beU" = ( /obj/machinery/conveyor{ dir = 9; - id = "garbage"; - verted = -1 + id = "garbage"; + verted = -1 }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -26972,7 +26972,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/window/westleft{ name = "Delivery Desk"; - req_access_txt = "50" + req_access_txt = "50" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -26993,20 +26993,20 @@ }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 4 + dir = 4 }, /area/quartermaster/office) "beX" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "beY" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -27015,7 +27015,7 @@ "beZ" = ( /obj/machinery/mineral/stacking_unit_console{ dir = 2; - machinedir = 8 + machinedir = 8 }, /turf/simulated/wall, /area/maintenance/disposal) @@ -27027,28 +27027,28 @@ "bfb" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/chapel/main) "bfc" = ( /obj/machinery/power/apc{ dir = 1; - name = "Locker Room APC"; - pixel_x = 0; - pixel_y = 24 + name = "Locker Room APC"; + pixel_x = 0; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -27103,12 +27103,12 @@ "bfk" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bfl" = ( @@ -27123,26 +27123,26 @@ "bfn" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; - id = "packageExternal" + id = "packageExternal" }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 4 + dir = 4 }, /area/quartermaster/office) "bfo" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "bfp" = ( /obj/machinery/requests_console{ announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 }, /obj/machinery/light, /turf/simulated/floor/wood, @@ -27150,7 +27150,7 @@ "bfq" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -27158,8 +27158,8 @@ "bfr" = ( /obj/structure/noticeboard{ dir = 8; - pixel_x = 27; - pixel_y = 0 + pixel_x = 27; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -27185,7 +27185,7 @@ "bfw" = ( /obj/machinery/status_display{ density = 0; - layer = 4 + layer = 4 }, /turf/simulated/wall/r_wall, /area/turret_protected/ai_upload) @@ -27199,7 +27199,7 @@ /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/wood, @@ -27231,8 +27231,8 @@ "bfD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -27242,11 +27242,11 @@ /obj/item/weapon/disk/nuclear, /obj/item/weapon/storage/secure/safe{ pixel_x = 35; - pixel_y = 5 + pixel_y = 5 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -27283,8 +27283,8 @@ "bfM" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27296,7 +27296,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bfO" = ( @@ -27306,8 +27306,8 @@ "bfP" = ( /obj/machinery/power/apc{ dir = 2; - name = "Starboard Primary Hallway APC"; - pixel_y = -24 + name = "Starboard Primary Hallway APC"; + pixel_y = -24 }, /obj/structure/cable, /turf/simulated/floor/plasteel, @@ -27324,19 +27324,19 @@ /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/folder/yellow, /obj/item/weapon/pen{ pixel_x = 4; - pixel_y = 4 + pixel_y = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 4 + dir = 4 }, /area/quartermaster/office) "bfS" = ( @@ -27348,7 +27348,7 @@ "bfU" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/hallway/primary/starboard) "bfV" = ( @@ -27357,46 +27357,46 @@ "bfW" = ( /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "purple" + icon_state = "purple" }, /area/hallway/primary/starboard) "bfX" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "purple" + icon_state = "purple" }, /area/hallway/primary/starboard) "bfY" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "purple" + icon_state = "purple" }, /area/hallway/primary/starboard) "bfZ" = ( /obj/structure/sign/securearea{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "purple" + icon_state = "purple" }, /area/hallway/primary/starboard) "bga" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "purple" + icon_state = "purple" }, /area/hallway/primary/starboard) "bgb" = ( /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "purple" + icon_state = "purple" }, /area/hallway/primary/starboard) "bgc" = ( @@ -27405,33 +27405,33 @@ "bgd" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "bge" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "escape" + icon_state = "escape" }, /area/hallway/secondary/exit) "bgf" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/exit) "bgg" = ( @@ -27444,13 +27444,13 @@ /obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/secondary/entry) "bgi" = ( /obj/machinery/camera{ c_tag = "Arrivals Bay 3 & 4"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "warning" @@ -27459,22 +27459,22 @@ "bgj" = ( /obj/machinery/conveyor{ dir = 4; - id = "garbage" + id = "garbage" }, /turf/simulated/floor/plating, /area/maintenance/disposal) "bgk" = ( /obj/machinery/conveyor{ dir = 5; - id = "garbage" + id = "garbage" }, /turf/simulated/floor/plating, /area/maintenance/disposal) "bgl" = ( /obj/machinery/conveyor{ dir = 10; - id = "garbage"; - verted = -1 + id = "garbage"; + verted = -1 }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -27490,25 +27490,25 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "bgo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/power/apc{ dir = 4; - name = "Mech Bay APC"; - pixel_x = 26; - pixel_y = 0 + name = "Mech Bay APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -27526,8 +27526,8 @@ "bgq" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -27549,8 +27549,8 @@ "bgs" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -27563,10 +27563,10 @@ "bgu" = ( /obj/machinery/button/door{ id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = 24; - req_access_txt = "31" + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24; + req_access_txt = "31" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -27578,8 +27578,8 @@ "bgw" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -27590,8 +27590,8 @@ "bgx" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -27604,22 +27604,22 @@ "bgy" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/power/apc{ dir = 2; - name = "Cargo Bay APC"; - pixel_x = 1; - pixel_y = -24 + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -27640,30 +27640,30 @@ "bgB" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/wall, /area/quartermaster/storage) "bgC" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/wall, /area/quartermaster/office) "bgD" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bgE" = ( @@ -27673,7 +27673,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bgF" = ( @@ -27681,7 +27681,7 @@ /obj/machinery/reagentgrinder, /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -27690,7 +27690,7 @@ "bgG" = ( /obj/machinery/camera{ c_tag = "Central Hallway West"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -27699,8 +27699,8 @@ "bgH" = ( /obj/machinery/door/window/eastright{ dir = 1; - name = "Bridge Delivery"; - req_access_txt = "19" + name = "Bridge Delivery"; + req_access_txt = "19" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -27721,7 +27721,7 @@ "bgL" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -27744,7 +27744,7 @@ "bgP" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -27753,12 +27753,12 @@ "bgQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bgR" = ( @@ -27770,11 +27770,11 @@ "bgS" = ( /obj/machinery/requests_console{ announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -30; - pixel_y = 0 + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 }, /obj/structure/filingcabinet, /turf/simulated/floor/wood, @@ -27803,8 +27803,8 @@ "bgW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, @@ -27813,8 +27813,8 @@ /obj/structure/table/wood, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/item/device/camera, /obj/item/weapon/storage/photo_album{ @@ -27825,19 +27825,19 @@ "bgY" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bgZ" = ( /obj/machinery/power/apc{ dir = 1; - name = "Chemistry APC"; - pixel_y = 24 + name = "Chemistry APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /mob/living/simple_animal/bot/cleanbot{ name = "C.L.E.A.N." @@ -27856,18 +27856,18 @@ /obj/machinery/chem_dispenser, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/chemistry) "bhc" = ( /obj/machinery/camera{ c_tag = "Chemistry"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/chem_heater, /turf/simulated/floor/plasteel{ @@ -27878,7 +27878,7 @@ /obj/machinery/chem_master, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/chemistry) "bhe" = ( @@ -27891,7 +27891,7 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -27900,7 +27900,7 @@ "bhg" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bhh" = ( @@ -27916,50 +27916,50 @@ "bhj" = ( /obj/machinery/camera{ c_tag = "Security Post - Medbay"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_y = 30 + departmentType = 5; + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/medical) "bhk" = ( /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26; - req_access_txt = "5" + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26; + req_access_txt = "5" }, /obj/item/weapon/book/manual/wiki/security_space_law, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/checkpoint/medical) "bhl" = ( /obj/structure/filingcabinet, /obj/machinery/newscaster{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/checkpoint/medical) "bhm" = ( @@ -27987,12 +27987,12 @@ "bhp" = ( /obj/machinery/power/apc{ dir = 1; - name = "Morgue APC"; - pixel_y = 24 + name = "Morgue APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -28009,15 +28009,15 @@ "bhr" = ( /obj/machinery/door/airlock{ name = "Starboard Emergency Storage"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/storage/emergency) "bhs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/security/checkpoint/medical) @@ -28025,8 +28025,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Mech Bay"; - req_access_txt = "29"; - req_one_access_txt = "0" + req_access_txt = "29"; + req_one_access_txt = "0" }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) @@ -28034,7 +28034,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "Skynet_launch"; - name = "mech bay" + name = "mech bay" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -28059,15 +28059,15 @@ /obj/structure/table, /obj/item/weapon/book/manual/robotics_cyborgs{ pixel_x = 2; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/storage/belt/utility, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/machinery/requests_console{ department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 }, /obj/machinery/light{ dir = 1 @@ -28080,7 +28080,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/shutters/preopen{ id = "robotics"; - name = "robotics lab shutters" + name = "robotics lab shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -28089,19 +28089,19 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" + dir = 2; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" }, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /obj/machinery/door/poddoor/shutters/preopen{ id = "robotics"; - name = "robotics lab shutters" + name = "robotics lab shutters" }, /turf/simulated/floor/plating, /area/assembly/robotics) @@ -28113,7 +28113,7 @@ "bhB" = ( /obj/machinery/door/airlock/research{ name = "Research Division Access"; - req_access_txt = "47" + req_access_txt = "47" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28125,7 +28125,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/shutters/preopen{ id = "rnd"; - name = "research lab shutters" + name = "research lab shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -28134,11 +28134,11 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/southright{ name = "Research and Development Desk"; - req_access_txt = "7" + req_access_txt = "7" }, /obj/machinery/door/poddoor/shutters/preopen{ id = "rnd"; - name = "research lab shutters" + name = "research lab shutters" }, /turf/simulated/floor/plating, /area/toxins/lab) @@ -28146,8 +28146,8 @@ /obj/structure/table, /obj/item/stack/sheet/glass{ amount = 50; - pixel_x = 3; - pixel_y = 3 + pixel_x = 3; + pixel_y = 3 }, /obj/item/stack/sheet/metal{ amount = 50 @@ -28161,11 +28161,11 @@ /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = 2; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/machinery/light{ dir = 1 @@ -28184,8 +28184,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28194,7 +28194,7 @@ "bhI" = ( /obj/machinery/conveyor{ dir = 1; - id = "garbage" + id = "garbage" }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -28214,21 +28214,21 @@ }, /obj/machinery/door/window{ base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 + dir = 4; + icon_state = "right"; + layer = 3 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/maintenance/disposal) "bhK" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -28238,20 +28238,20 @@ "bhL" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 1; - stack_amt = 10 + stack_amt = 10 }, /turf/simulated/floor/plating, /area/maintenance/disposal) "bhM" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -28261,7 +28261,7 @@ "bhN" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -28271,9 +28271,9 @@ "bhO" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28284,8 +28284,8 @@ "bhP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28304,7 +28304,7 @@ }, /obj/structure/window{ icon_state = "window"; - dir = 1 + dir = 1 }, /obj/structure/window, /turf/simulated/floor/plating, @@ -28316,7 +28316,7 @@ }, /obj/structure/window{ icon_state = "window"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -28339,7 +28339,7 @@ "bhV" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28348,12 +28348,12 @@ "bhW" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; - name = "warehouse shutters" + name = "warehouse shutters" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/quartermaster/storage) "bhX" = ( @@ -28369,7 +28369,7 @@ "bhZ" = ( /obj/machinery/door/window/eastleft{ name = "Mail"; - req_access_txt = "50" + req_access_txt = "50" }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -28402,9 +28402,9 @@ }, /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28420,7 +28420,7 @@ "bid" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -28429,9 +28429,9 @@ "bie" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" + dir = 1; + freq = 1400; + location = "Bridge" }, /obj/structure/plasticflaps{ opacity = 1 @@ -28447,19 +28447,19 @@ "big" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/engine/gravity_generator) "bih" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/engine/gravity_generator) "bii" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/engine/gravity_generator) "bij" = ( @@ -28469,9 +28469,9 @@ "bik" = ( /obj/item/device/radio/intercom{ dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = -28 + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = -28 }, /obj/machinery/suit_storage_unit/captain, /turf/simulated/floor/wood, @@ -28491,8 +28491,8 @@ "bin" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28509,13 +28509,13 @@ }, /obj/machinery/requests_console{ department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 + departmentType = 2; + pixel_x = -30; + pixel_y = 0 }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28536,8 +28536,8 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ dir = 8; - name = "Chemistry Desk"; - req_access_txt = "33" + name = "Chemistry Desk"; + req_access_txt = "33" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, @@ -28551,7 +28551,7 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/chemistry) "bit" = ( @@ -28574,7 +28574,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/quartermaster/office) "biw" = ( @@ -28587,7 +28587,7 @@ /obj/effect/landmark/start/depsec/medical, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/medical) "biy" = ( @@ -28597,7 +28597,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/medical) "biz" = ( @@ -28620,8 +28620,8 @@ "biB" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -28644,8 +28644,8 @@ "biF" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; - icon_state = "pipe-j2s"; - sortType = 2 + icon_state = "pipe-j2s"; + sortType = 2 }, /obj/structure/noticeboard{ pixel_y = 32 @@ -28661,21 +28661,21 @@ }, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "biH" = ( /obj/machinery/button/door{ dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 6; - pixel_y = 24 + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/assembly/chargebay) "biI" = ( @@ -28684,18 +28684,18 @@ "biJ" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/assembly/chargebay) "biK" = ( /obj/machinery/power/apc{ dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 + name = "Robotics Lab APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -28720,47 +28720,47 @@ "biN" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitered" + icon_state = "whitered" }, /area/assembly/robotics) "biO" = ( /obj/machinery/camera{ c_tag = "Robotics Lab"; - dir = 2; - network = list("SS13","RD") + dir = 2; + network = list("SS13","RD") }, /obj/machinery/button/door{ dir = 2; - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = 6; - pixel_y = 24; - req_access_txt = "29" + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteredcorner" + icon_state = "whiteredcorner" }, /area/assembly/robotics) "biP" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitered" + icon_state = "whitered" }, /area/assembly/robotics) "biQ" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitered" + icon_state = "whitered" }, /area/assembly/robotics) "biR" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -28768,18 +28768,18 @@ "biS" = ( /obj/machinery/camera{ c_tag = "Research Division Access"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 5 + dir = 5 }, /area/medical/research{ name = "Research Division" @@ -28787,7 +28787,7 @@ "biT" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -28797,7 +28797,7 @@ "biU" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitepurple" + icon_state = "whitepurple" }, /area/toxins/lab) "biV" = ( @@ -28807,7 +28807,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitepurple" + icon_state = "whitepurple" }, /area/toxins/lab) "biW" = ( @@ -28818,29 +28818,29 @@ "biX" = ( /obj/machinery/camera{ c_tag = "Research and Development"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 }, /obj/machinery/button/door{ dir = 2; - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "47" + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitepurplecorner" + icon_state = "whitepurplecorner" }, /area/toxins/lab) "biY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -28859,7 +28859,7 @@ "bjb" = ( /obj/machinery/conveyor{ dir = 1; - id = "garbage" + id = "garbage" }, /obj/structure/sign/vacuum{ pixel_x = -32 @@ -28872,17 +28872,17 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/disposal) "bjd" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/disposal) "bje" = ( @@ -28894,7 +28894,7 @@ "bjf" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposal Access"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -28904,19 +28904,19 @@ "bjg" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/port) "bjh" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -28937,8 +28937,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -28948,8 +28948,8 @@ "bjk" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -28962,18 +28962,18 @@ "bjl" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -28986,9 +28986,9 @@ /obj/item/weapon/hand_labeler, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 + departmentType = 2; + pixel_x = 0; + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -29010,16 +29010,16 @@ /obj/machinery/cell_charger, /obj/item/device/radio/intercom{ broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bjq" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/light{ dir = 1 @@ -29033,7 +29033,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_mining{ name = "Cargo Office"; - req_access_txt = "50" + req_access_txt = "50" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -29048,9 +29048,9 @@ /obj/machinery/photocopier, /obj/item/device/radio/intercom{ broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -29070,28 +29070,28 @@ "bjx" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bjy" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -29114,20 +29114,20 @@ "bjD" = ( /obj/machinery/power/apc{ dir = 1; - name = "Bridge Maintenance APC"; - pixel_y = 24 + name = "Bridge Maintenance APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) "bjE" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/wood, @@ -29135,11 +29135,11 @@ "bjF" = ( /obj/machinery/newscaster/security_unit{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/keycard_auth{ pixel_x = 0; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/wood, @@ -29147,52 +29147,52 @@ "bjG" = ( /obj/machinery/door/window{ base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Captain's Desk Door"; - req_access_txt = "20" + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door"; + req_access_txt = "20" }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bjH" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bjI" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bjJ" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bjK" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -29207,8 +29207,8 @@ "bjM" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -29216,11 +29216,11 @@ "bjN" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/medical) "bjO" = ( @@ -29246,11 +29246,11 @@ /obj/structure/table/glass, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/glass/beaker/large, @@ -29258,7 +29258,7 @@ /obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/chemistry) "bjS" = ( @@ -29272,7 +29272,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bjU" = ( @@ -29281,7 +29281,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/medbay) "bjV" = ( @@ -29290,14 +29290,14 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bjW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -29309,28 +29309,28 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/medical) "bjY" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/medical) "bjZ" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -29339,21 +29339,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/lab) "bkb" = ( /obj/machinery/camera{ c_tag = "Medbay Morgue"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -29370,7 +29370,7 @@ "bke" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/tank/internals/emergency_oxygen, /obj/item/weapon/tank/internals/emergency_oxygen, @@ -29385,16 +29385,16 @@ "bkg" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) "bkh" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) @@ -29402,17 +29402,17 @@ /obj/structure/table/glass, /obj/item/weapon/reagent_containers/glass/beaker/large{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/reagent_containers/glass/beaker{ pixel_x = 8; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/reagent_containers/dropper, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -29422,7 +29422,7 @@ /obj/structure/closet/emcloset, /obj/machinery/airalarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -29430,8 +29430,8 @@ "bkk" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -29444,13 +29444,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_research{ name = "Robotics Lab"; - req_access_txt = "29" + req_access_txt = "29" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -29482,23 +29482,23 @@ "bko" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = 1; - pixel_y = 6 + pixel_y = 6 }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/clothing/head/welding{ pixel_x = -3; - pixel_y = 5 + pixel_y = 5 }, /obj/item/clothing/glasses/welding, /turf/simulated/floor/plasteel{ @@ -29508,8 +29508,8 @@ "bkp" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -29523,7 +29523,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -29534,11 +29534,11 @@ }, /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -29546,10 +29546,10 @@ "bks" = ( /obj/machinery/requests_console{ department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - pixel_y = 0 + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -29558,7 +29558,7 @@ "bkt" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -29580,7 +29580,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -29590,8 +29590,8 @@ "bkx" = ( /obj/machinery/status_display{ density = 0; - pixel_y = 2; - supply_display = 1 + pixel_y = 2; + supply_display = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -29605,13 +29605,13 @@ "bkz" = ( /obj/machinery/conveyor{ dir = 1; - id = "garbage"; - layer = 2.5 + id = "garbage"; + layer = 2.5 }, /obj/machinery/door/poddoor/preopen{ id = "Disposal Exit"; - layer = 3; - name = "disposal exit vent" + layer = 3; + name = "disposal exit vent" }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -29621,15 +29621,15 @@ "bkB" = ( /obj/machinery/button/door{ id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" }, /obj/machinery/button/massdriver{ id = "trash"; - pixel_x = -26; - pixel_y = -6 + pixel_x = -26; + pixel_y = -6 }, /obj/structure/chair/stool, /turf/simulated/floor/plating, @@ -29638,7 +29638,7 @@ /obj/effect/decal/cleanable/oil, /obj/machinery/light_switch{ pixel_x = 25; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -29650,8 +29650,8 @@ "bkE" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/port) @@ -29661,13 +29661,13 @@ "bkG" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Maintenance"; - req_access_txt = "31" + req_access_txt = "31" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -29683,7 +29683,7 @@ "bkI" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -29697,8 +29697,8 @@ "bkK" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -29722,7 +29722,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_mining{ name = "Cargo Office"; - req_access_txt = "50" + req_access_txt = "50" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -29732,7 +29732,7 @@ "bkO" = ( /obj/machinery/light_switch{ pixel_x = 28; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/screwdriver{ pixel_y = 10 @@ -29743,18 +29743,18 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/checkpoint/medical) "bkP" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -29769,9 +29769,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -29785,9 +29785,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/light_switch{ pixel_y = -25 @@ -29805,7 +29805,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "bkT" = ( @@ -29814,9 +29814,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) @@ -29826,22 +29826,22 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -29851,8 +29851,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -29863,22 +29863,22 @@ "bkW" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) "bkX" = ( /obj/machinery/power/apc{ dir = 4; - name = "Conference Room APC"; - pixel_x = 24; - pixel_y = 0 + name = "Conference Room APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/bridge/meeting_room) @@ -29888,13 +29888,13 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) @@ -29902,7 +29902,7 @@ /obj/machinery/gravity_generator/main/station, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/engine/gravity_generator) "bla" = ( @@ -29911,9 +29911,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -29925,8 +29925,8 @@ "blb" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" + req_access = null; + req_access_txt = "20" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/carpet, @@ -29938,12 +29938,12 @@ "bld" = ( /obj/machinery/door/airlock/maintenance{ name = "Captain's Office Maintenance"; - req_access_txt = "20" + req_access_txt = "20" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/crew_quarters/captain) @@ -29951,7 +29951,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 1 + pixel_y = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -29960,13 +29960,13 @@ /obj/item/weapon/storage/box/syringes, /obj/item/clothing/glasses/science{ pixel_x = 2; - pixel_y = 4 + pixel_y = 4 }, /obj/item/clothing/glasses/science, /obj/item/device/radio/intercom{ dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 + name = "Station Intercom (General)"; + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -29978,13 +29978,13 @@ }, /obj/machinery/door/airlock/maintenance{ name = "Morgue Maintenance"; - req_access_txt = "6" + req_access_txt = "6" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -29995,10 +29995,10 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "33" + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, @@ -30013,7 +30013,7 @@ /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -30023,7 +30023,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bll" = ( @@ -30048,10 +30048,10 @@ /obj/structure/table/reinforced, /obj/machinery/camera{ c_tag = "Medbay Foyer"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/machinery/cell_charger, /turf/simulated/floor/plasteel{ @@ -30064,18 +30064,18 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/power/apc{ dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 + name = "Starboard Emergency Storage APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -30085,28 +30085,28 @@ "blp" = ( /obj/machinery/power/apc{ dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 + name = "Medbay Security APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/medical) "blq" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ sortType = 9 @@ -30127,14 +30127,14 @@ "bls" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) @@ -30154,7 +30154,7 @@ /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) @@ -30164,13 +30164,13 @@ "blx" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -30194,8 +30194,8 @@ /obj/structure/table, /obj/item/stack/sheet/glass{ amount = 20; - pixel_x = -3; - pixel_y = 6 + pixel_x = -3; + pixel_y = 6 }, /obj/item/stack/sheet/metal{ amount = 50 @@ -30223,7 +30223,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/assembly/robotics) "blA" = ( @@ -30235,13 +30235,13 @@ /obj/machinery/mecha_part_fabricator, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/assembly/robotics) "blC" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/assembly/robotics) "blD" = ( @@ -30255,7 +30255,7 @@ "blE" = ( /obj/machinery/ai_status_display{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/table, /obj/item/device/assembly/flash/handheld, @@ -30288,18 +30288,18 @@ "blH" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -30308,20 +30308,20 @@ /obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/lab) "blJ" = ( /obj/machinery/r_n_d/protolathe, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/lab) "blK" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/lab) "blL" = ( @@ -30333,11 +30333,11 @@ "blM" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/assembly/robotics) "blN" = ( @@ -30365,11 +30365,11 @@ "blR" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /obj/item/weapon/cigbutt, /turf/simulated/floor/plating, @@ -30383,7 +30383,7 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/disposal) "blT" = ( @@ -30407,7 +30407,7 @@ "blX" = ( /obj/machinery/door/airlock/research{ name = "Research Division Access"; - req_access_txt = "47" + req_access_txt = "47" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -30420,7 +30420,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/storage) "blZ" = ( @@ -30430,7 +30430,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/lab) "bma" = ( @@ -30443,12 +30443,12 @@ /obj/item/weapon/stock_parts/micro_laser, /obj/item/stack/cable_coil{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/stack/cable_coil, /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -30469,8 +30469,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -30478,12 +30478,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -30493,12 +30493,12 @@ }, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -30508,13 +30508,13 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bmg" = ( /obj/machinery/door/airlock/glass_mining{ name = "Cargo Bay"; - req_access_txt = "31" + req_access_txt = "31" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -30524,9 +30524,9 @@ "bmh" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -30540,8 +30540,8 @@ "bmj" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -30549,7 +30549,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; - req_access_txt = "50" + req_access_txt = "50" }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -30565,9 +30565,9 @@ "bmm" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, @@ -30579,13 +30579,13 @@ /obj/machinery/door/firedoor, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 + layer = 3; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "bmo" = ( @@ -30594,7 +30594,7 @@ "bmp" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, @@ -30609,13 +30609,13 @@ "bms" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" + req_access = null; + req_access_txt = "57" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30624,13 +30624,13 @@ "bmt" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/office) "bmu" = ( @@ -30642,8 +30642,8 @@ "bmv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -30680,7 +30680,7 @@ "bmA" = ( /obj/machinery/door/airlock{ name = "Private Restroom"; - req_access_txt = "0" + req_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -30692,16 +30692,16 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) "bmC" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /obj/structure/mirror{ pixel_x = 28 @@ -30716,8 +30716,8 @@ "bmD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/crew_quarters/captain) @@ -30729,8 +30729,8 @@ /obj/structure/table/glass, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/item/stack/cable_coil/random, /obj/item/stack/cable_coil/random, @@ -30742,19 +30742,19 @@ /obj/machinery/chem_dispenser, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/chemistry) "bmH" = ( /obj/machinery/door/airlock/glass_mining{ name = "Cargo Bay"; - req_access_txt = "31" + req_access_txt = "31" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -30762,23 +30762,23 @@ /obj/machinery/chem_master, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/chemistry) "bmJ" = ( /obj/item/device/radio/intercom{ broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 }, /obj/machinery/light, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -30796,11 +30796,11 @@ }, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - req_access_txt = "5" + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" }, /obj/effect/landmark/start{ name = "Medical Doctor" @@ -30823,8 +30823,8 @@ "bmN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -30835,26 +30835,26 @@ /obj/structure/closet, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/checkpoint/medical) "bmP" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bmQ" = ( /obj/item/weapon/stamp{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/stamp/denied{ pixel_x = 4; - pixel_y = -2 + pixel_y = -2 }, /obj/structure/table, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30889,12 +30889,12 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/medical{ name = "Morgue"; - req_access_txt = "6;5" + req_access_txt = "6;5" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -30927,8 +30927,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30942,7 +30942,7 @@ }, /obj/machinery/camera{ c_tag = "Mech Bay"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) @@ -30962,12 +30962,12 @@ "bne" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -30978,26 +30978,26 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/lab) "bng" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/lab) "bnh" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31006,7 +31006,7 @@ "bni" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/assembly/robotics) "bnj" = ( @@ -31015,9 +31015,9 @@ /obj/item/weapon/stock_parts/cell/high/plus, /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31028,12 +31028,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhitecorner" + icon_state = "warnwhitecorner" }, /area/toxins/lab) "bnl" = ( @@ -31045,22 +31045,22 @@ /obj/item/weapon/stock_parts/matter_bin, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/item/weapon/stock_parts/scanning_module{ pixel_x = 2; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/stock_parts/scanning_module, /obj/machinery/power/apc{ dir = 4; - name = "Research Lab APC"; - pixel_x = 26; - pixel_y = 0 + name = "Research Lab APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31122,14 +31122,14 @@ "bnv" = ( /obj/machinery/door/poddoor{ id = "trash"; - name = "disposal bay door" + name = "disposal bay door" }, /turf/simulated/floor/plating, /area/maintenance/disposal) "bnw" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/storage) "bnx" = ( @@ -31138,24 +31138,24 @@ }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "bny" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -31175,12 +31175,12 @@ "bnA" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -31192,7 +31192,7 @@ /obj/structure/closet/wardrobe/chemistry_white, /obj/machinery/light_switch{ pixel_x = -23; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31211,7 +31211,7 @@ /obj/item/weapon/book/manual/wiki/chemistry, /obj/item/weapon/book/manual/wiki/chemistry{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31221,8 +31221,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -31230,7 +31230,7 @@ "bnF" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 0; - pixel_y = 30 + pixel_y = 30 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -31245,7 +31245,7 @@ "bnG" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/clipboard, /obj/item/weapon/pen/red, @@ -31286,23 +31286,23 @@ "bnM" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bnN" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "redcorner" + icon_state = "redcorner" }, /area/hallway/primary/central) "bnO" = ( /obj/structure/table, /obj/machinery/newscaster/security_unit{ pixel_x = 0; - pixel_y = 32 + pixel_y = 32 }, /obj/item/weapon/hand_labeler, /obj/item/stack/packageWrap, @@ -31311,39 +31311,39 @@ "bnP" = ( /obj/machinery/button/flasher{ id = "hopflash"; - pixel_x = 6; - pixel_y = 36 + pixel_x = 6; + pixel_y = 36 }, /obj/machinery/button/door{ id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "28" + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" }, /obj/machinery/button/door{ id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "28" + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" }, /obj/machinery/light_switch{ pixel_x = -4; - pixel_y = 36 + pixel_y = 36 }, /obj/machinery/pdapainter, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "blue" + icon_state = "blue" }, /area/crew_quarters/heads) "bnQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/bed/dogbed{ anchored = 1; - desc = "Ian's bed! Looks comfy."; - name = "Ian's bed" + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" }, /mob/living/simple_animal/pet/dog/corgi/Ian{ dir = 8 @@ -31353,10 +31353,10 @@ "bnR" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 }, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -31365,8 +31365,8 @@ "bnS" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31376,14 +31376,14 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -31391,13 +31391,13 @@ "bnU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/glass_engineering{ name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" + req_access_txt = "11"; + req_one_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -31407,11 +31407,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -31420,18 +31420,18 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -31445,8 +31445,8 @@ /obj/item/weapon/bedsheet/captain, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/carpet, @@ -31472,11 +31472,11 @@ /obj/item/weapon/grenade/chem_grenade, /obj/item/weapon/screwdriver{ pixel_x = -2; - pixel_y = 6 + pixel_y = 6 }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31485,12 +31485,12 @@ "boc" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ @@ -31509,13 +31509,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" + name = "Medbay"; + req_access_txt = "5" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bof" = ( @@ -31530,13 +31530,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" + name = "Medbay"; + req_access_txt = "5" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "boi" = ( @@ -31548,17 +31548,17 @@ "boj" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/requests_console{ announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 30; - pixel_y = 0; - pixel_z = 0 + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 }, /obj/machinery/light, /turf/simulated/floor/plasteel{ @@ -31568,12 +31568,12 @@ "bok" = ( /obj/machinery/door/airlock/glass_security{ name = "Security Office"; - req_access_txt = "63" + req_access_txt = "63" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -31583,7 +31583,7 @@ "bol" = ( /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -31610,7 +31610,7 @@ "boo" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -31620,7 +31620,7 @@ /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/assembly/chargebay) @@ -31628,7 +31628,7 @@ /obj/structure/bed/roller, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bor" = ( @@ -31637,8 +31637,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -31667,28 +31667,28 @@ /obj/structure/table, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /obj/item/weapon/stock_parts/cell/high/plus, /obj/item/weapon/stock_parts/cell/high/plus{ pixel_x = 5; - pixel_y = -5 + pixel_y = -5 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/item/weapon/crowbar, /turf/simulated/floor/plasteel{ @@ -31699,7 +31699,7 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ id = "Biohazard"; - name = "biohazard containment door" + name = "biohazard containment door" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -31715,7 +31715,7 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ id = "Biohazard"; - name = "biohazard containment door" + name = "biohazard containment door" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -31728,7 +31728,7 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ id = "Biohazard"; - name = "biohazard containment door" + name = "biohazard containment door" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -31739,7 +31739,7 @@ "boA" = ( /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/lab) "boB" = ( @@ -31754,8 +31754,8 @@ "boD" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -31774,8 +31774,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -31785,8 +31785,8 @@ "boG" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -31794,12 +31794,12 @@ "boH" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -31810,10 +31810,10 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -31824,7 +31824,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/storage) "boK" = ( @@ -31836,13 +31836,13 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -31852,7 +31852,7 @@ "boM" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/medical/research{ name = "Research Division" @@ -31860,14 +31860,14 @@ "boN" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/quartermaster/office) "boO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/medical/research{ name = "Research Division" @@ -31900,7 +31900,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/window/westleft{ name = "Cargo Desk"; - req_access_txt = "50" + req_access_txt = "50" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -31910,9 +31910,9 @@ "boT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -31925,9 +31925,9 @@ "boV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -31937,11 +31937,11 @@ "boW" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "boX" = ( @@ -31950,11 +31950,11 @@ }, /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; - name = "HoP Queue Shutters" + name = "HoP Queue Shutters" }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/hallway/primary/central) "boY" = ( @@ -31963,37 +31963,37 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "boZ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ dir = 8; - icon_state = "left"; - name = "Reception Window"; - req_access_txt = "0" + icon_state = "left"; + name = "Reception Window"; + req_access_txt = "0" }, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = null; - req_access_txt = "57" + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/flasher{ id = "hopflash"; - pixel_x = 0; - pixel_y = 28 + pixel_x = 0; + pixel_y = 28 }, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; - name = "Privacy Shutters" + layer = 2.9; + name = "Privacy Shutters" }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) @@ -32020,7 +32020,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/crew_quarters/heads) "bpd" = ( @@ -32030,7 +32030,7 @@ "bpe" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/crew_quarters/heads) @@ -32038,8 +32038,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -32048,33 +32048,33 @@ /obj/structure/chair/office/light, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "bph" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "bpi" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "bpj" = ( @@ -32083,7 +32083,7 @@ }, /obj/machinery/camera{ c_tag = "Captain's Quarters"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -32095,9 +32095,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) @@ -32109,7 +32109,7 @@ }, /obj/item/weapon/razor{ pixel_x = -4; - pixel_y = 2 + pixel_y = 2 }, /obj/item/clothing/mask/cigarette/cigar, /turf/simulated/floor/carpet, @@ -32139,9 +32139,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32150,10 +32150,10 @@ "bpp" = ( /obj/machinery/door/window/eastright{ base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -32162,7 +32162,7 @@ "bpq" = ( /obj/machinery/light_switch{ pixel_x = 0; - pixel_y = -23 + pixel_y = -23 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32171,8 +32171,8 @@ "bpr" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Research Division" + freq = 1400; + location = "Research Division" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -32184,7 +32184,7 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/quartermaster/storage) "bpt" = ( @@ -32199,15 +32199,15 @@ /obj/structure/bed/roller, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26 + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26 }, /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32217,7 +32217,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Medbay Reception"; - req_access_txt = "5" + req_access_txt = "5" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32230,8 +32230,8 @@ "bpx" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -32244,7 +32244,7 @@ "bpy" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32253,9 +32253,9 @@ "bpz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -32267,8 +32267,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -32282,13 +32282,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" + name = "Chemistry Lab"; + req_access_txt = "5; 33" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -32304,8 +32304,8 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/southleft{ dir = 1; - name = "Chemistry Desk"; - req_access_txt = "33" + name = "Chemistry Desk"; + req_access_txt = "33" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, @@ -32313,12 +32313,12 @@ "bpG" = ( /obj/machinery/power/apc{ dir = 1; - name = "Genetics APC"; - pixel_y = 24 + name = "Genetics APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32330,10 +32330,10 @@ /obj/item/device/radio/headset/headset_medsci, /obj/machinery/requests_console{ department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_x = 0; - pixel_y = 30 + departmentType = 0; + name = "Genetics Requests Console"; + pixel_x = 0; + pixel_y = 30 }, /obj/item/weapon/storage/pill_bottle/mutadone, /obj/item/weapon/storage/pill_bottle/mannitol, @@ -32345,7 +32345,7 @@ /obj/machinery/dna_scannernew, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "bpJ" = ( @@ -32354,7 +32354,7 @@ }, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -32388,7 +32388,7 @@ "bpO" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -32398,8 +32398,8 @@ "bpP" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -32411,18 +32411,18 @@ "bpQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ dir = 2; - icon_state = "pipe-j2s"; - sortType = 14 + icon_state = "pipe-j2s"; + sortType = 14 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -32441,14 +32441,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -32462,7 +32462,7 @@ /obj/item/device/mmi, /obj/structure/window/reinforced{ dir = 4; - pixel_x = 0 + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/assembly/robotics) @@ -32470,15 +32470,15 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/regular{ empty = 1; - name = "First-Aid (empty)" + name = "First-Aid (empty)" }, /obj/item/weapon/storage/firstaid/regular{ empty = 1; - name = "First-Aid (empty)" + name = "First-Aid (empty)" }, /obj/item/weapon/storage/firstaid/regular{ empty = 1; - name = "First-Aid (empty)" + name = "First-Aid (empty)" }, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, @@ -32490,16 +32490,16 @@ "bpV" = ( /obj/machinery/door/airlock/maintenance{ name = "Mech Bay Maintenance"; - req_access_txt = "29" + req_access_txt = "29" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -32511,24 +32511,24 @@ /obj/structure/grille, /obj/machinery/door/poddoor/shutters/preopen{ id = "robotics2"; - name = "robotics lab shutters" + name = "robotics lab shutters" }, /obj/structure/window/fulltile, /obj/machinery/door/poddoor/shutters/preopen{ id = "robotics2"; - name = "robotics lab shutters" + name = "robotics lab shutters" }, /turf/simulated/floor/plating, /area/assembly/robotics) "bpX" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/medical/research{ name = "Research Division" @@ -32539,9 +32539,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -32553,11 +32553,11 @@ /obj/structure/table, /obj/item/weapon/disk/tech_disk{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/disk/tech_disk{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/disk/design_disk, /obj/item/weapon/disk/design_disk, @@ -32574,12 +32574,12 @@ "bqb" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -32594,7 +32594,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/assembly/robotics) "bqd" = ( @@ -32604,11 +32604,11 @@ /obj/item/weapon/razor, /obj/structure/window/reinforced{ dir = 4; - pixel_x = 0 + pixel_x = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/assembly/robotics) "bqe" = ( @@ -32618,7 +32618,7 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/shutters/preopen{ id = "rnd2"; - name = "research lab shutters" + name = "research lab shutters" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -32637,11 +32637,11 @@ "bqi" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad2" + id = "QMLoad2" }, /obj/machinery/door/poddoor{ id = "QMLoaddoor2"; - name = "supply dock loading door" + name = "supply dock loading door" }, /turf/simulated/floor/plating, /area/quartermaster/storage) @@ -32649,7 +32649,7 @@ /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 4; - id = "QMLoad2" + id = "QMLoad2" }, /turf/simulated/floor/plating, /area/quartermaster/storage) @@ -32657,13 +32657,13 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/shutters/preopen{ id = "rnd2"; - name = "research lab shutters" + name = "research lab shutters" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -32673,11 +32673,11 @@ "bql" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad2" + id = "QMLoad2" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/quartermaster/storage) "bqm" = ( @@ -32704,18 +32704,18 @@ "bqq" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads) "bqr" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/carpet, @@ -32741,19 +32741,19 @@ "bqw" = ( /turf/simulated/floor/plasteel{ icon_state = "redcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "bqx" = ( /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; - name = "Privacy Shutters" + layer = 2.9; + name = "Privacy Shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -32770,7 +32770,7 @@ /obj/machinery/computer/card, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 10 + dir = 10 }, /area/crew_quarters/heads) "bqB" = ( @@ -32780,13 +32780,13 @@ "bqC" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32795,13 +32795,13 @@ "bqD" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/apc{ dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 }, /obj/structure/table, /obj/item/weapon/paper/gravity_gen{ @@ -32810,15 +32810,15 @@ /obj/item/weapon/pen/blue, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -35 + pixel_y = -35 }, /turf/simulated/floor/plasteel, /area/engine/gravity_generator) "bqE" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, @@ -32826,15 +32826,15 @@ "bqF" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/engine/gravity_generator) "bqG" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable, /obj/machinery/power/smes{ @@ -32856,16 +32856,16 @@ "bqK" = ( /obj/machinery/door/airlock/maintenance{ name = "Teleporter Maintenance"; - req_access_txt = "17" + req_access_txt = "17" }, /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/teleporter) @@ -32891,8 +32891,8 @@ "bqO" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -32900,7 +32900,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/medbay) "bqP" = ( @@ -32924,59 +32924,59 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /obj/structure/sign/nosmoking_2{ pixel_x = 0; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteyellowcorner" + icon_state = "whiteyellowcorner" }, /area/medical/medbay) "bqS" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/medbay) "bqT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteyellow" + icon_state = "whiteyellow" }, /area/medical/medbay) "bqU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/noticeboard{ pixel_y = 32 }, /obj/machinery/camera{ c_tag = "Medbay West"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -32988,23 +32988,23 @@ "bqV" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteyellowcorner" + icon_state = "whiteyellowcorner" }, /area/medical/medbay) "bqW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -33016,9 +33016,9 @@ "bqX" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -33030,9 +33030,9 @@ "bqY" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -33042,8 +33042,8 @@ "bqZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33060,7 +33060,7 @@ /obj/machinery/computer/scan_consolenew, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "brc" = ( @@ -33087,14 +33087,14 @@ "brf" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33103,9 +33103,9 @@ "brg" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -33115,38 +33115,38 @@ "brh" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/medbay) "bri" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "brj" = ( /obj/structure/bed/roller, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "brk" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump{ on = 1 @@ -33158,11 +33158,11 @@ "brl" = ( /obj/machinery/light_switch{ pixel_x = -23; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/assembly/robotics) "brm" = ( @@ -33175,7 +33175,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -33203,7 +33203,7 @@ }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -33211,12 +33211,12 @@ "brp" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ @@ -33228,11 +33228,11 @@ "brq" = ( /obj/machinery/button/door{ dir = 2; - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33250,14 +33250,14 @@ /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" }, /obj/machinery/door/poddoor/shutters/preopen{ id = "robotics2"; - name = "robotics lab shutters" + name = "robotics lab shutters" }, /obj/item/weapon/folder/white, /obj/item/weapon/pen, @@ -33267,7 +33267,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -33275,7 +33275,7 @@ "bru" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -33296,8 +33296,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33312,8 +33312,8 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33326,7 +33326,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/shutters/preopen{ id = "rnd2"; - name = "research lab shutters" + name = "research lab shutters" }, /obj/structure/window/fulltile, /turf/simulated/floor/plating, @@ -33334,15 +33334,15 @@ "bry" = ( /obj/machinery/door/airlock/maintenance{ name = "Experimentation Lab Maintenance"; - req_access_txt = "7" + req_access_txt = "7" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33354,32 +33354,32 @@ /obj/item/weapon/pen, /obj/machinery/camera{ c_tag = "Experimentor Lab"; - dir = 2; - network = list("SS13","RD") + dir = 2; + network = list("SS13","RD") }, /obj/item/weapon/hand_labeler, /obj/item/stack/packageWrap, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/toxins/explab) "brA" = ( /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 0; - pixel_y = 6 + pixel_y = 6 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/toxins/explab) "brB" = ( /obj/structure/closet/l3closet/scientist, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/toxins/explab) "brC" = ( @@ -33388,12 +33388,12 @@ /obj/item/weapon/folder/white, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /obj/item/device/radio/off, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/toxins/explab) "brD" = ( @@ -33402,7 +33402,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/toxins/explab) "brE" = ( @@ -33416,8 +33416,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ pixel_x = -32 @@ -33449,7 +33449,7 @@ "brJ" = ( /obj/machinery/door/airlock/external{ name = "Supply Dock Airlock"; - req_access_txt = "31" + req_access_txt = "31" }, /turf/simulated/floor/plating, /area/quartermaster/storage) @@ -33459,19 +33459,19 @@ "brL" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/storage) "brM" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #1" + freq = 1400; + location = "QM #1" }, /mob/living/simple_animal/bot/mulebot{ beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" + home_destination = "QM #1"; + suffix = "#1" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -33486,15 +33486,15 @@ /obj/structure/table, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 + departmentType = 2; + pixel_x = -30; + pixel_y = 0 }, /obj/item/device/multitool, /obj/machinery/camera{ c_tag = "Cargo Office"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -33504,13 +33504,13 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33522,17 +33522,17 @@ "brQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -33543,8 +33543,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel, @@ -33555,8 +33555,8 @@ "brT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -33564,19 +33564,19 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; - name = "Privacy Shutters" + layer = 2.9; + name = "Privacy Shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -33592,9 +33592,9 @@ "brW" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plasteel, @@ -33603,11 +33603,11 @@ /obj/structure/table, /obj/item/weapon/storage/box/masks{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/storage/box/gloves{ pixel_x = 3; - pixel_y = 4 + pixel_y = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -33619,7 +33619,7 @@ "brY" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -33631,14 +33631,14 @@ "brZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -33661,16 +33661,16 @@ "bsd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/gravity_generator) "bse" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -33680,7 +33680,7 @@ "bsf" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/engine/gravity_generator) @@ -33705,7 +33705,7 @@ "bsj" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 1 + pixel_y = 1 }, /obj/structure/table, /obj/item/device/radio/beacon, @@ -33717,7 +33717,7 @@ "bsk" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/light{ dir = 1 @@ -33730,9 +33730,9 @@ "bsl" = ( /obj/item/device/radio/intercom{ broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 }, /obj/structure/closet/crate, /obj/item/weapon/crowbar, @@ -33744,7 +33744,7 @@ "bsm" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/teleporter) @@ -33754,7 +33754,7 @@ }, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33767,8 +33767,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/teleporter) @@ -33776,7 +33776,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "bsq" = ( @@ -33785,12 +33785,12 @@ }, /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 }, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -33806,8 +33806,8 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33825,19 +33825,19 @@ "bst" = ( /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 30; - pixel_y = 0 + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 30; + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Medbay East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33847,8 +33847,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = "GeneticsDoor"; - name = "Genetics"; - req_access_txt = "5; 9" + name = "Genetics"; + req_access_txt = "5; 9" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33857,8 +33857,8 @@ "bsv" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -33868,8 +33868,8 @@ "bsw" = ( /obj/machinery/door/airlock/research{ name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" + req_access_txt = "29"; + req_one_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33878,9 +33878,9 @@ "bsx" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -33889,9 +33889,9 @@ "bsy" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33903,13 +33903,13 @@ "bsz" = ( /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 + layer = 3; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -33918,7 +33918,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -33940,8 +33940,8 @@ "bsD" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -33955,13 +33955,13 @@ "bsE" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/research{ name = "Experimentation Lab"; - req_access_txt = "7" + req_access_txt = "7" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -33973,8 +33973,8 @@ "bsF" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34002,9 +34002,9 @@ "bsI" = ( /obj/machinery/power/apc{ dir = 4; - name = "Experimentation Lab APC"; - pixel_x = 26; - pixel_y = 0 + name = "Experimentation Lab APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34024,7 +34024,7 @@ /obj/structure/table/glass, /obj/item/weapon/storage/box/disks{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -34038,8 +34038,8 @@ "bsM" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -34051,7 +34051,7 @@ "bsN" = ( /obj/machinery/door/window/westleft{ name = "Monkey Pen"; - req_access_txt = "9" + req_access_txt = "9" }, /turf/simulated/floor/plasteel, /area/medical/genetics) @@ -34081,7 +34081,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 4 + dir = 4 }, /area/assembly/robotics) "bsT" = ( @@ -34103,8 +34103,8 @@ "bsV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34122,11 +34122,11 @@ "bsX" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -34143,7 +34143,7 @@ "bsZ" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -34160,7 +34160,7 @@ }, /obj/machinery/camera{ c_tag = "Research Division North"; - dir = 2 + dir = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -34190,9 +34190,9 @@ "btc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warning" @@ -34201,7 +34201,7 @@ "btd" = ( /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/teleporter) "bte" = ( @@ -34210,7 +34210,7 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -34218,12 +34218,12 @@ "btf" = ( /obj/machinery/requests_console{ announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30; - pixel_y = 0; - pixel_z = 0 + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -34255,7 +34255,7 @@ "btj" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -34273,8 +34273,8 @@ "btl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -34283,13 +34283,13 @@ "btm" = ( /obj/structure/disposalpipe/sortjunction{ dir = 2; - icon_state = "pipe-j2s"; - sortType = 12 + icon_state = "pipe-j2s"; + sortType = 12 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -34307,7 +34307,7 @@ "bto" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/sign/securearea{ pixel_x = 32 @@ -34334,37 +34334,37 @@ "btr" = ( /obj/machinery/camera{ c_tag = "Cargo Recieving Dock"; - dir = 4 + dir = 4 }, /obj/machinery/button/door{ id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 }, /obj/machinery/button/door{ dir = 2; - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/storage) "bts" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #2" + freq = 1400; + location = "QM #2" }, /mob/living/simple_animal/bot/mulebot{ home_destination = "QM #2"; - suffix = "#2" + suffix = "#2" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -34374,7 +34374,7 @@ /obj/structure/table, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/item/weapon/folder/yellow, /turf/simulated/floor/plasteel, @@ -34382,7 +34382,7 @@ "btu" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -34399,7 +34399,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/research{ name = "Research Division" @@ -34408,7 +34408,7 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ id = "Biohazard"; - name = "biohazard containment door" + name = "biohazard containment door" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34429,14 +34429,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "btA" = ( /obj/machinery/camera{ c_tag = "Research Division West"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34452,15 +34452,15 @@ /obj/machinery/recharger, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "blue" + icon_state = "blue" }, /area/crew_quarters/heads) "btC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) @@ -34468,7 +34468,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel, @@ -34476,8 +34476,8 @@ "btE" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -34490,11 +34490,11 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ name = "Gravity Generator"; - req_access_txt = "11" + req_access_txt = "11" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/gravity_generator) "btG" = ( @@ -34503,9 +34503,9 @@ "btH" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -34514,21 +34514,21 @@ "btI" = ( /obj/machinery/power/apc{ dir = 8; - name = "Teleporter APC"; - pixel_x = -24 + name = "Teleporter APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel, /area/teleporter) "btJ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/plasteel, @@ -34537,18 +34537,18 @@ /obj/machinery/hologram/holopad, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/teleporter) "btL" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/teleporter) @@ -34556,46 +34556,46 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Teleport Access"; - req_access_txt = "17" + req_access_txt = "17" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/teleporter) "btN" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel, /area/teleporter) "btO" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "btP" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34612,7 +34612,7 @@ }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -34627,7 +34627,7 @@ "btS" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34673,7 +34673,7 @@ }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -34684,7 +34684,7 @@ }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -34693,16 +34693,16 @@ "btY" = ( /obj/machinery/requests_console{ department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -34712,7 +34712,7 @@ /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -34725,49 +34725,49 @@ /obj/machinery/light, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -35 + pixel_y = -35 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/quartermaster/storage) "buc" = ( /obj/machinery/light, /obj/machinery/power/apc{ dir = 2; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/quartermaster/office) "bud" = ( /obj/structure/closet/crate, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/quartermaster/office) "bue" = ( /obj/machinery/requests_console{ announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 }, /obj/machinery/camera{ c_tag = "Head of Personnel's Office"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) @@ -34775,7 +34775,7 @@ /obj/machinery/computer/scan_consolenew, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "bug" = ( @@ -34792,8 +34792,8 @@ "bui" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -34804,7 +34804,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/shutters/preopen{ id = "robotics2"; - name = "robotics lab shutters" + name = "robotics lab shutters" }, /obj/structure/window/fulltile, /turf/simulated/floor/plating, @@ -34812,13 +34812,13 @@ "buk" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/sleeper) "bul" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -34833,12 +34833,12 @@ "bun" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ @@ -34859,8 +34859,8 @@ /obj/machinery/light, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34885,9 +34885,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -34899,8 +34899,8 @@ "bus" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34917,9 +34917,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -34933,8 +34933,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34954,8 +34954,8 @@ "buw" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34970,16 +34970,16 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitepurple" + icon_state = "whitepurple" }, /area/medical/genetics) "buy" = ( @@ -34988,18 +34988,18 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ @@ -35009,8 +35009,8 @@ "buz" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -35025,24 +35025,24 @@ "buB" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; - id = "QMLoad" + id = "QMLoad" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "buC" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "buD" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #3" + freq = 1400; + location = "QM #3" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -35052,33 +35052,33 @@ /obj/structure/table, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "buF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "buG" = ( /obj/machinery/door/airlock/research{ name = "Genetics Research"; - req_access_txt = "9" + req_access_txt = "9" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35090,16 +35090,16 @@ "buH" = ( /obj/machinery/door/airlock/research{ name = "Genetics Research Access"; - req_access_txt = "47" + req_access_txt = "47" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35113,7 +35113,7 @@ "buI" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -35127,7 +35127,7 @@ "buK" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -35136,13 +35136,13 @@ "buL" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35155,12 +35155,12 @@ "buM" = ( /obj/machinery/keycard_auth{ pixel_x = -24; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/computer/cargo, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/crew_quarters/heads) "buN" = ( @@ -35184,18 +35184,18 @@ "buQ" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "buR" = ( @@ -35207,18 +35207,18 @@ "buS" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/camera{ c_tag = "Gravity Generator Foyer" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "buT" = ( @@ -35227,16 +35227,16 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/research{ name = "Research Division" @@ -35247,14 +35247,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ id = "Biohazard"; - name = "biohazard containment door" + name = "biohazard containment door" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35268,7 +35268,7 @@ "buV" = ( /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/teleporter) "buW" = ( @@ -35298,17 +35298,17 @@ "bva" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "bvb" = ( @@ -35317,14 +35317,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35341,9 +35341,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35367,14 +35367,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -35389,11 +35389,11 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -35401,12 +35401,12 @@ "bvg" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ @@ -35437,8 +35437,8 @@ "bvl" = ( /obj/machinery/door/airlock/glass_medical{ id_tag = ""; - name = "Surgery Observation"; - req_access_txt = "0" + name = "Surgery Observation"; + req_access_txt = "0" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35455,11 +35455,11 @@ "bvn" = ( /obj/machinery/button/door{ desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = 24 + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = 24 }, /obj/structure/table, /obj/item/weapon/book/manual/medical_cloning{ @@ -35472,9 +35472,9 @@ "bvo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -35513,13 +35513,13 @@ /obj/machinery/dna_scannernew, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "bvt" = ( /obj/machinery/door/airlock/glass_research{ name = "Genetics Research"; - req_access_txt = "5; 9" + req_access_txt = "5; 9" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -35554,28 +35554,28 @@ "bvy" = ( /obj/machinery/camera{ c_tag = "Genetics Research"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitepurple" + icon_state = "whitepurple" }, /area/medical/genetics) "bvz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35595,10 +35595,10 @@ "bvB" = ( /obj/machinery/camera{ c_tag = "Genetics Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -35616,8 +35616,8 @@ "bvD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -35632,7 +35632,7 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -35641,23 +35641,23 @@ /obj/structure/table, /obj/item/weapon/cartridge/quartermaster{ pixel_x = 6; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/cartridge/quartermaster, /obj/item/weapon/cartridge/quartermaster{ pixel_x = -4; - pixel_y = 7 + pixel_y = 7 }, /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 + departmentType = 2; + pixel_x = -30; + pixel_y = 0 }, /obj/item/weapon/coin/silver, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "bvG" = ( @@ -35675,7 +35675,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -35684,8 +35684,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -35701,13 +35701,13 @@ "bvL" = ( /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/supply) "bvM" = ( /obj/machinery/light_switch{ pixel_x = -20; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -35731,13 +35731,13 @@ "bvP" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -35758,11 +35758,11 @@ "bvS" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad" + id = "QMLoad" }, /obj/machinery/door/poddoor{ id = "QMLoaddoor"; - name = "supply dock loading door" + name = "supply dock loading door" }, /turf/simulated/floor/plating, /area/quartermaster/storage) @@ -35770,34 +35770,34 @@ /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 4; - id = "QMLoad" + id = "QMLoad" }, /turf/simulated/floor/plating, /area/quartermaster/storage) "bvU" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad" + id = "QMLoad" }, /obj/machinery/light, /obj/machinery/status_display{ density = 0; - pixel_y = -30; - supply_display = 1 + pixel_y = -30; + supply_display = 1 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/quartermaster/storage) "bvV" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad" + id = "QMLoad" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/quartermaster/storage) "bvW" = ( @@ -35806,21 +35806,21 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/central) "bvX" = ( /obj/machinery/camera{ c_tag = "Cargo Bay South"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bvY" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #4" + freq = 1400; + location = "QM #4" }, /turf/simulated/floor/plasteel{ icon_state = "bot" @@ -35830,46 +35830,46 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 6; - pixel_y = -5 + pixel_y = -5 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bwa" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/central) "bwb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/hallway/primary/central) "bwc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -35885,23 +35885,23 @@ "bwf" = ( /obj/machinery/camera{ c_tag = "Cargo Bay Entrance"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "bwg" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; - name = "HoP Queue Shutters" + name = "HoP Queue Shutters" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/hallway/primary/central) "bwh" = ( @@ -35914,25 +35914,25 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/hallway/primary/central) "bwi" = ( /obj/item/device/radio/intercom{ dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 + name = "Station Intercom (General)"; + pixel_x = -28 }, /obj/structure/closet/secure_closet/hop, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 10 + dir = 10 }, /area/crew_quarters/heads) "bwj" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) @@ -35944,8 +35944,8 @@ "bwl" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35961,14 +35961,14 @@ /obj/structure/closet/radiation, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32; - pixel_y = 0 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "bwo" = ( @@ -35979,14 +35979,14 @@ /obj/structure/closet/radiation, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/engine/gravity_generator) "bwq" = ( @@ -36010,8 +36010,8 @@ "bwu" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, @@ -36019,8 +36019,8 @@ "bwv" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" + freq = 1400; + location = "Medbay" }, /obj/structure/plasticflaps{ opacity = 1 @@ -36044,7 +36044,7 @@ "bwx" = ( /obj/machinery/door/window/eastleft{ name = "Medical Delivery"; - req_access_txt = "5" + req_access_txt = "5" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -36053,7 +36053,7 @@ "bwy" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -36078,9 +36078,9 @@ /obj/structure/chair, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -36095,7 +36095,7 @@ "bwD" = ( /obj/machinery/sleeper{ icon_state = "sleeper-open"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) @@ -36110,11 +36110,11 @@ /obj/structure/table/glass, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 7; - pixel_y = 1 + pixel_y = 1 }, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 7; - pixel_y = 1 + pixel_y = 1 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) @@ -36135,29 +36135,29 @@ /obj/structure/table/glass, /obj/machinery/camera{ c_tag = "Medbay Cryogenics"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) "bwK" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -36166,17 +36166,17 @@ "bwL" = ( /obj/machinery/camera{ c_tag = "Genetics Cloning"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/table, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/item/weapon/storage/box/rxglasses{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/box/bodybags, /obj/item/weapon/pen, @@ -36187,36 +36187,36 @@ "bwM" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/science) "bwN" = ( /obj/machinery/light_switch{ pixel_x = 8; - pixel_y = 28 + pixel_y = 28 }, /obj/machinery/button/door{ id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 28; - req_access_txt = "47" + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 28; + req_access_txt = "47" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/science) "bwO" = ( @@ -36225,7 +36225,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -36234,7 +36234,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/donkpockets{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -36251,8 +36251,8 @@ "bwR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -36261,30 +36261,30 @@ "bwS" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "bwT" = ( /obj/machinery/door/airlock/glass_mining{ name = "Quartermaster"; - req_access_txt = "41" + req_access_txt = "41" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36297,9 +36297,9 @@ "bwU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36309,15 +36309,15 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "bwV" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36337,14 +36337,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -36354,18 +36354,18 @@ "bwX" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ dir = 1; - icon_state = "pipe-j2s"; - sortType = 3 + icon_state = "pipe-j2s"; + sortType = 3 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel, @@ -36373,7 +36373,7 @@ "bwY" = ( /obj/machinery/door/airlock/glass_security{ name = "Security Office"; - req_access_txt = "63" + req_access_txt = "63" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -36400,7 +36400,7 @@ /obj/structure/chair, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -36422,9 +36422,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -36441,9 +36441,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -36461,16 +36461,16 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -36484,36 +36484,36 @@ "bxh" = ( /obj/machinery/door/poddoor{ auto_close = 300; - id = "smindicate"; - name = "outer blast door" + id = "smindicate"; + name = "outer blast door" }, /obj/machinery/button/door{ id = "smindicate"; - name = "external door control"; - pixel_x = -26; - pixel_y = 0; - req_access_txt = "150" + name = "external door control"; + pixel_x = -26; + pixel_y = 0; + req_access_txt = "150" }, /obj/docking_port/mobile{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - roundstart_move = "syndicate_away"; - travelDir = 180; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate"; + name = "syndicate infiltrator"; + roundstart_move = "syndicate_away"; + travelDir = 180; + width = 18 }, /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/space; + width = 18 }, /turf/simulated/floor/plating, /area/shuttle/syndicate) @@ -36521,11 +36521,11 @@ /obj/machinery/computer/aifixer, /obj/machinery/requests_console{ announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = -2; - pixel_y = 30 + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 }, /obj/structure/window/reinforced{ dir = 4 @@ -36537,10 +36537,10 @@ "bxj" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; - name = "Research Monitor"; - network = list("RD","MiniSat"); - pixel_x = 0; - pixel_y = 2 + name = "Research Monitor"; + network = list("RD","MiniSat"); + pixel_x = 0; + pixel_y = 2 }, /obj/structure/table, /turf/simulated/floor/plasteel{ @@ -36555,17 +36555,17 @@ /obj/structure/rack, /obj/item/weapon/circuitboard/aicore{ pixel_x = -2; - pixel_y = 4 + pixel_y = 4 }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/crew_quarters/hor) "bxm" = ( /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 5 + dir = 5 }, /area/crew_quarters/hor) "bxn" = ( @@ -36578,14 +36578,14 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/explab) "bxp" = ( /obj/machinery/computer/rdconsole/experiment, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 1 + dir = 1 }, /area/toxins/explab) "bxq" = ( @@ -36594,26 +36594,26 @@ /obj/item/weapon/book/manual/experimentor, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/toxins/explab) "bxr" = ( /obj/structure/closet/radiation, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitecorner" + icon_state = "whitecorner" }, /area/toxins/explab) "bxs" = ( /obj/machinery/button/door{ id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_x = 25; - pixel_y = 0 + name = "Test Chamber Blast Doors"; + pixel_x = 25; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/explab) "bxt" = ( @@ -36631,16 +36631,16 @@ /obj/effect/landmark/start/depsec/science, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/security/checkpoint/science) "bxw" = ( /obj/machinery/door/airlock/glass_mining{ name = "Quartermaster"; - req_access_txt = "41" + req_access_txt = "41" }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) @@ -36659,8 +36659,8 @@ "bxA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -36673,13 +36673,13 @@ "bxB" = ( /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/checkpoint/supply) "bxC" = ( @@ -36689,7 +36689,7 @@ /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/supply) "bxD" = ( @@ -36697,27 +36697,27 @@ /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/supply) "bxE" = ( /obj/machinery/computer/secure_data, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/checkpoint/supply) "bxF" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36727,7 +36727,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -36735,13 +36735,13 @@ "bxG" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" + req_access = null; + req_access_txt = "57" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, @@ -36774,7 +36774,7 @@ "bxL" = ( /obj/machinery/camera{ c_tag = "Central Hallway South-East"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -36789,13 +36789,13 @@ "bxN" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -36804,8 +36804,8 @@ "bxO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -36814,8 +36814,8 @@ "bxP" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36851,8 +36851,8 @@ "bxU" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10; - pixel_x = 0; - initialize_directions = 10 + pixel_x = 0; + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) @@ -36863,13 +36863,13 @@ "bxW" = ( /obj/machinery/door/airlock/glass_command{ name = "Research Director"; - req_access_txt = "30" + req_access_txt = "30" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36884,7 +36884,7 @@ "bxX" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -36904,7 +36904,7 @@ "bxZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -36916,7 +36916,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -36925,8 +36925,8 @@ "byb" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -36936,26 +36936,26 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "bye" = ( @@ -36970,27 +36970,27 @@ /obj/item/weapon/clipboard, /obj/item/weapon/stamp/qm{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Server Room"; - req_access = null; - req_access_txt = "30" + req_access = null; + req_access_txt = "30" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -37002,12 +37002,12 @@ "byj" = ( /obj/machinery/door/airlock/glass_security{ name = "Security Office"; - req_access_txt = "63" + req_access_txt = "63" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -37024,7 +37024,7 @@ /obj/item/weapon/folder/yellow, /obj/item/weapon/pen{ pixel_x = 4; - pixel_y = 4 + pixel_y = 4 }, /obj/item/weapon/pen/red, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -37032,7 +37032,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "bym" = ( @@ -37053,24 +37053,24 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byo" = ( /obj/structure/table, /obj/machinery/button/door{ id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" }, /obj/machinery/button/door{ id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 5; - pixel_y = 5; - req_access_txt = "47" + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -37107,7 +37107,7 @@ /obj/item/device/aicard, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/crew_quarters/hor) "byt" = ( @@ -37117,18 +37117,18 @@ /obj/structure/displaycase/labcage, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/crew_quarters/hor) "byv" = ( /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "telelab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /obj/machinery/door/firedoor/heavy, @@ -37137,7 +37137,7 @@ "byw" = ( /obj/machinery/door/poddoor/preopen{ id = "telelab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/machinery/door/firedoor/heavy, /turf/simulated/floor/engine, @@ -37155,22 +37155,22 @@ "byz" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byA" = ( /obj/machinery/power/apc{ dir = 1; - name = "Quartermaster APC"; - pixel_y = 24 + name = "Quartermaster APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byB" = ( @@ -37178,14 +37178,14 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byC" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byD" = ( @@ -37195,7 +37195,7 @@ }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "byE" = ( @@ -37204,12 +37204,12 @@ "byF" = ( /obj/machinery/power/apc{ dir = 1; - name = "Mining Dock APC"; - pixel_y = 24 + name = "Mining Dock APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) @@ -37217,8 +37217,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -37236,17 +37236,17 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/checkpoint/supply) "byI" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/supply) "byJ" = ( @@ -37270,13 +37270,13 @@ "byM" = ( /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 + name = "Station Intercom (General)"; + pixel_x = 27 }, /obj/machinery/computer/security/mining, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/supply) "byN" = ( @@ -37288,14 +37288,14 @@ "byO" = ( /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_y = -30 + departmentType = 5; + pixel_y = -30 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -37307,7 +37307,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "byQ" = ( @@ -37316,22 +37316,22 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "byR" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "blue" + icon_state = "blue" }, /area/hallway/primary/central) "byS" = ( @@ -37340,7 +37340,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/hallway/primary/central) "byT" = ( @@ -37358,14 +37358,14 @@ "byV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "byW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = -32 + pixel_y = -32 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37375,12 +37375,12 @@ "byX" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -37397,7 +37397,7 @@ /obj/structure/grille, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/window/fulltile, /turf/simulated/floor/plating, @@ -37406,7 +37406,7 @@ /obj/structure/chair, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -37416,7 +37416,7 @@ /obj/structure/grille, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/window/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37425,8 +37425,8 @@ "bzc" = ( /obj/machinery/door/airlock/glass_medical{ id_tag = null; - name = "Recovery Room"; - req_access_txt = "0" + name = "Recovery Room"; + req_access_txt = "0" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -37439,12 +37439,12 @@ /obj/item/weapon/pen, /obj/machinery/requests_console{ announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = 30; - pixel_z = 0 + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = 30; + pixel_z = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -37453,15 +37453,15 @@ "bze" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/camera{ c_tag = "Medbay Treatment Center"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/machinery/iv_drip, /turf/simulated/floor/plasteel{ @@ -37471,7 +37471,7 @@ "bzf" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -37492,7 +37492,7 @@ "bzi" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) @@ -37513,26 +37513,26 @@ /obj/machinery/dna_scannernew, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "bzm" = ( /obj/machinery/clonepod, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "bzn" = ( /obj/machinery/computer/cloning, /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/genetics) "bzo" = ( @@ -37564,7 +37564,7 @@ /obj/structure/closet/wardrobe/genetics_white, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -37576,24 +37576,24 @@ "bzt" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 }, /turf/simulated/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/server) "bzu" = ( /obj/machinery/r_n_d/server/robotics, /turf/simulated/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/server) "bzv" = ( @@ -37602,8 +37602,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -37616,8 +37616,8 @@ }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 + name = "SERVER ROOM"; + pixel_y = 32 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -37625,8 +37625,8 @@ "bzx" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ target_temperature = 80; - dir = 2; - on = 1 + dir = 2; + on = 1 }, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/plasteel{ @@ -37636,19 +37636,19 @@ "bzy" = ( /obj/machinery/camera{ c_tag = "Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 }, /obj/machinery/power/apc{ dir = 1; - name = "Server Room APC"; - pixel_x = 0; - pixel_y = 25 + name = "Server Room APC"; + pixel_x = 0; + pixel_y = 25 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -37657,7 +37657,7 @@ "bzz" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/airalarm{ pixel_y = 25 @@ -37665,7 +37665,7 @@ /obj/structure/closet, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/checkpoint/science) "bzA" = ( @@ -37674,7 +37674,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -37682,8 +37682,8 @@ "bzB" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -37699,28 +37699,28 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/checkpoint/science) "bzD" = ( /obj/structure/table, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the RD's goons from the safety of your own office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/science) "bzE" = ( /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -37728,7 +37728,7 @@ "bzF" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) @@ -37740,7 +37740,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/central) "bzH" = ( @@ -37749,7 +37749,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/medical/sleeper) "bzI" = ( @@ -37781,7 +37781,7 @@ "bzL" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/crew_quarters/hor) "bzM" = ( @@ -37794,13 +37794,13 @@ }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/crew_quarters/hor) "bzN" = ( /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/crew_quarters/hor) "bzO" = ( @@ -37810,27 +37810,27 @@ /obj/machinery/computer/cargo, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "bzQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "bzR" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) @@ -37848,21 +37848,21 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "bzU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/sleeper) "bzV" = ( @@ -37880,7 +37880,7 @@ "bzX" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/medbay) "bzY" = ( @@ -37893,7 +37893,7 @@ /obj/machinery/door/firedoor/heavy, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -37902,8 +37902,8 @@ /obj/machinery/door/firedoor/heavy, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -37925,9 +37925,9 @@ "bAc" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37947,18 +37947,18 @@ /obj/item/device/radio/off, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/supply) "bAe" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AIW"; - location = "QM" + location = "QM" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -37969,7 +37969,7 @@ "bAg" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" + location = "AIW" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -37978,7 +37978,7 @@ "bAh" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" + location = "AIE" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -37992,14 +37992,14 @@ "bAj" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" + location = "CHE" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bAk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38012,12 +38012,12 @@ "bAm" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -38027,16 +38027,16 @@ "bAn" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Maintenance"; - req_access_txt = "48" + req_access_txt = "48" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38049,19 +38049,19 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/power/apc{ dir = 1; - name = "Cargo Security APC"; - pixel_x = 1; - pixel_y = 24 + name = "Cargo Security APC"; + pixel_x = 1; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38078,7 +38078,7 @@ /obj/machinery/light, /obj/machinery/sleeper{ icon_state = "sleeper-open"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) @@ -38089,12 +38089,12 @@ "bAs" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; - name = "Connector Port (Air Supply)" + name = "Connector Port (Air Supply)" }, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/light, /turf/simulated/floor/plasteel, @@ -38103,7 +38103,7 @@ /obj/structure/table/reinforced, /obj/item/weapon/wrench{ pixel_x = 5; - pixel_y = -5 + pixel_y = -5 }, /turf/simulated/floor/plasteel, /area/medical/sleeper) @@ -38116,7 +38116,7 @@ "bAv" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; - name = "Connector Port (Air Supply)" + name = "Connector Port (Air Supply)" }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plasteel, @@ -38130,9 +38130,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38145,27 +38145,27 @@ }, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Server Walkway"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + name = "Server Walkway"; + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/server) "bAz" = ( /obj/machinery/airalarm/server{ dir = 4; - pixel_x = -22; - pixel_y = 0 + pixel_x = -22; + pixel_y = 0 }, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Server Walkway"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + name = "Server Walkway"; + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/server) "bAA" = ( @@ -38180,7 +38180,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "Server Room"; - req_access_txt = "30" + req_access_txt = "30" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -38209,8 +38209,8 @@ "bAE" = ( /obj/machinery/camera{ c_tag = "Security Post - Science"; - dir = 4; - network = list("SS13","RD") + dir = 4; + network = list("SS13","RD") }, /obj/machinery/newscaster{ pixel_x = -30 @@ -38220,22 +38220,22 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/science) "bAF" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/security/checkpoint/science) "bAG" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/security/checkpoint/science) @@ -38244,19 +38244,19 @@ /obj/item/weapon/book/manual/wiki/security_space_law, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/science) "bAI" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38266,13 +38266,13 @@ "bAJ" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38282,17 +38282,17 @@ "bAK" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -38324,7 +38324,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bAP" = ( @@ -38332,7 +38332,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bAQ" = ( @@ -38341,7 +38341,7 @@ }, /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/engine, /area/toxins/explab) @@ -38353,21 +38353,21 @@ /obj/machinery/computer/security/mining, /obj/machinery/camera{ c_tag = "Quartermaster's Office"; - dir = 4 + dir = 4 }, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -35 + pixel_y = -35 }, /obj/machinery/status_display{ density = 0; - pixel_x = -32; - pixel_y = 0; - supply_display = 1 + pixel_x = -32; + pixel_y = 0; + supply_display = 1 }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/qm) "bAT" = ( @@ -38377,15 +38377,15 @@ "bAU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/janitor) "bAV" = ( /obj/machinery/door/window/westleft{ name = "Janitoral Delivery"; - req_access_txt = "26" + req_access_txt = "26" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -38408,7 +38408,7 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/sleeper) "bAY" = ( @@ -38450,7 +38450,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/sleeper) "bBd" = ( @@ -38468,47 +38468,47 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/sleeper) "bBe" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/sleeper) "bBf" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/newscaster{ hitstaken = 1; - pixel_x = 0; - pixel_y = -32 + pixel_x = 0; + pixel_y = -32 }, /obj/machinery/camera{ c_tag = "Security Post - Cargo"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/checkpoint/supply) "bBg" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38516,34 +38516,34 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "browncorner" + icon_state = "browncorner" }, /area/hallway/primary/central) "bBi" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bBj" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38551,21 +38551,21 @@ /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/camera{ c_tag = "Central Primary Hallway South-West"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bBl" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38575,7 +38575,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/medbay) "bBn" = ( @@ -38584,7 +38584,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -38608,7 +38608,7 @@ "bBq" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; - dir = 2 + dir = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -38616,19 +38616,19 @@ }, /obj/structure/sign/directions/engineering{ pixel_x = -32; - pixel_y = -40 + pixel_y = -40 }, /obj/structure/sign/directions/medical{ dir = 4; - icon_state = "direction_med"; - pixel_x = -32; - pixel_y = -24 + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = -24 }, /obj/structure/sign/directions/evac{ dir = 4; - icon_state = "direction_evac"; - pixel_x = -32; - pixel_y = -32 + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38656,7 +38656,7 @@ }, /obj/machinery/camera{ c_tag = "Central Primary Hallway South"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38670,8 +38670,8 @@ "bBv" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j2s"; - sortType = 22 + icon_state = "pipe-j2s"; + sortType = 22 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -38701,9 +38701,9 @@ "bBz" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -38713,31 +38713,31 @@ "bBA" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-j2" + icon_state = "pipe-j2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bBB" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "bBC" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38749,7 +38749,7 @@ "bBD" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -38757,15 +38757,15 @@ "bBE" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -38777,13 +38777,13 @@ /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/airalarm{ frequency = 1439; - locked = 0; - pixel_y = 23 + locked = 0; + pixel_y = 23 }, /obj/item/weapon/storage/firstaid/toxin, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bBG" = ( @@ -38802,8 +38802,8 @@ "bBI" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/closet/wardrobe/miner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38814,7 +38814,7 @@ "bBJ" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -38855,7 +38855,7 @@ /obj/machinery/computer/med_data, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -38865,11 +38865,11 @@ /obj/machinery/computer/crew, /obj/machinery/requests_console{ announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 0; - pixel_y = 32 + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -38880,7 +38880,7 @@ /obj/structure/disposalpipe/trunk, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -38893,27 +38893,27 @@ "bBS" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 120; + 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 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/server) "bBT" = ( /obj/machinery/r_n_d/server/core, /turf/simulated/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/server) "bBU" = ( @@ -38922,7 +38922,7 @@ }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -38932,8 +38932,8 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 + name = "SERVER ROOM"; + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple{ dir = 4 @@ -38962,7 +38962,7 @@ /obj/structure/filingcabinet, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/checkpoint/science) "bBZ" = ( @@ -38977,8 +38977,8 @@ "bCa" = ( /obj/machinery/power/apc{ dir = 2; - name = "Science Security APC"; - pixel_y = -24 + name = "Science Security APC"; + pixel_y = -24 }, /obj/structure/cable, /turf/simulated/floor/plasteel{ @@ -38989,20 +38989,20 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/checkpoint/science) "bCc" = ( /obj/machinery/computer/secure_data, /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_y = -30 + departmentType = 5; + pixel_y = -30 }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -39011,8 +39011,8 @@ "bCd" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; - sortType = 15 + icon_state = "pipe-j1s"; + sortType = 15 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39022,7 +39022,7 @@ "bCe" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39032,8 +39032,8 @@ "bCf" = ( /obj/machinery/power/apc{ dir = 8; - name = "RD Office APC"; - pixel_x = -25 + name = "RD Office APC"; + pixel_x = -25 }, /obj/structure/cable, /obj/machinery/light_switch{ @@ -39049,20 +39049,20 @@ /obj/item/weapon/cartridge/signal/toxins, /obj/item/weapon/cartridge/signal/toxins{ pixel_x = -4; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/cartridge/signal/toxins{ pixel_x = 4; - pixel_y = 6 + pixel_y = 6 }, /obj/machinery/camera{ c_tag = "Research Director's Office"; - dir = 1; - network = list("SS13","RD") + dir = 1; + network = list("SS13","RD") }, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -39071,7 +39071,7 @@ "bCh" = ( /obj/machinery/keycard_auth{ pixel_x = 0; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/light, /obj/machinery/computer/card/minor/rd, @@ -39103,8 +39103,8 @@ "bCl" = ( /obj/machinery/camera{ c_tag = "Experimentor Lab Chamber"; - dir = 1; - network = list("SS13","RD") + dir = 1; + network = list("SS13","RD") }, /obj/machinery/light, /obj/structure/sign/nosmoking_2{ @@ -39121,12 +39121,12 @@ "bCn" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39138,19 +39138,19 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "bCp" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bCq" = ( @@ -39163,9 +39163,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -39178,7 +39178,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/janitor) @@ -39191,7 +39191,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/central) "bCv" = ( @@ -39200,7 +39200,7 @@ "bCw" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -39210,8 +39210,8 @@ "bCx" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -39229,8 +39229,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, @@ -39247,7 +39247,7 @@ }, /obj/machinery/door/airlock/maintenance{ name = "Surgery Maintenance"; - req_access_txt = "45" + req_access_txt = "45" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39257,7 +39257,7 @@ "bCC" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -39269,7 +39269,7 @@ /obj/item/weapon/retractor, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 2 + dir = 2 }, /area/medical/sleeper) "bCE" = ( @@ -39283,7 +39283,7 @@ "bCF" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -39308,9 +39308,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -39343,8 +39343,8 @@ /obj/structure/closet/secure_closet/medical3, /obj/machinery/camera{ c_tag = "Medbay Storage"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -39370,7 +39370,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/bodybags{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/box/rxglasses, /turf/simulated/floor/plasteel{ @@ -39399,30 +39399,30 @@ "bCS" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/sleeper) "bCT" = ( /obj/structure/table, /obj/item/weapon/storage/belt/medical{ pixel_x = 0; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/belt/medical{ pixel_x = 0; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/belt/medical{ pixel_x = 0; - pixel_y = 2 + pixel_y = 2 }, /obj/item/clothing/tie/stethoscope, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39435,17 +39435,17 @@ "bCU" = ( /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = -30; - pixel_y = 0 + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = -30; + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Medbay South"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -39455,8 +39455,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -39475,9 +39475,9 @@ /obj/item/weapon/cigbutt, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -39500,7 +39500,7 @@ "bDa" = ( /obj/machinery/keycard_auth{ pixel_x = 24; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -39517,12 +39517,12 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -39549,7 +39549,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; - name = "3maintenance loot spawner" + name = "3maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -39561,8 +39561,8 @@ "bDi" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 32 + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 }, /turf/space, /area/space) @@ -39580,9 +39580,9 @@ /obj/item/weapon/pen, /obj/machinery/requests_console{ department = "Mining"; - departmentType = 0; - pixel_x = -30; - pixel_y = 0 + departmentType = 0; + pixel_x = -30; + pixel_y = 0 }, /obj/machinery/light{ dir = 8 @@ -39592,14 +39592,14 @@ "bDl" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -39608,9 +39608,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -39624,7 +39624,7 @@ "bDn" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -39632,28 +39632,28 @@ "bDo" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "bDp" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bDq" = ( /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /obj/item/key/janitor, @@ -39681,9 +39681,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -39694,17 +39694,17 @@ /obj/structure/table, /obj/item/device/flashlight{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /obj/item/device/flashlight{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /obj/item/device/assembly/flash/handheld, /obj/item/device/assembly/flash/handheld, /obj/machinery/ai_status_display{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -39728,23 +39728,23 @@ "bDy" = ( /obj/machinery/camera{ c_tag = "Tech Storage"; - dir = 2 + dir = 2 }, /obj/machinery/power/apc{ dir = 1; - name = "Tech Storage APC"; - pixel_y = 24 + name = "Tech Storage APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/storage/tech) "bDz" = ( /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -39752,13 +39752,13 @@ /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ dir = 4; - name = "Treatment Center APC"; - pixel_x = 26; - pixel_y = 0 + name = "Treatment Center APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39772,7 +39772,7 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/sleeper) "bDC" = ( @@ -39789,18 +39789,18 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitebluecorner" + icon_state = "whitebluecorner" }, /area/medical/sleeper) "bDE" = ( /obj/machinery/vending/wallmed{ pixel_x = 28; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/structure/closet/wardrobe/pjs, /turf/simulated/floor/plasteel{ @@ -39811,7 +39811,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "medpriv4"; - name = "privacy door" + name = "privacy door" }, /obj/structure/window/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39823,14 +39823,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bDH" = ( /obj/structure/closet/l3closet/janitor, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plasteel, /area/janitor) @@ -39876,16 +39876,16 @@ "bDO" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bDP" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Janitor" + freq = 1400; + location = "Janitor" }, /obj/structure/plasticflaps{ opacity = 1 @@ -39898,8 +39898,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -39927,7 +39927,7 @@ "bDU" = ( /obj/machinery/door/airlock/glass_command{ name = "Chief Medical Officer"; - req_access_txt = "40" + req_access_txt = "40" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39939,8 +39939,8 @@ "bDV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ sortType = 10 @@ -39951,8 +39951,8 @@ "bDW" = ( /obj/machinery/door/airlock/glass_medical{ id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" + name = "Medbay Storage"; + req_access_txt = "45" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39964,9 +39964,9 @@ "bDX" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /mob/living/simple_animal/mouse, /turf/simulated/floor/plasteel{ @@ -39976,13 +39976,13 @@ "bDY" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -39999,7 +39999,7 @@ "bEa" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -40008,13 +40008,13 @@ "bEb" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -40023,9 +40023,9 @@ "bEc" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -40034,8 +40034,8 @@ "bEd" = ( /obj/machinery/door/airlock/glass_medical{ id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" + name = "Medbay Storage"; + req_access_txt = "45" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -40058,16 +40058,16 @@ "bEf" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -40075,13 +40075,13 @@ "bEg" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/door/airlock/research{ name = "Toxins Storage"; - req_access_txt = "8" + req_access_txt = "8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -40094,7 +40094,7 @@ /obj/structure/table/glass, /obj/item/weapon/paper_bin{ pixel_x = -2; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -40130,10 +40130,10 @@ }, /obj/machinery/camera{ c_tag = "Chief Medical Office"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -40145,9 +40145,9 @@ "bEn" = ( /obj/machinery/camera{ c_tag = "Xenobiology Test Chamber"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 }, /obj/machinery/light{ dir = 1 @@ -40158,33 +40158,33 @@ /obj/machinery/portable_atmospherics/canister/toxins, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/toxins/storage) "bEp" = ( /obj/machinery/portable_atmospherics/canister/toxins, /obj/structure/sign/nosmoking_2{ pixel_x = 0; - pixel_y = 32 + pixel_y = 32 }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/toxins/storage) "bEq" = ( /obj/machinery/power/apc{ dir = 8; - name = "Misc Research APC"; - pixel_x = -25 + name = "Misc Research APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -40193,8 +40193,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -40221,18 +40221,18 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bEv" = ( /obj/structure/closet/bombcloset, /obj/machinery/light_switch{ pixel_x = 0; - pixel_y = 28 + pixel_y = 28 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bEw" = ( @@ -40242,7 +40242,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bEx" = ( @@ -40252,17 +40252,17 @@ }, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/camera{ c_tag = "Toxins Lab West"; - dir = 2; - network = list("SS13","RD"); - pixel_y = 0 + dir = 2; + network = list("SS13","RD"); + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bEy" = ( @@ -40272,13 +40272,13 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bEz" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -40290,14 +40290,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/mixing) "bEB" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bEC" = ( @@ -40307,21 +40307,21 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 5 + dir = 5 }, /area/toxins/mixing) "bEE" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -40329,15 +40329,15 @@ /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 4; - name = "4maintenance loot spawner" + name = "4maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "bEG" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -40354,37 +40354,37 @@ "bEI" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "bEJ" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/labor) "bEK" = ( /obj/machinery/computer/security/mining, /obj/machinery/camera{ c_tag = "Mining Dock"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "bEL" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -40399,8 +40399,8 @@ "bEN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -40415,7 +40415,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/toxins/mixing) "bEP" = ( @@ -40434,20 +40434,20 @@ "bER" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -40458,9 +40458,9 @@ "bET" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -40470,11 +40470,11 @@ "bEU" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/grille, /obj/structure/window/reinforced/fulltile, @@ -40483,16 +40483,16 @@ "bEV" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -40500,11 +40500,11 @@ "bEW" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/structure/window/reinforced/fulltile, @@ -40519,7 +40519,7 @@ "bEY" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/structure/window/reinforced/fulltile, @@ -40529,7 +40529,7 @@ /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/stack/cable_coil, /obj/item/weapon/stock_parts/cell/high/plus, @@ -40541,17 +40541,17 @@ "bFb" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/storage/tech) "bFc" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/effect/landmark{ name = "blobstart" @@ -40566,19 +40566,19 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bFe" = ( /obj/machinery/door/airlock/engineering{ name = "Tech Storage"; - req_access_txt = "23" + req_access_txt = "23" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -40599,21 +40599,21 @@ "bFh" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "bFi" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/janitor) @@ -40621,14 +40621,14 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bFk" = ( @@ -40639,25 +40639,25 @@ "bFl" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/power/apc{ dir = 8; - name = "Custodial Closet APC"; - pixel_x = -24 + name = "Custodial Closet APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/janitor) "bFm" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j2s"; - sortType = 6 + icon_state = "pipe-j2s"; + sortType = 6 }, /obj/structure/grille, /obj/structure/window/fulltile{ @@ -40668,18 +40668,18 @@ "bFn" = ( /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bFo" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -40695,20 +40695,20 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bFr" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bFs" = ( /obj/machinery/door/airlock/maintenance{ name = "Custodial Maintenance"; - req_access_txt = "26" + req_access_txt = "26" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -40724,7 +40724,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Operating Theatre"; - req_access_txt = "45" + req_access_txt = "45" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -40745,7 +40745,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whiteblue" + icon_state = "whiteblue" }, /area/medical/sleeper) "bFx" = ( @@ -40758,9 +40758,9 @@ "bFy" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -40769,26 +40769,26 @@ "bFz" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 1 + dir = 1 }, /area/medical/sleeper) "bFA" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -40803,21 +40803,21 @@ /obj/item/weapon/reagent_containers/blood/empty, /obj/item/weapon/reagent_containers/blood/empty{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/reagent_containers/blood/AMinus, /obj/item/weapon/reagent_containers/blood/BMinus{ pixel_x = -4; - pixel_y = 4 + pixel_y = 4 }, /obj/item/weapon/reagent_containers/blood/BPlus{ pixel_x = 1; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/reagent_containers/blood/OMinus, /obj/item/weapon/reagent_containers/blood/OPlus{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/reagent_containers/blood/random, /obj/item/weapon/reagent_containers/blood/random, @@ -40837,8 +40837,8 @@ "bFE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -40862,7 +40862,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/light_switch{ pixel_x = 28; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -40871,8 +40871,8 @@ "bFI" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/light/small{ dir = 8 @@ -40897,7 +40897,7 @@ "bFL" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -40910,7 +40910,7 @@ "bFM" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; - dir = 2 + dir = 2 }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel{ @@ -40921,11 +40921,11 @@ /obj/structure/table, /obj/item/weapon/cartridge/medical{ pixel_x = -2; - pixel_y = 6 + pixel_y = 6 }, /obj/item/weapon/cartridge/medical{ pixel_x = 6; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/cartridge/medical, /obj/item/weapon/cartridge/chemistry{ @@ -40962,7 +40962,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -40979,7 +40979,7 @@ "bFS" = ( /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/research{ name = "Research Division" @@ -41026,8 +41026,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -41062,7 +41062,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/mixing) "bGe" = ( @@ -41090,7 +41090,7 @@ /obj/machinery/computer/shuttle/mining, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/miningdock) "bGk" = ( @@ -41105,19 +41105,19 @@ "bGl" = ( /obj/item/device/assembly/prox_sensor{ pixel_x = -4; - pixel_y = 1 + pixel_y = 1 }, /obj/item/device/assembly/prox_sensor{ pixel_x = 8; - pixel_y = 9 + pixel_y = 9 }, /obj/item/device/assembly/prox_sensor{ pixel_x = 9; - pixel_y = -2 + pixel_y = -2 }, /obj/item/device/assembly/prox_sensor{ pixel_x = 0; - pixel_y = 2 + pixel_y = 2 }, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ @@ -41137,7 +41137,7 @@ "bGo" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -41151,8 +41151,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -41160,7 +41160,7 @@ "bGr" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable, /obj/structure/grille, @@ -41170,35 +41170,35 @@ "bGs" = ( /obj/machinery/camera{ c_tag = "Secure Tech Storage"; - dir = 2 + dir = 2 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/storage/tech) "bGt" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/borgupload{ pixel_x = -1; - pixel_y = 1 + pixel_y = 1 }, /obj/item/weapon/circuitboard/aiupload{ pixel_x = 2; - pixel_y = -2 + pixel_y = -2 }, /turf/simulated/floor/plasteel, /area/storage/tech) "bGu" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" + icon_state = "shock"; + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/storage/tech) @@ -41213,23 +41213,23 @@ "bGw" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/pandemic{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/circuitboard/rdconsole, /obj/item/weapon/circuitboard/rdserver{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/circuitboard/destructive_analyzer, /obj/item/weapon/circuitboard/protolathe, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/item/weapon/circuitboard/aifixer, /obj/item/weapon/circuitboard/teleporter, @@ -41252,12 +41252,12 @@ "bGy" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/mining, /obj/item/weapon/circuitboard/autolathe{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/circuitboard/arcade/battle, /turf/simulated/floor/plating, @@ -41288,8 +41288,8 @@ /obj/item/weapon/grenade/chem_grenade/cleaner, /obj/machinery/requests_console{ department = "Janitorial"; - departmentType = 1; - pixel_y = -29 + departmentType = 1; + pixel_y = -29 }, /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/plasteel, @@ -41297,14 +41297,14 @@ "bGC" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/research{ name = "Toxins Launch Room Access"; - req_access_txt = "8" + req_access_txt = "8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41328,8 +41328,8 @@ "bGF" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41341,13 +41341,13 @@ "bGG" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -41359,22 +41359,22 @@ "bGH" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bGI" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /mob/living/simple_animal/mouse, @@ -41383,52 +41383,52 @@ "bGJ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bGK" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bGL" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bGM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "bGN" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41438,13 +41438,13 @@ "bGO" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41452,14 +41452,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bGP" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -41490,7 +41490,7 @@ /obj/structure/table, /obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ pixel_x = 7; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/reagent_containers/glass/bottle/morphine, /obj/item/weapon/reagent_containers/syringe, @@ -41516,8 +41516,8 @@ /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/button/door{ id = "medpriv4"; - name = "Privacy Shutters"; - pixel_y = 25 + name = "Privacy Shutters"; + pixel_y = 25 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41532,7 +41532,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -41546,7 +41546,7 @@ "bGX" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -41573,7 +41573,7 @@ "bHb" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -41582,18 +41582,18 @@ "bHc" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -41607,17 +41607,17 @@ "bHe" = ( /obj/machinery/power/apc{ dir = 8; - name = "Toxins Storage APC"; - pixel_x = -25 + name = "Toxins Storage APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/camera{ c_tag = "Toxins Storage"; - dir = 4; - network = list("SS13","RD") + dir = 4; + network = list("SS13","RD") }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -41637,9 +41637,9 @@ "bHg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -41648,7 +41648,7 @@ "bHh" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -41661,8 +41661,8 @@ "bHj" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -41677,7 +41677,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bHl" = ( @@ -41685,14 +41685,14 @@ /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bHm" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/research{ name = "Toxins Lab"; - req_access_txt = "8" + req_access_txt = "8" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -41712,13 +41712,13 @@ "bHp" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -41727,8 +41727,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -41751,7 +41751,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/toxins/mixing) "bHt" = ( @@ -41761,7 +41761,7 @@ "bHu" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /obj/item/device/radio/intercom{ pixel_y = 25 @@ -41777,16 +41777,16 @@ }, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins"); - pixel_x = 30; - pixel_y = 0 + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 30; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bHw" = ( @@ -41794,7 +41794,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/toxins/test_area) "bHx" = ( @@ -41810,25 +41810,25 @@ }, /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 + name = "Station Intercom (General)"; + pixel_x = 27 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/miningdock) "bHz" = ( /obj/item/weapon/ore/iron, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/miningdock) "bHA" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/miningdock) "bHB" = ( @@ -41865,19 +41865,19 @@ "bHG" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/crew{ pixel_x = -1; - pixel_y = 1 + pixel_y = 1 }, /obj/item/weapon/circuitboard/card{ pixel_x = 2; - pixel_y = -2 + pixel_y = -2 }, /obj/item/weapon/circuitboard/communications{ pixel_x = 5; - pixel_y = -5 + pixel_y = -5 }, /obj/machinery/light/small{ dir = 8 @@ -41887,48 +41887,48 @@ "bHH" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/storage/tech) "bHI" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Tech Storage"; - req_access_txt = "19;23" + req_access_txt = "19;23" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/storage/tech) "bHJ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/plating, /area/storage/tech) "bHK" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -41936,13 +41936,13 @@ "bHL" = ( /obj/machinery/camera{ c_tag = "Research Division South"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/door/firedoor/heavy, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -41960,19 +41960,19 @@ "bHN" = ( /obj/machinery/requests_console{ department = "Tech storage"; - pixel_x = 0; - pixel_y = -32 + pixel_x = 0; + pixel_y = -32 }, /turf/simulated/floor/plating, /area/storage/tech) "bHO" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /obj/item/device/multitool, /obj/item/clothing/glasses/meson, @@ -41982,7 +41982,7 @@ "bHP" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bHQ" = ( @@ -41993,22 +41993,22 @@ /obj/structure/disposalpipe/segment, /obj/machinery/camera{ c_tag = "Aft Primary Hallway 2"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bHS" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -42016,7 +42016,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "medpriv1"; - name = "privacy door" + name = "privacy door" }, /obj/structure/window/fulltile, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -42027,24 +42027,24 @@ "bHU" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bHV" = ( /obj/machinery/power/apc{ dir = 8; - name = "Medbay Maintenance APC"; - pixel_x = -24 + name = "Medbay Maintenance APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -42069,9 +42069,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -42088,12 +42088,12 @@ "bIa" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel{ @@ -42104,7 +42104,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -42112,11 +42112,11 @@ "bIc" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 1 + dir = 1 }, /area/medical/sleeper) "bId" = ( @@ -42125,9 +42125,9 @@ }, /obj/machinery/camera{ c_tag = "Surgery Operating"; - dir = 1; - network = list("SS13"); - pixel_x = 22 + dir = 1; + network = list("SS13"); + pixel_x = 22 }, /obj/machinery/light, /turf/simulated/floor/plasteel{ @@ -42138,39 +42138,39 @@ /obj/structure/disposalpipe/segment, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 + layer = 3; + pixel_x = -32; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bIf" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/doorButtons/access_button{ idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "39" + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "39" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/virology{ autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39" + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -42180,18 +42180,18 @@ "bIg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction{ dir = 2; - icon_state = "pipe-j2s"; - sortType = 13 + icon_state = "pipe-j2s"; + sortType = 13 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -42204,14 +42204,14 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -42224,12 +42224,12 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/firstaid/o2, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42250,21 +42250,21 @@ /obj/structure/table, /obj/machinery/requests_console{ announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = -30; - pixel_z = 0 + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = -30; + pixel_z = 0 }, /obj/item/weapon/storage/firstaid/fire{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42274,21 +42274,21 @@ /obj/structure/table, /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 }, /obj/item/weapon/storage/firstaid/toxin{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/firstaid/toxin, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42299,7 +42299,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/box/syringes, /turf/simulated/floor/plasteel{ @@ -42310,12 +42310,12 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/brute{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/firstaid/brute, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42331,9 +42331,9 @@ "bIp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42350,7 +42350,7 @@ "bIr" = ( /obj/machinery/door/airlock/medical{ name = "Patient Room"; - req_access_txt = "5" + req_access_txt = "5" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -42365,13 +42365,13 @@ }, /obj/machinery/door/airlock/maintenance{ name = "Xenobiology Maintenance"; - req_access_txt = "55" + req_access_txt = "55" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -42384,14 +42384,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -42406,17 +42406,17 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42437,7 +42437,7 @@ /obj/structure/closet/secure_closet/CMO, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -42446,8 +42446,8 @@ "bIx" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" + icon_state = "shock"; + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/toxins/xenobiology) @@ -42488,7 +42488,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "whitehall" + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -42496,12 +42496,12 @@ "bIE" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42512,8 +42512,8 @@ "bIF" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel, @@ -42522,7 +42522,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -42536,16 +42536,16 @@ "bII" = ( /obj/item/weapon/storage/secure/safe{ pixel_x = 5; - pixel_y = 29 + pixel_y = 29 }, /obj/machinery/camera{ c_tag = "Virology Break Room" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42556,21 +42556,21 @@ /obj/item/weapon/reagent_containers/blood/empty, /obj/item/weapon/reagent_containers/blood/empty{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/reagent_containers/blood/AMinus, /obj/item/weapon/reagent_containers/blood/BMinus{ pixel_x = -4; - pixel_y = 4 + pixel_y = 4 }, /obj/item/weapon/reagent_containers/blood/BPlus{ pixel_x = 1; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/reagent_containers/blood/OMinus, /obj/item/weapon/reagent_containers/blood/OPlus{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/reagent_containers/blood/random, /obj/item/weapon/reagent_containers/blood/random, @@ -42585,26 +42585,26 @@ "bIK" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/virology) "bIL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42614,8 +42614,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ pixel_x = 32 @@ -42650,9 +42650,9 @@ "bIQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -42668,9 +42668,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -42679,7 +42679,7 @@ "bIS" = ( /obj/machinery/door/airlock/research{ name = "Toxins Launch Room"; - req_access_txt = "8" + req_access_txt = "8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -42697,12 +42697,12 @@ "bIU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/toxins/mixing) "bIV" = ( @@ -42717,13 +42717,13 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bIX" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" + name = "BOMB RANGE" }, /turf/simulated/wall, /area/toxins/test_area) @@ -42731,59 +42731,59 @@ /obj/structure/chair, /turf/simulated/floor/plating/airless{ dir = 9; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bIZ" = ( /obj/structure/chair, /turf/simulated/floor/plating/airless{ dir = 5; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bJa" = ( /obj/item/device/flashlight/lamp, /turf/simulated/floor/plating/airless{ dir = 1; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bJb" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" + req_access = null; + req_access_txt = "48" }, /turf/simulated/floor/plating, /area/quartermaster/miningdock) "bJc" = ( /obj/machinery/door/airlock/shuttle{ name = "Mining Shuttle Airlock"; - req_access_txt = "48" + req_access_txt = "48" }, /obj/docking_port/mobile{ dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - travelDir = 90; - width = 7 + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + travelDir = 90; + width = 7 }, /obj/docking_port/stationary{ dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - width = 7 + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 }, /turf/simulated/floor/plating, /area/shuttle/labor) "bJd" = ( /obj/machinery/door/airlock/glass_mining{ name = "Mining Dock"; - req_access_txt = "48" + req_access_txt = "48" }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) @@ -42799,23 +42799,23 @@ "bJg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/storage/tech) "bJh" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/robotics{ pixel_x = -2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/circuitboard/mecha_control{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /turf/simulated/floor/plasteel, /area/storage/tech) @@ -42833,14 +42833,14 @@ "bJk" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/cloning{ pixel_x = 0 }, /obj/item/weapon/circuitboard/med_data{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/circuitboard/clonescanner, /obj/item/weapon/circuitboard/clonepod, @@ -42850,34 +42850,34 @@ "bJl" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/powermonitor{ pixel_x = -2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/circuitboard/stationalert{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/circuitboard/atmos_alert{ pixel_x = 3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plating, /area/storage/tech) "bJm" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/circuitboard/secure_data{ pixel_x = -2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/circuitboard/security{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -42890,7 +42890,7 @@ "bJo" = ( /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 1 + dir = 1 }, /area/medical/research{ name = "Research Division" @@ -42902,7 +42902,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bJq" = ( @@ -42911,9 +42911,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -42929,7 +42929,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 1 + dir = 1 }, /area/medical/research{ name = "Research Division" @@ -42937,8 +42937,8 @@ "bJs" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42951,8 +42951,8 @@ "bJt" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42969,13 +42969,13 @@ "bJv" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42988,16 +42988,16 @@ "bJw" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -43008,14 +43008,14 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "bluecorner" + icon_state = "bluecorner" }, /area/hallway/primary/central) "bJy" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -43029,7 +43029,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 1 + pixel_y = 1 }, /obj/machinery/light{ dir = 8 @@ -43037,7 +43037,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bJA" = ( @@ -43085,7 +43085,7 @@ "bJH" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/shieldwallgen{ req_access = list(55) @@ -43096,19 +43096,19 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -43117,11 +43117,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -43131,15 +43131,15 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -43147,18 +43147,18 @@ "bJL" = ( /obj/machinery/door/window/southleft{ dir = 1; - name = "Test Chamber"; - req_access_txt = "55" + name = "Test Chamber"; + req_access_txt = "55" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) @@ -43166,11 +43166,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -43181,7 +43181,7 @@ "bJO" = ( /obj/machinery/door/airlock/research{ name = "Testing Lab"; - req_access_txt = "47" + req_access_txt = "47" }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) @@ -43212,7 +43212,7 @@ }, /turf/simulated/wall/shuttle{ dir = 1; - icon_state = "diagonalWall3" + icon_state = "diagonalWall3" }, /area/shuttle/syndicate) "bJT" = ( @@ -43258,10 +43258,10 @@ }, /obj/machinery/requests_console{ department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 }, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ @@ -43271,19 +43271,19 @@ "bJX" = ( /obj/item/device/assembly/signaler{ pixel_x = 0; - pixel_y = 8 + pixel_y = 8 }, /obj/item/device/assembly/signaler{ pixel_x = -8; - pixel_y = 5 + pixel_y = 5 }, /obj/item/device/assembly/signaler{ pixel_x = 6; - pixel_y = 5 + pixel_y = 5 }, /obj/item/device/assembly/signaler{ pixel_x = -2; - pixel_y = -2 + pixel_y = -2 }, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ @@ -43299,19 +43299,19 @@ "bJZ" = ( /obj/item/device/assembly/timer{ pixel_x = 5; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/assembly/timer{ pixel_x = -4; - pixel_y = 2 + pixel_y = 2 }, /obj/item/device/assembly/timer{ pixel_x = 6; - pixel_y = -4 + pixel_y = -4 }, /obj/item/device/assembly/timer{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ @@ -43321,9 +43321,9 @@ "bKa" = ( /obj/machinery/power/apc{ dir = 4; - name = "Toxins Lab APC"; - pixel_x = 26; - pixel_y = 0 + name = "Toxins Lab APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/structure/cable, /turf/simulated/floor/plasteel{ @@ -43333,8 +43333,8 @@ "bKb" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -43343,18 +43343,18 @@ "bKc" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/toxins/mixing) "bKd" = ( /obj/machinery/camera{ c_tag = "Toxins Launch Room Access"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/toxins/mixing) "bKe" = ( @@ -43365,7 +43365,7 @@ "bKf" = ( /obj/machinery/door/window/southleft{ name = "Mass Driver Door"; - req_access_txt = "7" + req_access_txt = "7" }, /turf/simulated/floor/plasteel{ icon_state = "loadingarea" @@ -43380,7 +43380,7 @@ }, /turf/simulated/floor/plating/airless{ dir = 9; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bKi" = ( @@ -43389,13 +43389,13 @@ }, /turf/simulated/floor/plating/airless{ dir = 5; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bKj" = ( /obj/machinery/camera{ c_tag = "Mining Dock External"; - dir = 8 + dir = 8 }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plasteel{ @@ -43407,23 +43407,23 @@ /obj/item/weapon/ore/silver, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/quartermaster/miningdock) "bKl" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "brown" + icon_state = "brown" }, /area/quartermaster/miningdock) "bKm" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 }, /turf/simulated/wall, /area/quartermaster/miningdock) @@ -43433,7 +43433,7 @@ }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/pickaxe{ pixel_x = 5 @@ -43458,7 +43458,7 @@ "bKr" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable, /obj/structure/grille, @@ -43468,11 +43468,11 @@ "bKs" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/structure/cable, @@ -43558,13 +43558,13 @@ "bKD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -43587,13 +43587,13 @@ "bKG" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/sign/securearea{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43606,9 +43606,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43618,14 +43618,14 @@ "bKI" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; - sortType = 11 + icon_state = "pipe-j1s"; + sortType = 11 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43639,9 +43639,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -43652,13 +43652,13 @@ /obj/effect/decal/cleanable/cobweb2, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/apc{ dir = 4; - name = "Medbay APC"; - pixel_x = 24; - pixel_y = 0 + name = "Medbay APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -43666,18 +43666,18 @@ "bKL" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -43690,7 +43690,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -43699,7 +43699,7 @@ "bKN" = ( /obj/machinery/door/airlock/medical{ name = "Patient Room 2"; - req_access_txt = "5" + req_access_txt = "5" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43717,7 +43717,7 @@ "bKP" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -43730,7 +43730,7 @@ }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43746,12 +43746,12 @@ "bKS" = ( /obj/machinery/power/apc{ dir = 1; - name = "CM Office APC"; - pixel_y = 24 + name = "CM Office APC"; + pixel_y = 24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43767,7 +43767,7 @@ "bKU" = ( /obj/machinery/door/airlock/engineering{ name = "Construction Area"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -43777,17 +43777,17 @@ "bKV" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -43795,48 +43795,48 @@ /obj/item/weapon/wrench, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bKX" = ( /obj/machinery/button/door{ id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 0; - pixel_y = -2; - req_access_txt = "55" + name = "Test Chamber Blast Doors"; + pixel_x = 0; + pixel_y = -2; + req_access_txt = "55" }, /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bKY" = ( /obj/machinery/computer/security/telescreen{ name = "Test Chamber Moniter"; - network = list("Xeno"); - pixel_x = 0; - pixel_y = 2 + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 }, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bKZ" = ( @@ -43849,28 +43849,28 @@ }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bLa" = ( /obj/machinery/door/window/southleft{ name = "Test Chamber"; - req_access_txt = "55" + req_access_txt = "55" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bLb" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bLc" = ( @@ -43882,27 +43882,27 @@ /obj/structure/table, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bLd" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/doorButtons/access_button{ idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = -28; - req_access_txt = "39" + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/virology) "bLe" = ( @@ -43912,8 +43912,8 @@ "bLf" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump{ on = 1 @@ -43925,7 +43925,7 @@ "bLg" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -43949,44 +43949,44 @@ "bLj" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = -32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 }, /turf/simulated/floor/plating, /area/toxins/mixing) "bLk" = ( /obj/machinery/mass_driver{ dir = 4; - id = "toxinsdriver" + id = "toxinsdriver" }, /turf/simulated/floor/plating, /area/toxins/mixing) "bLl" = ( /obj/machinery/door/poddoor{ id = "toxinsdriver"; - name = "toxins launcher bay door" + name = "toxins launcher bay door" }, /turf/simulated/floor/plating, /area/toxins/mixing) "bLm" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/toxins/mixing) "bLn" = ( /turf/simulated/floor/plating/airless{ dir = 4; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bLo" = ( /turf/simulated/floor/plating/airless{ dir = 8; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bLp" = ( @@ -43996,31 +43996,31 @@ "bLq" = ( /turf/indestructible{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" + icon_state = "riveted"; + name = "hyper-reinforced wall" }, /area/toxins/test_area) "bLr" = ( /obj/machinery/camera{ active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 8; - invuln = 1; - light = null; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 }, /obj/item/target/alien{ anchored = 1 }, /turf/simulated/floor/plating{ dir = 4; - icon_state = "warnplate"; - luminosity = 2; - nitrogen = 0.01; - oxygen = 0.01 + icon_state = "warnplate"; + luminosity = 2; + nitrogen = 0.01; + oxygen = 0.01 }, /area/toxins/test_area) "bLs" = ( @@ -44034,7 +44034,7 @@ "bLu" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, @@ -44047,8 +44047,8 @@ "bLw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44086,11 +44086,11 @@ "bLA" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = 1; - pixel_y = -1 + pixel_y = -1 }, /obj/item/clothing/gloves/color/yellow, /obj/item/device/t_scanner, @@ -44106,7 +44106,7 @@ "bLC" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44125,7 +44125,7 @@ }, /obj/machinery/door/airlock/maintenance{ name = "Construction Area Maintenance"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44151,7 +44151,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 5 + dir = 5 }, /area/hallway/primary/aft) "bLI" = ( @@ -44188,14 +44188,14 @@ "bLO" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance"; - req_access_txt = "24" + req_access_txt = "24" }, /turf/simulated/floor/plating, /area/atmos) @@ -44219,9 +44219,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -44241,8 +44241,8 @@ /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/button/door{ id = "medpriv1"; - name = "Privacy Shutters"; - pixel_y = -25 + name = "Privacy Shutters"; + pixel_y = -25 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44257,9 +44257,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44282,8 +44282,8 @@ "bLZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -44301,9 +44301,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44313,16 +44313,16 @@ "bMc" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance"; - req_access_txt = "5" + req_access_txt = "5" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44335,14 +44335,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44352,14 +44352,14 @@ "bMe" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/junction, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -44380,16 +44380,16 @@ "bMg" = ( /obj/machinery/power/apc{ dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 + name = "Xenobiology APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable, /turf/simulated/floor/plasteel{ @@ -44400,9 +44400,9 @@ /obj/structure/chair/stool, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44422,9 +44422,9 @@ "bMk" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44433,7 +44433,7 @@ "bMl" = ( /obj/machinery/processor{ desc = "A machine used to process slimes and retrieve their extract."; - name = "Slime Processor" + name = "Slime Processor" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44443,7 +44443,7 @@ /obj/machinery/monkey_recycler, /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44454,7 +44454,7 @@ /obj/machinery/reagentgrinder, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44470,7 +44470,7 @@ /obj/structure/closet/l3closet/scientist, /obj/machinery/light_switch{ pixel_x = 0; - pixel_y = 28 + pixel_y = 28 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44497,18 +44497,18 @@ "bMt" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/engine/vacuum, /area/toxins/mixing) "bMu" = ( /obj/machinery/door/poddoor{ id = "mixvent"; - name = "Mixer Room Vent" + name = "Mixer Room Vent" }, /turf/simulated/floor/engine/vacuum, /area/toxins/mixing) @@ -44521,40 +44521,40 @@ "bMw" = ( /obj/machinery/sparker{ dir = 2; - id = "mixingsparker"; - pixel_x = 25 + id = "mixingsparker"; + pixel_x = 25 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - external_pressure_bound = 0; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, /turf/simulated/floor/engine/vacuum, /area/toxins/mixing) "bMx" = ( /obj/machinery/airlock_sensor{ id_tag = "tox_airlock_sensor"; - master_tag = "tox_airlock_control"; - pixel_y = 24 + master_tag = "tox_airlock_control"; + pixel_y = 24 }, /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/engine, /area/toxins/mixing) "bMy" = ( /obj/machinery/atmospherics/components/binary/valve{ dir = 4; - name = "mix to port" + name = "mix to port" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bMz" = ( @@ -44564,17 +44564,17 @@ /obj/machinery/meter, /obj/machinery/embedded_controller/radio/airlock_controller{ airpump_tag = "tox_airlock_pump"; - exterior_door_tag = "tox_airlock_exterior"; - id_tag = "tox_airlock_control"; - interior_door_tag = "tox_airlock_interior"; - pixel_x = -24; - pixel_y = 0; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor" + exterior_door_tag = "tox_airlock_exterior"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warnwhitecorner" + icon_state = "warnwhitecorner" }, /area/toxins/mixing) "bMA" = ( @@ -44583,7 +44583,7 @@ }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bMB" = ( @@ -44602,7 +44602,7 @@ }, /turf/simulated/floor/plating/airless{ dir = 10; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bME" = ( @@ -44611,27 +44611,27 @@ }, /turf/simulated/floor/plating/airless{ dir = 6; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bMF" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/structure/window/reinforced{ dir = 1; - layer = 2.9 + layer = 2.9 }, /turf/simulated/floor/plating/airless, /area/shuttle/labor) "bMG" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -44688,8 +44688,8 @@ "bMO" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -44697,7 +44697,7 @@ "bMP" = ( /obj/machinery/firealarm{ dir = 2; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -44717,8 +44717,8 @@ }, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Distro to Waste"; - on = 0 + name = "Distro to Waste"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -44731,8 +44731,8 @@ }, /obj/machinery/meter{ frequency = 1441; - id_tag = "waste_meter"; - name = "Waste Loop" + id_tag = "waste_meter"; + name = "Waste Loop" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -44748,23 +44748,23 @@ }, /obj/machinery/meter{ frequency = 1441; - id_tag = "distro_meter"; - name = "Distribution Loop" + id_tag = "distro_meter"; + name = "Distribution Loop" }, /turf/simulated/floor/plasteel, /area/atmos) "bMW" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10; - initialize_directions = 10 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/atmos) "bMX" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Air to Distro"; - on = 1 + name = "Air to Distro"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -44817,12 +44817,12 @@ "bNg" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -44831,16 +44831,16 @@ /obj/machinery/computer/pandemic, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bNi" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44850,7 +44850,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_virology{ name = "Isolation A"; - req_access_txt = "39" + req_access_txt = "39" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44866,7 +44866,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_virology{ name = "Isolation B"; - req_access_txt = "39" + req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -44876,7 +44876,7 @@ "bNm" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/toxins/misc_lab) "bNn" = ( @@ -44885,13 +44885,13 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44906,9 +44906,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44932,8 +44932,8 @@ /obj/structure/table, /obj/item/stack/sheet/glass{ amount = 50; - pixel_x = 3; - pixel_y = 3 + pixel_x = 3; + pixel_y = 3 }, /obj/item/stack/sheet/metal{ amount = 50 @@ -44943,14 +44943,14 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bNr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Xenobiology Lab"; - req_access_txt = "55" + req_access_txt = "55" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -44965,7 +44965,7 @@ "bNs" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44977,65 +44977,65 @@ "bNu" = ( /obj/machinery/door/airlock/glass_research{ autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" + frequency = 1449; + glass = 1; + heat_proof = 1; + 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/toxins/mixing) "bNv" = ( /obj/machinery/door/airlock/glass_research{ autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" + frequency = 1449; + glass = 1; + heat_proof = 1; + 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/toxins/mixing) "bNw" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ dir = 2; - frequency = 1449; - id = "tox_airlock_pump" + frequency = 1449; + id = "tox_airlock_pump" }, /turf/simulated/floor/engine, /area/toxins/mixing) "bNx" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bNy" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bNz" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Toxins Lab East"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bNA" = ( @@ -45046,7 +45046,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -45060,7 +45060,7 @@ }, /turf/simulated/floor/plating/airless{ dir = 10; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bNE" = ( @@ -45069,14 +45069,14 @@ }, /turf/simulated/floor/plating/airless{ dir = 6; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bNF" = ( /obj/item/device/flashlight/lamp, /turf/simulated/floor/plating/airless{ dir = 2; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/toxins/test_area) "bNG" = ( @@ -45100,7 +45100,7 @@ "bNL" = ( /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plating, /area/construction) @@ -45111,8 +45111,8 @@ "bNN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -45120,19 +45120,19 @@ "bNO" = ( /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "caution" + icon_state = "caution" }, /area/hallway/primary/aft) "bNP" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -45152,16 +45152,16 @@ }, /obj/machinery/camera{ c_tag = "Atmospherics Monitoring"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 5 + dir = 5 }, /area/atmos) "bNS" = ( @@ -45170,16 +45170,16 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/atmos) "bNT" = ( /obj/machinery/camera{ c_tag = "Atmospherics North West"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/light{ dir = 8 @@ -45203,9 +45203,9 @@ "bNW" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -45214,8 +45214,8 @@ "bNX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -45232,7 +45232,7 @@ "bNZ" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/components/unary/vent_pump{ on = 1 @@ -45242,7 +45242,7 @@ "bOa" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -45256,8 +45256,8 @@ "bOc" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Mix to Distro"; - on = 0 + name = "Mix to Distro"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -45267,7 +45267,7 @@ "bOe" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8; - initialize_directions = 11 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, @@ -45276,7 +45276,7 @@ /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10; - initialize_directions = 10 + initialize_directions = 10 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -45287,8 +45287,8 @@ }, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Mix to Incinerator"; - on = 0 + name = "Mix to Incinerator"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -45314,7 +45314,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/toxins/misc_lab) "bOl" = ( @@ -45337,7 +45337,7 @@ }, /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -45346,10 +45346,10 @@ "bOo" = ( /obj/item/device/radio/intercom{ dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 }, /turf/simulated/floor/plasteel, /area/tcommsat/computer) @@ -45357,19 +45357,19 @@ /obj/structure/closet/emcloset, /obj/machinery/camera{ c_tag = "Virology Airlock"; - dir = 2; - network = list("SS13") + dir = 2; + network = list("SS13") }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 5 + dir = 5 }, /area/medical/virology) "bOq" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -45398,18 +45398,18 @@ /obj/structure/rack, /obj/item/clothing/mask/gas{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /obj/machinery/airalarm{ dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 + locked = 0; + pixel_x = -23; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) @@ -45422,14 +45422,14 @@ "bOw" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/structure/closet, /obj/item/pipe{ dir = 4; - icon_state = "mixer"; - name = "gas mixer fitting"; - pipe_type = 14 + icon_state = "mixer"; + name = "gas mixer fitting"; + pipe_type = 14 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -45469,7 +45469,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "whitehall"; - dir = 1 + dir = 1 }, /area/medical/research{ name = "Research Division" @@ -45480,13 +45480,13 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bOC" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/tcommsat/computer) @@ -45499,13 +45499,13 @@ "bOE" = ( /obj/machinery/sparker{ dir = 2; - id = "mixingsparker"; - pixel_x = 25 + id = "mixingsparker"; + pixel_x = 25 }, /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 4; - frequency = 1441; - id = "air_in" + frequency = 1441; + id = "air_in" }, /turf/simulated/floor/engine/vacuum, /area/toxins/mixing) @@ -45515,7 +45515,7 @@ }, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/engine, /area/toxins/mixing) @@ -45523,11 +45523,11 @@ /obj/machinery/light, /obj/machinery/atmospherics/components/binary/valve{ dir = 4; - name = "port to mix" + name = "port to mix" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/toxins/mixing) "bOH" = ( @@ -45537,19 +45537,19 @@ /obj/machinery/meter, /obj/machinery/button/door{ id = "mixvent"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access_txt = "7" + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" }, /obj/machinery/button/ignition{ id = "mixingsparker"; - pixel_x = -25; - pixel_y = -5 + pixel_x = -25; + pixel_y = -5 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhitecorner" + icon_state = "warnwhitecorner" }, /area/toxins/mixing) "bOI" = ( @@ -45558,7 +45558,7 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/mixing) "bOJ" = ( @@ -45598,12 +45598,12 @@ "bOO" = ( /obj/machinery/power/apc{ dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 + name = "Engineering Security APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/newscaster{ pixel_y = 32 @@ -45613,14 +45613,14 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 9 + dir = 9 }, /area/security/checkpoint/engineering) "bOP" = ( /obj/structure/table/glass, /obj/structure/reagent_dispensers/virusfood{ density = 0; - pixel_x = -30 + pixel_x = -30 }, /obj/item/weapon/book/manual/wiki/infections{ pixel_y = 7 @@ -45630,7 +45630,7 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bOQ" = ( @@ -45639,27 +45639,27 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/hallway/primary/aft) "bOR" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "bOS" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "loadingarea" + icon_state = "loadingarea" }, /area/atmos) "bOT" = ( @@ -45671,12 +45671,12 @@ }, /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" + freq = 1400; + location = "Atmospherics" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/atmos) "bOU" = ( @@ -45696,17 +45696,17 @@ /obj/machinery/computer/atmos_control, /obj/machinery/requests_console{ department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 4 + dir = 4 }, /area/atmos) "bOX" = ( @@ -45722,8 +45722,8 @@ "bOZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -45742,7 +45742,7 @@ "bPb" = ( /obj/machinery/door/airlock/glass_research{ name = "Firing Range"; - req_access_txt = "47" + req_access_txt = "47" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -45752,17 +45752,17 @@ "bPc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/atmos) "bPd" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Waste In"; - on = 1 + name = "Waste In"; + on = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -45776,8 +45776,8 @@ "bPf" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Air to Mix"; - on = 0 + name = "Air to Mix"; + on = 0 }, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 @@ -45787,8 +45787,8 @@ "bPg" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix Outlet Pump"; - on = 0 + name = "Mix Outlet Pump"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -45804,12 +45804,12 @@ "bPi" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "green" + icon_state = "green" }, /area/atmos) "bPj" = ( @@ -45826,33 +45826,33 @@ }, /turf/simulated/floor/engine{ name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + nitrogen = 0.01; + oxygen = 0.01 }, /area/atmos) "bPl" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "mix_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + id_tag = "mix_in"; + 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 + nitrogen = 0.01; + oxygen = 0.01 }, /area/atmos) "bPm" = ( /turf/simulated/floor/engine{ name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + nitrogen = 0.01; + oxygen = 0.01 }, /area/atmos) "bPn" = ( @@ -45864,7 +45864,7 @@ /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; - pixel_y = 6 + pixel_y = 6 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -45882,27 +45882,27 @@ }, /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/virology) "bPr" = ( /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/closet/l3closet, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/virology) "bPs" = ( @@ -45912,7 +45912,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bPt" = ( @@ -45927,9 +45927,9 @@ "bPu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -45939,8 +45939,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -45955,7 +45955,7 @@ /obj/machinery/disposal/bin, /obj/structure/sign/deathsposal{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -46011,13 +46011,13 @@ "bPC" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -46035,7 +46035,7 @@ /obj/structure/table, /obj/item/weapon/extinguisher{ pixel_x = 4; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/extinguisher, /turf/simulated/floor/plasteel{ @@ -46048,7 +46048,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bPG" = ( @@ -46065,7 +46065,7 @@ /obj/machinery/light, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -46075,14 +46075,14 @@ /obj/structure/table, /obj/machinery/requests_console{ department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 }, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ @@ -46099,7 +46099,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/box/syringes, /turf/simulated/floor/plasteel{ @@ -46117,17 +46117,17 @@ }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/toxins/misc_lab) "bPM" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/toxins/misc_lab) "bPN" = ( @@ -46167,7 +46167,7 @@ "bPV" = ( /obj/machinery/door/airlock/maintenance{ name = "Maint Bar Access"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/structure/barricade/wooden{ name = "wooden barricade (CLOSED)" @@ -46187,7 +46187,7 @@ /obj/structure/girder, /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -46204,17 +46204,17 @@ "bQb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/tcommsat/computer) "bQc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plating, /area/construction) @@ -46231,29 +46231,29 @@ }, /obj/machinery/button/door{ desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "10" + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/item/device/radio/off, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/engineering) "bQf" = ( /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 5 + dir = 5 }, /area/hallway/primary/aft) "bQg" = ( @@ -46270,8 +46270,8 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + layer = 2.9; + name = "atmos blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -46295,7 +46295,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 4 + dir = 4 }, /area/atmos) "bQm" = ( @@ -46322,8 +46322,8 @@ "bQp" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -46333,20 +46333,20 @@ "bQq" = ( /obj/machinery/camera{ c_tag = "Security Post - Engineering"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 + name = "Station Intercom (General)"; + pixel_x = 27 }, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/engineering) "bQr" = ( @@ -46356,8 +46356,8 @@ "bQs" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix to Filter"; - on = 1 + name = "Mix to Filter"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -46400,14 +46400,14 @@ "bQz" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "mix_in"; - name = "Gas Mix Tank Control"; - output_tag = "mix_in"; - sensors = list("mix_sensor" = "Tank") + input_tag = "mix_in"; + name = "Gas Mix Tank Control"; + output_tag = "mix_in"; + sensors = list("mix_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 4 + dir = 4 }, /area/atmos) "bQA" = ( @@ -46418,12 +46418,12 @@ "bQB" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "mix_sensor" + id_tag = "mix_sensor" }, /turf/simulated/floor/engine{ name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + nitrogen = 0.01; + oxygen = 0.01 }, /area/atmos) "bQC" = ( @@ -46432,8 +46432,8 @@ }, /turf/simulated/floor/engine{ name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + nitrogen = 0.01; + oxygen = 0.01 }, /area/atmos) "bQD" = ( @@ -46446,7 +46446,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/donkpockets{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/machinery/newscaster{ pixel_x = -30 @@ -46473,18 +46473,18 @@ /obj/structure/closet/l3closet, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/medical/virology) "bQI" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) @@ -46499,7 +46499,7 @@ "bQK" = ( /obj/machinery/door/airlock/glass_command{ name = "Control Room"; - req_access_txt = "19; 61" + req_access_txt = "19; 61" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -46509,43 +46509,43 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/xenobiology) "bQM" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/xenobiology) "bQN" = ( /obj/machinery/door/firedoor, /obj/machinery/light{ icon_state = "tube1"; - dir = 4 + dir = 4 }, /obj/machinery/camera{ c_tag = "Xenobiology North"; - dir = 8; - network = list("SS13","RD") + dir = 8; + network = list("SS13","RD") }, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/toxins/xenobiology) "bQO" = ( /obj/structure/closet/bombcloset, /obj/machinery/light_switch{ pixel_x = -20; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) @@ -46559,8 +46559,8 @@ /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -46573,19 +46573,19 @@ /obj/item/clothing/ears/earmuffs, /obj/machinery/camera{ c_tag = "Testing Lab North"; - dir = 2; - network = list("SS13","RD") + dir = 2; + network = list("SS13","RD") }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) "bQS" = ( /obj/machinery/requests_console{ department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) @@ -46604,7 +46604,7 @@ "bQV" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - req_access = null + req_access = null }, /turf/simulated/floor/engine, /area/toxins/misc_lab) @@ -46625,7 +46625,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bQZ" = ( @@ -46637,7 +46637,7 @@ }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bRb" = ( @@ -46660,7 +46660,7 @@ /obj/structure/table/wood, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 4; - name = "4maintenance loot spawner" + name = "4maintenance loot spawner" }, /turf/simulated/floor/wood, /area/maintenance/aft) @@ -46674,29 +46674,29 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/aft) "bRh" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; - name = "3maintenance loot spawner" + name = "3maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/aft) "bRi" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bRj" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -46706,15 +46706,15 @@ "bRk" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 8 + dir = 8 }, /area/security/checkpoint/engineering) "bRl" = ( @@ -46726,13 +46726,13 @@ "bRm" = ( /obj/machinery/door/airlock/glass_security{ name = "Security Office"; - req_access_txt = "63" + req_access_txt = "63" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -46752,7 +46752,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 4 + dir = 4 }, /area/security/checkpoint/engineering) "bRp" = ( @@ -46762,13 +46762,13 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bRq" = ( /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 4 + dir = 4 }, /area/hallway/primary/aft) "bRr" = ( @@ -46786,18 +46786,18 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/window/northleft{ dir = 4; - icon_state = "left"; - name = "Atmospherics Desk"; - req_access_txt = "24" + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + layer = 2.9; + name = "atmos blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/atmos) "bRt" = ( @@ -46808,7 +46808,7 @@ /obj/machinery/computer/atmos_alert, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 4 + dir = 4 }, /area/atmos) "bRv" = ( @@ -46820,9 +46820,9 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -46862,8 +46862,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -46874,7 +46874,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Distribution Loop"; - req_access_txt = "24" + req_access_txt = "24" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -46887,8 +46887,8 @@ "bRE" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Pure to Mix"; - on = 0 + name = "Pure to Mix"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -46901,19 +46901,19 @@ "bRG" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Unfiltered to Mix"; - on = 1 + name = "Unfiltered to Mix"; + on = 1 }, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4; - initialize_directions = 12 + initialize_directions = 12 }, /turf/simulated/floor/plasteel, /area/atmos) "bRH" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 5; - initialize_directions = 12 + initialize_directions = 12 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -46932,7 +46932,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "green"; - dir = 6 + dir = 6 }, /area/atmos) "bRK" = ( @@ -46945,21 +46945,21 @@ "bRL" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; - frequency = 1441; - id = "mix_in"; - pixel_y = 1 + frequency = 1441; + id = "mix_in"; + pixel_y = 1 }, /turf/simulated/floor/engine{ name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + nitrogen = 0.01; + oxygen = 0.01 }, /area/atmos) "bRM" = ( /obj/structure/table, /obj/machinery/light_switch{ pixel_x = -23; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/reagentgrinder, /turf/simulated/floor/plasteel{ @@ -46972,7 +46972,7 @@ "bRO" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -46981,18 +46981,18 @@ "bRP" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/virology{ autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39" + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -47008,7 +47008,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_virology{ name = "Monkey Pen"; - req_access_txt = "39" + req_access_txt = "39" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -47019,8 +47019,8 @@ /obj/effect/landmark/start/depsec/engineering, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/security/checkpoint/engineering) @@ -47045,7 +47045,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bRW" = ( @@ -47055,11 +47055,11 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio3"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -47068,14 +47068,14 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -47086,28 +47086,28 @@ /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/button/door{ id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bRZ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -47117,15 +47117,15 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio8"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -47143,7 +47143,7 @@ "bSd" = ( /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/tcommsat/computer) "bSe" = ( @@ -47165,7 +47165,7 @@ "bSg" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /turf/simulated/floor/engine, /area/toxins/misc_lab) @@ -47193,32 +47193,32 @@ /obj/structure/target_stake, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/misc_lab) "bSl" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "bSm" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating{ icon_state = "platingdmg3" @@ -47235,14 +47235,14 @@ "bSp" = ( /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /turf/simulated/floor/plating, /area/maintenance/aft) "bSq" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/tank/internals/emergency_oxygen, /obj/item/weapon/tank/internals/emergency_oxygen, @@ -47264,8 +47264,8 @@ /obj/structure/closet/emcloset, /obj/machinery/camera{ c_tag = "Telecoms Monitoring"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -47280,19 +47280,19 @@ "bSv" = ( /obj/machinery/camera{ c_tag = "Construction Area"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/construction) "bSw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -47319,30 +47319,30 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bSB" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /obj/structure/table, /obj/item/weapon/tank/internals/emergency_oxygen{ pixel_x = -8; - pixel_y = 0 + pixel_y = 0 }, /obj/item/weapon/tank/internals/emergency_oxygen{ pixel_x = -8; - pixel_y = 0 + pixel_y = 0 }, /obj/item/clothing/mask/breath{ pixel_x = 4; - pixel_y = 0 + pixel_y = 0 }, /obj/item/clothing/mask/breath{ pixel_x = 4; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -47352,15 +47352,15 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + layer = 2.9; + name = "atmos blast door" }, /turf/simulated/floor/plating, /area/atmos) "bSD" = ( /obj/structure/sign/atmosplaque{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /obj/structure/table, /obj/item/weapon/storage/box, @@ -47372,29 +47372,29 @@ /obj/machinery/computer/station_alert, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/button/door{ id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "24" + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "caution" + icon_state = "caution" }, /area/atmos) "bSF" = ( /obj/structure/table, /obj/item/clothing/head/welding{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/clothing/head/welding{ pixel_x = -5; - pixel_y = 3 + pixel_y = 3 }, /obj/machinery/light{ dir = 8 @@ -47409,8 +47409,8 @@ }, /obj/item/stack/sheet/metal{ amount = 50; - pixel_x = 2; - pixel_y = 2 + pixel_x = 2; + pixel_y = 2 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -47429,8 +47429,8 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -47447,7 +47447,7 @@ /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6; - initialize_directions = 6 + initialize_directions = 6 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -47490,7 +47490,7 @@ /obj/structure/grille, /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -47510,14 +47510,14 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bSS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/virology{ name = "Break Room"; - req_access_txt = "39" + req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -47529,16 +47529,16 @@ "bST" = ( /obj/machinery/doorButtons/airlock_controller{ idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "39" + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "39" }, /obj/machinery/light_switch{ pixel_x = -4; - pixel_y = 24 + pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -47550,7 +47550,7 @@ "bSU" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -47562,9 +47562,9 @@ "bSV" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/firealarm{ pixel_y = 25 @@ -47576,8 +47576,8 @@ "bSW" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -47589,14 +47589,14 @@ "bSX" = ( /obj/machinery/power/apc{ cell_type = 5000; - dir = 1; - name = "Virology APC"; - pixel_x = 0; - pixel_y = 24 + dir = 1; + name = "Virology APC"; + pixel_x = 0; + pixel_y = 24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/camera{ c_tag = "Virology Module" @@ -47620,31 +47620,31 @@ "bTa" = ( /obj/machinery/door/window/northleft{ dir = 4; - name = "Containment Pen"; - req_access_txt = "55" + name = "Containment Pen"; + req_access_txt = "55" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bTb" = ( /obj/machinery/door/window/northleft{ base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio3"; - name = "containment blast door" + name = "containment blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) @@ -47652,9 +47652,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -47663,31 +47663,31 @@ "bTd" = ( /obj/machinery/door/window/northleft{ base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bTe" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/window/northleft{ dir = 4; - name = "Containment Pen"; - req_access_txt = "55" + name = "Containment Pen"; + req_access_txt = "55" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio8"; - name = "containment blast door" + name = "containment blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) @@ -47697,9 +47697,9 @@ /obj/item/weapon/crowbar, /obj/machinery/computer/security/telescreen{ name = "Test Chamber Moniter"; - network = list("Test"); - pixel_x = 0; - pixel_y = -30 + network = list("Test"); + pixel_x = 0; + pixel_y = -30 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -47709,8 +47709,8 @@ "bTg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -47732,7 +47732,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/security/checkpoint/engineering) "bTj" = ( @@ -47758,52 +47758,52 @@ /obj/structure/table, /obj/item/device/assembly/igniter{ pixel_x = -5; - pixel_y = 3 + pixel_y = 3 }, /obj/item/device/assembly/igniter{ pixel_x = 5; - pixel_y = -4 + pixel_y = -4 }, /obj/item/device/assembly/igniter{ pixel_x = 2; - pixel_y = 6 + pixel_y = 6 }, /obj/item/device/assembly/igniter{ pixel_x = 2; - pixel_y = -1 + pixel_y = -1 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/item/device/assembly/timer{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/device/assembly/timer{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/device/assembly/timer{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/device/assembly/timer{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /turf/simulated/floor/engine, /area/toxins/misc_lab) "bTo" = ( /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bTp" = ( /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bTq" = ( @@ -47813,8 +47813,8 @@ "bTr" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, @@ -47828,7 +47828,7 @@ "bTt" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/wood{ icon_state = "wood-broken6" @@ -47837,14 +47837,14 @@ "bTu" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/wood, /area/maintenance/aft) "bTv" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -47854,14 +47854,14 @@ }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/aft) "bTx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ icon_state = "connector_map"; - dir = 8 + dir = 8 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, @@ -47871,7 +47871,7 @@ /obj/structure/window/fulltile, /obj/machinery/atmospherics/pipe/simple/general/hidden{ icon_state = "intact"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -47900,8 +47900,8 @@ "bTD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -47927,19 +47927,19 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 1; - pixel_y = 9 + pixel_y = 9 }, /obj/item/weapon/pen, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/security/checkpoint/engineering) "bTH" = ( @@ -47958,18 +47958,18 @@ "bTJ" = ( /obj/machinery/power/apc{ name = "Aft Hall APC"; - dir = 8; - pixel_x = -25; - pixel_y = 1 + dir = 8; + pixel_x = -25; + pixel_y = 1 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bTK" = ( @@ -47978,7 +47978,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "caution" + icon_state = "caution" }, /area/hallway/primary/aft) "bTL" = ( @@ -47993,14 +47993,14 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Monitoring"; - req_access_txt = "24" + req_access_txt = "24" }, /turf/simulated/floor/plasteel, /area/atmos) "bTO" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6; - initialize_directions = 6 + initialize_directions = 6 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -48018,7 +48018,7 @@ "bTR" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, @@ -48046,12 +48046,12 @@ "bTV" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "N2O Outlet Pump"; - on = 0 + name = "N2O Outlet Pump"; + on = 0 }, /turf/simulated/floor/plasteel{ icon_state = "escape"; - dir = 5 + dir = 5 }, /area/atmos) "bTW" = ( @@ -48060,14 +48060,14 @@ "bTX" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, /turf/simulated/floor/engine/n2o, /area/atmos) @@ -48092,14 +48092,14 @@ "bUb" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -48108,11 +48108,11 @@ "bUc" = ( /obj/machinery/requests_console{ announcementConsole = 1; - department = "Telecoms Admin"; - departmentType = 5; - name = "Telecoms RC"; - pixel_x = 30; - pixel_y = 0 + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -48121,35 +48121,35 @@ /obj/structure/table/reinforced, /obj/machinery/button/door{ id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" }, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bUe" = ( /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "xenobio3"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -48158,14 +48158,14 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -48181,7 +48181,7 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bUh" = ( @@ -48192,7 +48192,7 @@ /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "xenobio8"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -48212,7 +48212,7 @@ }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -48221,28 +48221,28 @@ "bUk" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10; - pixel_x = 0; - initialize_directions = 10 + pixel_x = 0; + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/toxins/misc_lab) "bUl" = ( /obj/structure/disposalpipe/sortjunction{ dir = 2; - icon_state = "pipe-j2s"; - sortType = 5 + icon_state = "pipe-j2s"; + sortType = 5 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bUm" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -48257,7 +48257,7 @@ /obj/structure/table, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/grenade/chem_grenade, /obj/item/weapon/grenade/chem_grenade, @@ -48275,40 +48275,40 @@ /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; - dir = 10 + dir = 10 }, /turf/space, /area/space/nearstation) "bUs" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "bUt" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/aft) "bUu" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -48318,9 +48318,9 @@ "bUv" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -48331,9 +48331,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48343,18 +48343,18 @@ "bUx" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-y"; - dir = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -48369,8 +48369,8 @@ "bUz" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48380,17 +48380,17 @@ "bUA" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/power/apc{ dir = 1; - name = "Construction Area APC"; - pixel_y = 24 + name = "Construction Area APC"; + pixel_y = 24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48400,12 +48400,12 @@ "bUB" = ( /obj/machinery/power/apc{ dir = 2; - name = "Telecoms Monitoring APC"; - pixel_y = -24 + name = "Telecoms Monitoring APC"; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48431,7 +48431,7 @@ /obj/machinery/portable_atmospherics/pump, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 8 + dir = 8 }, /area/atmos) "bUF" = ( @@ -48441,7 +48441,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "caution" + icon_state = "caution" }, /area/atmos) "bUG" = ( @@ -48464,7 +48464,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 4 + dir = 4 }, /area/atmos) "bUJ" = ( @@ -48474,15 +48474,15 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/atmos{ name = "Atmospherics"; - req_access_txt = "24" + req_access_txt = "24" }, /turf/simulated/floor/plasteel, /area/atmos) "bUK" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Air to External"; - on = 1 + name = "Air to External"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -48495,8 +48495,8 @@ "bUM" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -48511,24 +48511,24 @@ "bUO" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Mix to Port"; - on = 0 + name = "Mix to Port"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) "bUP" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Air to Port"; - on = 0 + name = "Air to Port"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) "bUQ" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Pure to Port"; - on = 0 + name = "Pure to Port"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -48543,14 +48543,14 @@ "bUT" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ icon_state = "escape"; - dir = 4 + dir = 4 }, /area/atmos) "bUU" = ( @@ -48560,7 +48560,7 @@ "bUV" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "n2o_sensor" + id_tag = "n2o_sensor" }, /turf/simulated/floor/engine/n2o, /area/atmos) @@ -48576,8 +48576,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48587,32 +48587,32 @@ "bUY" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "bUZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -48623,7 +48623,7 @@ /obj/machinery/smartfridge/chemistry/virology, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bVb" = ( @@ -48636,14 +48636,14 @@ "bVc" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/hallway/primary/aft) "bVd" = ( @@ -48652,15 +48652,15 @@ }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "yellow" + icon_state = "yellow" }, /area/hallway/primary/aft) "bVe" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48670,26 +48670,26 @@ "bVf" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bVg" = ( /obj/item/device/radio/intercom{ broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 + name = "Station Intercom (General)"; + pixel_y = 20 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "yellow" + icon_state = "yellow" }, /area/hallway/primary/aft) "bVh" = ( @@ -48699,21 +48699,21 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bVi" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" + icon_state = "shock"; + name = "HIGH VOLTAGE" }, /turf/simulated/wall, /area/toxins/xenobiology) "bVj" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -48722,9 +48722,9 @@ "bVk" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -48741,8 +48741,8 @@ "bVm" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48752,7 +48752,7 @@ "bVn" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel{ @@ -48770,8 +48770,8 @@ "bVp" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48789,17 +48789,17 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/break_room) "bVs" = ( /obj/machinery/camera{ c_tag = "Testing Firing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 }, /turf/simulated/floor/plating, /area/toxins/misc_lab) @@ -48853,7 +48853,7 @@ /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ icon_state = "intact"; - dir = 10 + dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -48903,9 +48903,9 @@ "bVH" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -48935,21 +48935,21 @@ "bVN" = ( /obj/machinery/camera{ c_tag = "Atmospherics Access"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/light{ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "caution" + icon_state = "caution" }, /area/atmos) "bVO" = ( @@ -48967,9 +48967,9 @@ "bVQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -48979,7 +48979,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 4 + dir = 4 }, /area/atmos) "bVS" = ( @@ -48992,8 +48992,8 @@ "bVT" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - name = "External to Filter"; - on = 1 + name = "External to Filter"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -49004,8 +49004,8 @@ "bVV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 @@ -49015,7 +49015,7 @@ "bVW" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -49046,15 +49046,15 @@ "bWa" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos) "bWb" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = "n2o"; - on = 1 + filter_type = "n2o"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -49064,23 +49064,23 @@ }, /turf/simulated/floor/plasteel{ icon_state = "escape"; - dir = 6 + dir = 6 }, /area/atmos) "bWd" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 }, /turf/simulated/floor/engine/n2o, /area/atmos) "bWe" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -49089,14 +49089,14 @@ /obj/item/clothing/gloves/color/latex, /obj/machinery/requests_console{ department = "Virology"; - name = "Virology Requests Console"; - pixel_x = -32 + name = "Virology Requests Console"; + pixel_x = -32 }, /obj/item/device/healthanalyzer, /obj/item/clothing/glasses/hud/health, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bWg" = ( @@ -49105,7 +49105,7 @@ /obj/item/device/radio/headset/headset_med, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bWh" = ( @@ -49142,11 +49142,11 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio2"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -49156,35 +49156,35 @@ /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/button/door{ id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bWn" = ( /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio7"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -49233,7 +49233,7 @@ "bWu" = ( /obj/machinery/door/airlock/engineering{ name = "Telecommunications"; - req_access_txt = "61" + req_access_txt = "61" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -49275,39 +49275,39 @@ "bWB" = ( /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bWC" = ( /obj/machinery/telecomms/bus/preset_four, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bWD" = ( /obj/machinery/telecomms/server/presets/engineering, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bWE" = ( /obj/machinery/telecomms/processor/preset_three, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bWF" = ( @@ -49316,37 +49316,37 @@ }, /obj/machinery/power/apc{ cell_type = 5000; - dir = 1; - name = "Telecoms Server APC"; - pixel_x = 0; - pixel_y = 25 + dir = 1; + name = "Telecoms Server APC"; + pixel_x = 0; + pixel_y = 25 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bWG" = ( /obj/machinery/telecomms/server/presets/security, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bWH" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "yellow" + icon_state = "yellow" }, /area/tcommsat/computer) "bWI" = ( @@ -49354,7 +49354,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/tcommsat/computer) @@ -49362,8 +49362,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -49376,14 +49376,14 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "yellow" + icon_state = "yellow" }, /area/hallway/primary/aft) "bWL" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -49391,7 +49391,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bWM" = ( @@ -49401,7 +49401,7 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/atmos) "bWN" = ( @@ -49410,11 +49410,11 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "atmos blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/atmos) "bWO" = ( @@ -49430,11 +49430,11 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "atmos blast door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/atmos) "bWQ" = ( @@ -49443,43 +49443,43 @@ "bWR" = ( /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 }, /turf/simulated/floor/plasteel, /area/atmos) "bWS" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/camera{ c_tag = "Atmospherics West"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel, /area/atmos) "bWT" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Air to Port"; - on = 0 + name = "Air to Port"; + on = 0 }, /obj/machinery/light{ dir = 8 @@ -49514,7 +49514,7 @@ }, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/storage/box/syringes, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49522,14 +49522,14 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bWY" = ( /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -2; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/pen/red, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49537,7 +49537,7 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bWZ" = ( @@ -49595,38 +49595,38 @@ "bXf" = ( /obj/machinery/door/window/northleft{ base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio2"; - name = "containment blast door" + name = "containment blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) "bXg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/window/northleft{ dir = 4; - name = "Containment Pen"; - req_access_txt = "55" + name = "Containment Pen"; + req_access_txt = "55" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio7"; - name = "containment blast door" + name = "containment blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) @@ -49653,15 +49653,15 @@ /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/button/ignition{ id = "testigniter"; - pixel_x = -6; - pixel_y = 2 + pixel_x = -6; + pixel_y = 2 }, /obj/machinery/button/door{ id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access_txt = "55" + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -49670,17 +49670,17 @@ "bXk" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" + location = "AftH" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -49691,7 +49691,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = 0; - pixel_y = 6 + pixel_y = 6 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -49703,8 +49703,8 @@ "bXm" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -49714,22 +49714,22 @@ "bXn" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellow" + icon_state = "yellow" }, /area/hallway/primary/aft) "bXo" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -49740,14 +49740,14 @@ "bXp" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -49757,13 +49757,13 @@ "bXq" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -49773,7 +49773,7 @@ "bXr" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bXs" = ( @@ -49787,7 +49787,7 @@ /obj/item/weapon/paper/range, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 6 + dir = 6 }, /area/toxins/misc_lab) "bXt" = ( @@ -49800,25 +49800,25 @@ }, /obj/item/device/radio/intercom{ freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 10 + dir = 10 }, /area/toxins/misc_lab) "bXu" = ( /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/window/reinforced/tinted/fulltile, @@ -49828,8 +49828,8 @@ "bXv" = ( /obj/machinery/door/airlock/external{ name = "External Access"; - req_access = null; - req_access_txt = "13" + req_access = null; + req_access_txt = "13" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -49857,60 +49857,60 @@ /obj/machinery/telecomms/processor/preset_four, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bXA" = ( /obj/machinery/telecomms/server/presets/common, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bXB" = ( /obj/machinery/telecomms/bus/preset_three, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bXC" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bXD" = ( /obj/machinery/telecomms/server/presets/command, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bXE" = ( /obj/machinery/computer/message_monitor, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "yellow" + icon_state = "yellow" }, /area/tcommsat/computer) "bXF" = ( @@ -49918,7 +49918,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -49929,13 +49929,13 @@ "bXH" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel, @@ -49943,9 +49943,9 @@ "bXI" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49961,7 +49961,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "escape" + icon_state = "escape" }, /area/atmos) "bXK" = ( @@ -49978,7 +49978,7 @@ /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/atmos{ name = "Atmospherics"; - req_access_txt = "24" + req_access_txt = "24" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -49995,25 +49995,25 @@ }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 5 + dir = 5 }, /area/security/checkpoint/engineering) "bXP" = ( /obj/machinery/requests_console{ department = "Security"; - departmentType = 5; - pixel_y = 30 + departmentType = 5; + pixel_y = 30 }, /obj/structure/closet, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 1 + dir = 1 }, /area/security/checkpoint/engineering) "bXQ" = ( /obj/structure/fireaxecabinet{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -50021,7 +50021,7 @@ /obj/structure/closet/secure_closet/atmospherics, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "bXS" = ( @@ -50031,7 +50031,7 @@ /obj/machinery/portable_atmospherics/canister, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/atmos) "bXT" = ( @@ -50040,7 +50040,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/atmos) "bXU" = ( @@ -50052,59 +50052,59 @@ "bXV" = ( /obj/machinery/camera{ c_tag = "Atmospherics East"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Plasma Outlet Pump"; - on = 0 + name = "Plasma Outlet Pump"; + on = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "bXW" = ( /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bXX" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bXY" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bXZ" = ( @@ -50115,9 +50115,9 @@ "bYa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -50126,7 +50126,7 @@ "bYb" = ( /obj/machinery/vending/cigarette{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -50134,20 +50134,20 @@ /obj/machinery/disposal/bin, /obj/structure/sign/deathsposal{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bYd" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -50163,23 +50163,23 @@ /obj/structure/table/reinforced, /obj/machinery/button/door{ id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" }, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bYg" = ( @@ -50190,11 +50190,11 @@ /obj/structure/cable, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio2"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -50207,7 +50207,7 @@ /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "xenobio7"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -50216,7 +50216,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "testlab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -50225,7 +50225,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "testlab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/window/reinforced/fulltile, @@ -50235,7 +50235,7 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/misc_lab) "bYl" = ( @@ -50250,7 +50250,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/misc_lab) "bYn" = ( @@ -50258,8 +50258,8 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "yellow" @@ -50271,17 +50271,17 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "bYp" = ( /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "yellow"; - dir = 10 + dir = 10 }, /area/hallway/primary/aft) "bYq" = ( @@ -50311,19 +50311,19 @@ "bYu" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "bYv" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix to Space"; - on = 0 + name = "Mix to Space"; + on = 0 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -50340,7 +50340,7 @@ "bYx" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -50349,7 +50349,7 @@ "bYy" = ( /obj/machinery/door/airlock/maintenance{ name = "Incinerator Access"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/structure/barricade/wooden{ name = "wooden barricade (CLOSED)" @@ -50359,40 +50359,40 @@ "bYz" = ( /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bYA" = ( /obj/machinery/telecomms/broadcaster/preset_right, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bYB" = ( /obj/machinery/blackbox_recorder, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bYC" = ( /obj/machinery/telecomms/receiver/preset_right, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bYD" = ( @@ -50401,7 +50401,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "yellow"; - dir = 10 + dir = 10 }, /area/tcommsat/computer) "bYE" = ( @@ -50419,7 +50419,7 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "yellow" + icon_state = "yellow" }, /area/hallway/primary/aft) "bYH" = ( @@ -50428,46 +50428,46 @@ "bYI" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "bYJ" = ( /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "caution" + icon_state = "caution" }, /area/engine/break_room) "bYK" = ( /turf/simulated/floor/plasteel{ icon_state = "caution"; - dir = 5 + dir = 5 }, /area/engine/break_room) "bYL" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "caution" + icon_state = "caution" }, /area/engine/break_room) "bYM" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "yellow" @@ -50490,7 +50490,7 @@ /obj/machinery/suit_storage_unit/atmos, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "bYR" = ( @@ -50500,7 +50500,7 @@ "bYS" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, @@ -50508,37 +50508,37 @@ "bYT" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "tox_in"; - name = "Plasma Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") + input_tag = "tox_in"; + name = "Plasma Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "bYU" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bYV" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "tox_sensor" + id_tag = "tox_sensor" }, /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bYW" = ( @@ -50547,17 +50547,17 @@ }, /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bYX" = ( /obj/structure/closet/l3closet/virology, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bYY" = ( @@ -50565,7 +50565,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "whitegreen" + icon_state = "whitegreen" }, /area/medical/virology) "bYZ" = ( @@ -50575,14 +50575,14 @@ "bZa" = ( /obj/structure/sink{ icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /obj/machinery/camera{ c_tag = "Xenobiology South"; - dir = 4; - network = list("SS13","RD") + dir = 4; + network = list("SS13","RD") }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -50599,7 +50599,7 @@ "bZc" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; - unacidable = 1 + unacidable = 1 }, /turf/simulated/floor/engine, /area/toxins/misc_lab) @@ -50621,9 +50621,9 @@ "bZf" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -50631,7 +50631,7 @@ "bZg" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -50663,8 +50663,8 @@ "bZl" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix to Port"; - on = 0 + name = "Mix to Port"; + on = 0 }, /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -50681,45 +50681,45 @@ "bZn" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bZo" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bZp" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "bZq" = ( @@ -50727,11 +50727,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plating, /area/tcommsat/computer) @@ -50744,7 +50744,7 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -50756,11 +50756,11 @@ "bZu" = ( /obj/machinery/camera{ c_tag = "Engineering Foyer"; - dir = 1 + dir = 1 }, /obj/structure/noticeboard{ dir = 1; - pixel_y = -27 + pixel_y = -27 }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -50772,7 +50772,7 @@ "bZw" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -50784,7 +50784,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "bZy" = ( @@ -50795,7 +50795,7 @@ /obj/machinery/cell_charger, /obj/machinery/light_switch{ pixel_x = -23; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/light{ dir = 8 @@ -50814,8 +50814,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -50824,38 +50824,38 @@ "bZC" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; - name = "engineering security door" + name = "engineering security door" }, /obj/machinery/door/airlock/glass_command{ name = "Chief Engineer"; - req_access_txt = "56" + req_access_txt = "56" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/chiefs_office) "bZD" = ( /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ id = "Engineering"; - name = "engineering security door" + name = "engineering security door" }, /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50865,18 +50865,18 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "yellow"; - dir = 10 + dir = 10 }, /area/engine/break_room) "bZF" = ( /obj/machinery/power/apc{ dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 + name = "Atmospherics APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -50884,15 +50884,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/atmos) "bZH" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /obj/item/weapon/wrench, /turf/simulated/floor/plasteel, @@ -50907,8 +50907,8 @@ "bZJ" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = "plasma"; - on = 1 + filter_type = "plasma"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -50918,22 +50918,22 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "bZL" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 + frequency = 1441; + id = "tox_in"; + pixel_y = 1 }, /turf/simulated/floor/engine{ carbon_dioxide = 0; - name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 }, /area/atmos) "bZM" = ( @@ -50963,17 +50963,17 @@ "bZQ" = ( /obj/machinery/atmospherics/components/binary/valve/open{ icon_state = "mvalve_map"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/asmaint) "bZR" = ( /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /obj/item/weapon/wrench, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -50981,7 +50981,7 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 9 + dir = 9 }, /area/maintenance/asmaint) "bZS" = ( @@ -50990,7 +50990,7 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 5 + dir = 5 }, /area/maintenance/asmaint) "bZT" = ( @@ -51015,11 +51015,11 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio1"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -51029,35 +51029,35 @@ /obj/structure/table/reinforced, /obj/machinery/button/door{ id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "bZX" = ( /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio6"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -51078,18 +51078,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 1 + dir = 1 }, /area/toxins/misc_lab) "cab" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/toxins/misc_lab) "cac" = ( @@ -51121,22 +51121,22 @@ }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cah" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cai" = ( @@ -51145,101 +51145,101 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "caj" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cak" = ( /obj/machinery/telecomms/hub/preset, /turf/simulated/floor/bluegrid{ dir = 8; - icon_state = "vault"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + icon_state = "vault"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cal" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Server Room"; - req_access_txt = "61" + req_access_txt = "61" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/tcommsat/computer) "cam" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "can" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Server Room"; - req_access_txt = "61" + req_access_txt = "61" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/tcommsat/computer) "cao" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 5 + dir = 5 }, /area/tcommsat/computer) "cap" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/break_room) "caq" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51272,8 +51272,8 @@ "cau" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -51287,7 +51287,7 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "cautioncorner" + icon_state = "cautioncorner" }, /area/hallway/primary/aft) "caw" = ( @@ -51295,8 +51295,8 @@ /obj/item/clothing/glasses/meson, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -51311,9 +51311,9 @@ "cay" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -51326,12 +51326,12 @@ "caz" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -51346,8 +51346,8 @@ "caB" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -51360,12 +51360,12 @@ "caC" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -51381,32 +51381,32 @@ "caE" = ( /obj/machinery/requests_console{ department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel, /area/atmos) "caF" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/camera{ c_tag = "Atmospherics Central"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Port to Filter"; - on = 0 + name = "Port to Filter"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -51435,7 +51435,7 @@ /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; - dir = 5 + dir = 5 }, /turf/space, /area/space/nearstation) @@ -51450,8 +51450,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -51462,17 +51462,17 @@ "caM" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -51482,12 +51482,12 @@ "caN" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -51498,8 +51498,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -51510,7 +51510,7 @@ }, /turf/simulated/floor/plating{ dir = 2; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/maintenance/asmaint) "caQ" = ( @@ -51525,7 +51525,7 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 10 + dir = 10 }, /area/maintenance/asmaint) "caR" = ( @@ -51535,18 +51535,18 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 6 + dir = 6 }, /area/maintenance/asmaint) "caS" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -51556,17 +51556,17 @@ "caT" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -51577,9 +51577,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -51589,45 +51589,45 @@ "caV" = ( /obj/machinery/door/window/northleft{ base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio1"; - name = "containment blast door" + name = "containment blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) "caW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/window/northleft{ dir = 4; - name = "Containment Pen"; - req_access_txt = "55" + name = "Containment Pen"; + req_access_txt = "55" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio6"; - name = "containment blast door" + name = "containment blast door" }, /turf/simulated/floor/engine, /area/toxins/xenobiology) "caX" = ( /obj/machinery/sparker{ id = "testigniter"; - pixel_x = -25 + pixel_x = -25 }, /turf/simulated/floor/engine, /area/toxins/misc_lab) @@ -51639,7 +51639,7 @@ /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "testlab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -51648,9 +51648,9 @@ "cba" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/engine, /area/toxins/misc_lab) @@ -51663,20 +51663,20 @@ "cbc" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/engine, /area/toxins/misc_lab) "cbd" = ( /obj/machinery/power/apc{ dir = 4; - name = "Testing Lab APC"; - pixel_x = 26; - pixel_y = 0 + name = "Testing Lab APC"; + pixel_x = 26; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -51696,8 +51696,8 @@ "cbg" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, @@ -51716,7 +51716,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -2; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -51735,23 +51735,23 @@ }, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix to Space"; - on = 1 + name = "Mix to Space"; + on = 1 }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cbl" = ( /obj/machinery/camera{ c_tag = "Telecoms Server Room"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cbm" = ( @@ -51759,7 +51759,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -51767,8 +51767,8 @@ "cbn" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 0 + name = "SERVER ROOM"; + pixel_y = 0 }, /turf/simulated/wall, /area/tcommsat/computer) @@ -51777,54 +51777,54 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating, /area/tcommsat/computer) "cbp" = ( /obj/machinery/power/apc{ cell_type = 5000; - dir = 4; - name = "CE Office APC"; - pixel_x = 24; - pixel_y = 0 + dir = 4; + name = "CE Office APC"; + pixel_x = 24; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cbq" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cbr" = ( @@ -51833,8 +51833,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -51846,50 +51846,50 @@ "cbt" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/camera{ c_tag = "Aft Primary Hallway 1"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/hallway/primary/aft) "cbu" = ( /obj/machinery/power/apc{ dir = 8; - name = "Engineering Foyer APC"; - pixel_x = -24 + name = "Engineering Foyer APC"; + pixel_x = -24 }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel, /area/engine/break_room) "cbv" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Delivery access"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "cbw" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51907,8 +51907,8 @@ "cby" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51928,21 +51928,21 @@ /obj/machinery/space_heater, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "cbC" = ( /obj/machinery/space_heater, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/atmos) "cbD" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Port to Filter"; - on = 0 + name = "Port to Filter"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -51960,50 +51960,50 @@ "cbG" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "CO2 Outlet Pump"; - on = 0 + name = "CO2 Outlet Pump"; + on = 0 }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "yellow" + icon_state = "yellow" }, /area/atmos) "cbH" = ( /turf/simulated/floor/engine{ carbon_dioxide = 50000; - name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 }, /area/atmos) "cbI" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + 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 + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 }, /area/atmos) "cbJ" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; - dir = 10 + dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -52014,8 +52014,8 @@ "cbL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -52029,8 +52029,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -52038,20 +52038,20 @@ "cbO" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance"; - req_access_txt = "12;24" + req_access_txt = "12;24" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "cbP" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -52067,28 +52067,28 @@ /obj/structure/table/reinforced, /obj/machinery/button/door{ id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" }, /obj/structure/window/reinforced{ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/xenobiology) "cbS" = ( @@ -52096,11 +52096,11 @@ /obj/structure/cable, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "xenobio1"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -52109,8 +52109,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -52124,7 +52124,7 @@ /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "xenobio6"; - name = "containment blast door" + name = "containment blast door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/engine, @@ -52132,9 +52132,9 @@ "cbV" = ( /obj/machinery/camera{ c_tag = "Testing Chamber"; - dir = 1; - network = list("Test","RD"); - pixel_x = 0 + dir = 1; + network = list("Test","RD"); + pixel_x = 0 }, /obj/machinery/light, /turf/simulated/floor/engine, @@ -52142,22 +52142,22 @@ "cbW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 4 + dir = 4 }, /area/toxins/misc_lab) "cbX" = ( /obj/machinery/camera{ c_tag = "Testing Lab South"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -52179,11 +52179,11 @@ "cca" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/solar{ id = "portsolar"; - name = "Port Solar Array" + name = "Port Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -52192,11 +52192,11 @@ "ccb" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/solar{ id = "portsolar"; - name = "Port Solar Array" + name = "Port Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -52205,13 +52205,13 @@ "ccc" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -52229,30 +52229,30 @@ /obj/machinery/telecomms/broadcaster/preset_left, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "ccg" = ( /obj/machinery/message_server, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cch" = ( /obj/machinery/telecomms/receiver/preset_left, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cci" = ( @@ -52260,7 +52260,7 @@ /obj/item/device/multitool, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "yellow" + icon_state = "yellow" }, /area/tcommsat/computer) "ccj" = ( @@ -52274,47 +52274,47 @@ /obj/item/weapon/stock_parts/cell/high/plus, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cck" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "ccl" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "ccm" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -52335,8 +52335,8 @@ "ccp" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -52349,8 +52349,8 @@ "ccq" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -52363,13 +52363,13 @@ "ccr" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -52388,12 +52388,12 @@ "cct" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -52401,19 +52401,19 @@ "ccu" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/aft) "ccv" = ( /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -52436,43 +52436,43 @@ "ccz" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - name = "N2 to Pure"; - on = 0 + name = "N2 to Pure"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) "ccA" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellow" + icon_state = "yellow" }, /area/atmos) "ccB" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/engine{ carbon_dioxide = 50000; - name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 }, /area/atmos) "ccC" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "co2_sensor" + id_tag = "co2_sensor" }, /turf/simulated/floor/engine{ carbon_dioxide = 50000; - name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 }, /area/atmos) "ccD" = ( @@ -52481,15 +52481,15 @@ }, /turf/simulated/floor/engine{ carbon_dioxide = 50000; - name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 }, /area/atmos) "ccE" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 0; - pixel_y = 28 + pixel_y = 28 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -52513,8 +52513,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -52524,12 +52524,12 @@ "ccI" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -52539,8 +52539,8 @@ "ccJ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -52550,12 +52550,12 @@ "ccK" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -52565,12 +52565,12 @@ "ccL" = ( /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -52584,12 +52584,12 @@ "ccN" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -52603,9 +52603,9 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -52625,14 +52625,14 @@ /obj/machinery/portable_atmospherics/pump, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/misc_lab) "ccS" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52643,7 +52643,7 @@ "ccT" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -52668,18 +52668,18 @@ "ccX" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/space, @@ -52708,40 +52708,40 @@ /obj/machinery/telecomms/bus/preset_two, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cdd" = ( /obj/machinery/telecomms/server/presets/supply, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cde" = ( /obj/machinery/telecomms/processor/preset_one, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cdf" = ( /obj/machinery/telecomms/server/presets/medical, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cdg" = ( @@ -52750,20 +52750,20 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "yellow" + icon_state = "yellow" }, /area/tcommsat/computer) "cdh" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j2s"; - sortType = 4 + icon_state = "pipe-j2s"; + sortType = 4 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -52774,28 +52774,28 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "cdj" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -52805,7 +52805,7 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -52816,19 +52816,19 @@ "cdm" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cdn" = ( @@ -52840,7 +52840,7 @@ "cdo" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/structure/closet/radiation, /turf/simulated/floor/plasteel, @@ -52852,9 +52852,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -52869,13 +52869,13 @@ "cdr" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -52885,16 +52885,16 @@ "cds" = ( /obj/machinery/power/apc{ dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 + name = "Science Maintenance APC"; + pixel_x = -25 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/camera{ c_tag = "Aft Starboard Solar Access"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -52915,22 +52915,22 @@ "cdv" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "cdw" = ( /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -52951,28 +52951,28 @@ }, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "O2 to Pure"; - on = 0 + name = "O2 to Pure"; + on = 0 }, /turf/simulated/floor/plasteel, /area/atmos) "cdA" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - pixel_x = 0; - pixel_y = 0; - target_pressure = 4500 + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + pixel_x = 0; + pixel_y = 0; + target_pressure = 4500 }, /turf/simulated/floor/plasteel, /area/atmos) "cdB" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = "co2"; - on = 1 + filter_type = "co2"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -52982,28 +52982,28 @@ }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "yellow" + icon_state = "yellow" }, /area/atmos) "cdD" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; - frequency = 1441; - id = "co2_in"; - pixel_y = 1 + frequency = 1441; + id = "co2_in"; + pixel_y = 1 }, /turf/simulated/floor/engine{ carbon_dioxide = 50000; - name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 }, /area/atmos) "cdE" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 @@ -53013,13 +53013,13 @@ "cdF" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -53029,8 +53029,8 @@ "cdG" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -53046,8 +53046,8 @@ "cdI" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -53057,7 +53057,7 @@ "cdJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -53067,7 +53067,7 @@ "cdK" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -53091,7 +53091,7 @@ "cdN" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -53099,9 +53099,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -53109,7 +53109,7 @@ "cdP" = ( /obj/machinery/door/window{ name = "Ready Room"; - req_access_txt = "150" + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -53128,19 +53128,19 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/misc_lab) "cdT" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump{ on = 1 @@ -53151,13 +53151,13 @@ /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /obj/item/weapon/storage/fancy/cigarettes, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cdV" = ( @@ -53167,13 +53167,13 @@ "cdW" = ( /obj/machinery/power/apc{ dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -53182,9 +53182,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -53195,9 +53195,9 @@ "cdY" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -53205,30 +53205,30 @@ /obj/machinery/telecomms/processor/preset_two, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cea" = ( /obj/machinery/telecomms/server/presets/service, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "ceb" = ( /obj/machinery/telecomms/bus/preset_one, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cec" = ( @@ -53238,19 +53238,19 @@ /obj/machinery/light, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "ced" = ( /obj/machinery/telecomms/server/presets/science, /turf/simulated/floor/bluegrid{ icon_state = "dark"; - name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 }, /area/tcommsat/server) "cee" = ( @@ -53258,7 +53258,7 @@ /obj/item/device/radio/off, /turf/simulated/floor/plasteel{ icon_state = "yellow"; - dir = 10 + dir = 10 }, /area/tcommsat/computer) "cef" = ( @@ -53270,8 +53270,8 @@ "ceg" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/light, /obj/structure/filingcabinet/chestdrawer, @@ -53284,44 +53284,44 @@ "cei" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /turf/simulated/floor/plasteel, /area/tcommsat/computer) "cej" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; - name = "engineering security door" + name = "engineering security door" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/engineering) "cek" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; - name = "engineering security door" + name = "engineering security door" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/engineering) "cel" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; - name = "engineering security door" + name = "engineering security door" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/engineering) "cem" = ( @@ -53329,18 +53329,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "cen" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -53350,7 +53350,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cep" = ( @@ -53362,11 +53362,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -53382,23 +53382,23 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cet" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "ceu" = ( /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/window/fulltile, /turf/simulated/floor/plating, @@ -53407,8 +53407,8 @@ /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/window/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53423,12 +53423,12 @@ "cex" = ( /obj/machinery/camera{ c_tag = "Atmospherics South West"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -53462,9 +53462,9 @@ "ceC" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/simulated/floor/plating, @@ -53472,8 +53472,8 @@ "ceD" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -53485,7 +53485,7 @@ "ceE" = ( /obj/structure/sign/fire{ pixel_x = 0; - pixel_y = -32 + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -53536,7 +53536,7 @@ "ceN" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ icon_state = "intact"; - dir = 9 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -53549,14 +53549,14 @@ /obj/machinery/portable_atmospherics/canister, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/toxins/misc_lab) "ceQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53579,11 +53579,11 @@ "ceU" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = -32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -53618,8 +53618,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Power Storage"; - req_access_txt = "11"; - req_one_access_txt = "0" + req_access_txt = "11"; + req_one_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -53627,18 +53627,18 @@ "cfa" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + 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 + pixel_y = 5 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cfb" = ( @@ -53648,11 +53648,11 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/door/poddoor/preopen{ id = "Engineering"; - name = "engineering security door" + name = "engineering security door" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -53660,31 +53660,31 @@ "cfd" = ( /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cfe" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32; - pixel_y = 0 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 }, /obj/structure/disposalpipe/segment, /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -53693,19 +53693,19 @@ /obj/machinery/vending/tool, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "cfg" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "cfh" = ( @@ -53717,8 +53717,8 @@ "cfi" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 2; - filter_type = "n2"; - on = 1 + filter_type = "n2"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -53728,13 +53728,13 @@ "cfk" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/atmos{ name = "Turbine Access"; - req_access_txt = "32" + req_access_txt = "32" }, /turf/simulated/floor/plating, /area/maintenance/incinerator) @@ -53746,7 +53746,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /obj/item/toy/minimeteor, /obj/item/weapon/poster/contraband, @@ -53781,38 +53781,38 @@ "cfr" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 }, /obj/machinery/camera{ c_tag = "Xenobiology Kill Room"; - dir = 4; - network = list("SS13","RD") + dir = 4; + network = list("SS13","RD") }, /turf/simulated/floor/bluegrid{ name = "Killroom Floor"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/xenobiology) "cfs" = ( /obj/machinery/door/airlock/maintenance{ name = "Air Supply Maintenance"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "cft" = ( /obj/machinery/door/airlock/maintenance{ name = "Testing Lab Maintenance"; - req_access_txt = "47" + req_access_txt = "47" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53825,7 +53825,7 @@ "cfv" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; - req_access_txt = "12" + req_access_txt = "12" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -53848,25 +53848,25 @@ "cfz" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "cfA" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, @@ -53875,14 +53875,14 @@ /obj/structure/closet/secure_closet/engineering_personal, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cfC" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -53893,13 +53893,13 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ name = "Engineering Maintenance"; - req_access_txt = "10" + req_access_txt = "10" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -53908,21 +53908,21 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cfF" = ( /obj/machinery/suit_storage_unit/ce, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warnwhite" + icon_state = "warnwhite" }, /area/engine/chiefs_office) "cfG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -53932,23 +53932,23 @@ }, /obj/machinery/keycard_auth{ pixel_x = 0; - pixel_y = 24 + pixel_y = 24 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cfI" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cfJ" = ( @@ -53957,8 +53957,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel, @@ -53973,8 +53973,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -53984,7 +53984,7 @@ "cfM" = ( /obj/machinery/door/airlock/engineering{ name = "Engine Room"; - req_access_txt = "10" + req_access_txt = "10" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -54014,15 +54014,15 @@ "cfR" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = "o2"; - on = 1 + filter_type = "o2"; + on = 1 }, /turf/simulated/floor/plasteel, /area/atmos) "cfS" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4; - initialize_directions = 12 + initialize_directions = 12 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -54041,8 +54041,8 @@ "cfV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/simulated/floor/plating, @@ -54050,14 +54050,14 @@ "cfW" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/simulated/floor/plating, @@ -54065,9 +54065,9 @@ "cfX" = ( /obj/machinery/power/apc{ dir = 2; - name = "Incinerator APC"; - pixel_x = 0; - pixel_y = -24 + name = "Incinerator APC"; + pixel_x = 0; + pixel_y = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/yellow/visible, @@ -54076,24 +54076,24 @@ "cfY" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/incinerator) "cfZ" = ( /obj/machinery/light_switch{ pixel_x = 0; - pixel_y = 26 + pixel_y = 26 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -54103,11 +54103,11 @@ "cga" = ( /obj/machinery/power/smes{ capacity = 9e+006; - charge = 10000 + charge = 10000 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" @@ -54118,20 +54118,20 @@ /obj/machinery/disposal/bin, /obj/structure/sign/deathsposal{ pixel_x = 0; - pixel_y = 32 + pixel_y = 32 }, /obj/structure/disposalpipe/trunk, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/incinerator) "cgc" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/plating{ icon_state = "platingdmg3" @@ -54155,7 +54155,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/grille{ density = 0; - icon_state = "brokengrille" + icon_state = "brokengrille" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -54180,9 +54180,9 @@ "cgi" = ( /turf/simulated/floor/bluegrid{ name = "Killroom Floor"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/xenobiology) "cgj" = ( @@ -54202,26 +54202,26 @@ "cgl" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, /turf/simulated/floor/bluegrid{ name = "Killroom Floor"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/xenobiology) "cgm" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -54231,8 +54231,8 @@ "cgn" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ target_temperature = 80; - dir = 2; - on = 1 + dir = 2; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -54241,9 +54241,9 @@ "cgo" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/simulated/floor/plating, @@ -54251,8 +54251,8 @@ "cgp" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -54275,8 +54275,8 @@ "cgs" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -54306,18 +54306,18 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -54353,18 +54353,18 @@ "cgA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "cgB" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/smes, /turf/simulated/floor/plating, @@ -54375,7 +54375,7 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/light/small{ dir = 1 @@ -54385,7 +54385,7 @@ "cgD" = ( /obj/machinery/camera{ c_tag = "Aft Port Solar Access"; - dir = 4 + dir = 4 }, /obj/machinery/light/small{ dir = 8 @@ -54396,9 +54396,9 @@ "cgE" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/portsolar) @@ -54406,17 +54406,17 @@ /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "cgG" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -54426,8 +54426,8 @@ "cgH" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -54435,7 +54435,7 @@ /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /obj/item/weapon/storage/firstaid/fire, @@ -54459,31 +54459,31 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ id = "Singularity"; - name = "radiation shutters" + name = "radiation shutters" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/engine/engineering) "cgM" = ( /obj/machinery/computer/atmos_alert, /obj/machinery/requests_console{ announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32; - pixel_y = 0 + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cgN" = ( @@ -54493,7 +54493,7 @@ "cgO" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cgP" = ( @@ -54503,7 +54503,7 @@ }, /obj/item/clothing/ears/earmuffs{ pixel_x = -5; - pixel_y = 6 + pixel_y = 6 }, /obj/item/weapon/airlock_painter, /turf/simulated/floor/plasteel, @@ -54511,15 +54511,15 @@ "cgQ" = ( /obj/machinery/camera{ c_tag = "Engineering East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/structure/closet/wardrobe/engineering_yellow, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "cgR" = ( @@ -54529,11 +54529,11 @@ /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -54541,19 +54541,19 @@ "cgT" = ( /obj/machinery/door/airlock/engineering{ name = "SMES Room"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/engine_smes) "cgU" = ( @@ -54563,10 +54563,10 @@ "cgV" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -54577,7 +54577,7 @@ /obj/machinery/portable_atmospherics/pump, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 10 + dir = 10 }, /area/atmos) "cgX" = ( @@ -54587,52 +54587,52 @@ "cgY" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "N2 Outlet Pump"; - on = 1 + name = "N2 Outlet Pump"; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "red"; - dir = 6 + dir = 6 }, /area/atmos) "cgZ" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ dir = 0; - icon_state = "blue" + icon_state = "blue" }, /area/atmos) "cha" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 10 + dir = 10 }, /area/atmos) "chb" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "O2 Outlet Pump"; - on = 1 + name = "O2 Outlet Pump"; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "blue"; - dir = 6 + dir = 6 }, /area/atmos) "chc" = ( /obj/machinery/computer/atmos_control/tank{ frequency = 1441; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") }, /turf/simulated/floor/plasteel{ icon_state = "arrival" @@ -54642,29 +54642,29 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 10 + dir = 10 }, /area/atmos) "che" = ( /obj/machinery/door/airlock/external{ name = "Atmospherics External Airlock"; - req_access_txt = "24" + req_access_txt = "24" }, /turf/simulated/floor/plating, /area/atmos) "chf" = ( /obj/machinery/camera{ c_tag = "Atmospherics South East"; - dir = 1 + dir = 1 }, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Air Outlet Pump"; - on = 1 + name = "Air Outlet Pump"; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "arrival"; - dir = 6 + dir = 6 }, /area/atmos) "chg" = ( @@ -54690,7 +54690,7 @@ "chj" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - name = "plasma tank pump" + name = "plasma tank pump" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -54706,7 +54706,7 @@ }, /obj/machinery/atmospherics/components/binary/pump{ dir = 2; - name = "atmospherics mix pump" + name = "atmospherics mix pump" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -54715,21 +54715,21 @@ "chm" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/machinery/airalarm{ desc = "This particular atmos control unit appears to have no access restrictions."; - dir = 8; - icon_state = "alarm0"; - locked = 0; - name = "all-access air alarm"; - pixel_x = 24; - req_access = "0"; - req_one_access = "0" + dir = 8; + icon_state = "alarm0"; + locked = 0; + name = "all-access air alarm"; + pixel_x = 24; + req_access = "0"; + req_one_access = "0" }, /obj/structure/cable/yellow{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -54739,8 +54739,8 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -54753,9 +54753,9 @@ }, /turf/simulated/floor/bluegrid{ name = "Killroom Floor"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/xenobiology) "chp" = ( @@ -54773,16 +54773,16 @@ }, /turf/simulated/floor/bluegrid{ name = "Killroom Floor"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/xenobiology) "chr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Kill Chamber"; - req_access_txt = "55" + req_access_txt = "55" }, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -54794,9 +54794,9 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/simulated/floor/bluegrid{ name = "Killroom Floor"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + nitrogen = 500; + oxygen = 0; + temperature = 80 }, /area/toxins/xenobiology) "cht" = ( @@ -54819,8 +54819,8 @@ "chv" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -54837,8 +54837,8 @@ "chx" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -54848,20 +54848,20 @@ "chy" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -54873,8 +54873,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -54882,8 +54882,8 @@ /obj/structure/reagent_dispensers/watertank, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -54896,8 +54896,8 @@ "chB" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -54911,8 +54911,8 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, /obj/structure/disposalpipe/segment{ @@ -54923,28 +54923,28 @@ "chD" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "chE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel, @@ -54953,7 +54953,7 @@ /obj/structure/table, /obj/item/weapon/book/manual/wiki/engineering_hacking{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/book/manual/wiki/engineering_construction, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54964,7 +54964,7 @@ "chG" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/clothing/gloves/color/black, /obj/item/weapon/extinguisher{ @@ -54982,8 +54982,8 @@ "chI" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -54992,7 +54992,7 @@ /obj/machinery/power/tracker, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -55001,7 +55001,7 @@ "chK" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -55013,7 +55013,7 @@ "chM" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -55021,84 +55021,84 @@ "chN" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "chO" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" + req_access = null; + req_access_txt = "10; 13" }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "chP" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "chQ" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "chR" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "chS" = ( /obj/machinery/door/airlock/engineering{ name = "Aft Port Solar Access"; - req_access_txt = "10" + req_access_txt = "10" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/portsolar) "chT" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/aft) "chU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /mob/living/simple_animal/mouse, /turf/simulated/floor/plating, @@ -55106,32 +55106,32 @@ "chV" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 9 + dir = 9 }, /area/engine/engineering) "chW" = ( /obj/machinery/camera{ c_tag = "Engineering Center"; - dir = 2; - pixel_x = 23 + dir = 2; + pixel_x = 23 }, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/engine/engineering) "chX" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/engine/engineering) "chY" = ( @@ -55150,14 +55150,14 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "yellow" @@ -55166,14 +55166,14 @@ "cib" = ( /obj/machinery/power/apc{ cell_type = 15000; - dir = 1; - name = "Engineering APC"; - pixel_x = 0; - pixel_y = 25 + dir = 1; + name = "Engineering APC"; + pixel_x = 0; + pixel_y = 25 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel{ icon_state = "yellow" @@ -55182,11 +55182,11 @@ "cic" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/table, /turf/simulated/floor/plasteel{ @@ -55196,11 +55196,11 @@ "cid" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/portable_atmospherics/pump, /turf/simulated/floor/plasteel{ @@ -55210,12 +55210,12 @@ "cie" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "yellow" @@ -55224,11 +55224,11 @@ "cif" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/table, /obj/item/weapon/tank/internals/emergency_oxygen/engi, @@ -55252,15 +55252,15 @@ "cii" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 5 + dir = 5 }, /area/engine/engineering) "cij" = ( /obj/machinery/computer/station_alert, /obj/item/device/radio/intercom{ broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 + name = "Station Intercom (General)"; + pixel_y = 20 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -55268,36 +55268,36 @@ /obj/machinery/computer/station_alert, /obj/machinery/button/door{ desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" }, /obj/machinery/button/door{ desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "11" + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "11" }, /obj/machinery/button/door{ id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cil" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/clothing/gloves/color/yellow, /obj/item/weapon/storage/belt/utility, @@ -55312,7 +55312,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cin" = ( @@ -55321,19 +55321,19 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cio" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cip" = ( @@ -55357,8 +55357,8 @@ "cis" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -55397,7 +55397,7 @@ }, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4; - name = "input gas connector port" + name = "input gas connector port" }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plasteel{ @@ -55407,7 +55407,7 @@ "ciz" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -55416,7 +55416,7 @@ "ciA" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - name = "input port pump" + name = "input port pump" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -55452,8 +55452,8 @@ "ciE" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -55474,7 +55474,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /obj/item/latexballon, /turf/simulated/floor/plating, @@ -55502,26 +55502,26 @@ "ciM" = ( /obj/machinery/power/compressor{ comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 + dir = 1; + luminosity = 2 }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ d2 = 2; - icon_state = "0-2" + icon_state = "0-2" }, /obj/machinery/camera{ c_tag = "Turbine Chamber"; - dir = 4; - network = list("Turbine") + dir = 4; + network = list("Turbine") }, /turf/simulated/floor/engine/vacuum, /area/maintenance/incinerator) "ciN" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55530,19 +55530,19 @@ "ciO" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/engine/engineering) "ciP" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -55550,8 +55550,8 @@ "ciQ" = ( /obj/machinery/power/solar_control{ id = "portsolar"; - name = "Aft Port Solar Control"; - track = 0 + name = "Aft Port Solar Control"; + track = 0 }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -55559,13 +55559,13 @@ "ciR" = ( /obj/machinery/power/apc{ dir = 4; - name = "Aft Port Solar APC"; - pixel_x = 23; - pixel_y = 2 + name = "Aft Port Solar APC"; + pixel_x = 23; + pixel_y = 2 }, /obj/machinery/camera{ c_tag = "Aft Port Solar Control"; - dir = 1 + dir = 1 }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -55580,7 +55580,7 @@ "ciU" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -55588,8 +55588,8 @@ "ciV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -55624,7 +55624,7 @@ "ciY" = ( /obj/machinery/door/poddoor{ id = "Secure Storage"; - name = "secure storage" + name = "secure storage" }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -55634,30 +55634,30 @@ "cja" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cjb" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cjc" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cjd" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/sign/nosmoking_2{ pixel_y = 32 @@ -55673,16 +55673,16 @@ "cje" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cjf" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/chair/office/dark{ dir = 1 @@ -55695,18 +55695,18 @@ "cjg" = ( /obj/machinery/camera{ c_tag = "Chief Engineer's Office"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/airalarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22 + icon_state = "alarm0"; + pixel_x = -22 }, /obj/machinery/computer/card/minor/ce, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cjh" = ( @@ -55716,32 +55716,32 @@ "cji" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cjj" = ( /obj/item/device/radio/intercom{ dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 + name = "Station Intercom (General)"; + pixel_x = 27 }, /obj/structure/filingcabinet/chestdrawer, /mob/living/simple_animal/parrot/Poly, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cjk" = ( @@ -55754,8 +55754,8 @@ "cjl" = ( /obj/machinery/camera{ c_tag = "Engineering MiniSat Access"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -55765,7 +55765,7 @@ "cjm" = ( /obj/machinery/door/airlock/command{ name = "MiniSat Access"; - req_access_txt = "65" + req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -55812,9 +55812,9 @@ "cjt" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -55823,8 +55823,8 @@ "cju" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - name = "Incinerator to Output"; - on = 0 + name = "Incinerator to Output"; + on = 0 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -55836,12 +55836,12 @@ "cjv" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -55867,7 +55867,7 @@ "cjz" = ( /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/asmaint) @@ -55905,40 +55905,40 @@ "cjF" = ( /obj/machinery/door/airlock/engineering{ name = "Aft Starboard Solar Access"; - req_access_txt = "10" + req_access_txt = "10" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cjG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/starboardsolar) "cjH" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/space, @@ -55947,7 +55947,7 @@ /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -55971,8 +55971,8 @@ }, /obj/machinery/camera{ c_tag = "Engineering Secure Storage"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -55998,17 +55998,17 @@ "cjQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cjR" = ( /obj/machinery/door/airlock/external{ name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" + req_access = null; + req_access_txt = "10;13" }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -56021,7 +56021,7 @@ "cjT" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -56032,7 +56032,7 @@ }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cjV" = ( @@ -56045,17 +56045,17 @@ }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/toxins/misc_lab) "cjX" = ( /obj/item/weapon/cartridge/engineering{ pixel_x = 4; - pixel_y = 5 + pixel_y = 5 }, /obj/item/weapon/cartridge/engineering{ pixel_x = -3; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/cartridge/engineering{ pixel_x = 3 @@ -56067,22 +56067,22 @@ /obj/item/weapon/cartridge/atmos, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cjY" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cjZ" = ( @@ -56092,11 +56092,11 @@ "cka" = ( /obj/machinery/door/poddoor/preopen{ id = "testlab"; - name = "test chamber blast door" + name = "test chamber blast door" }, /obj/machinery/door/airlock/glass_research{ name = "Test Chamber"; - req_access_txt = "47" + req_access_txt = "47" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -56149,7 +56149,7 @@ "ckh" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; - name = "Mix to MiniSat" + name = "Mix to MiniSat" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -56173,12 +56173,12 @@ "ckk" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/valve{ dir = 4; - name = "Incinerator to Space" + name = "Incinerator to Space" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -56192,7 +56192,7 @@ "ckm" = ( /obj/machinery/door/airlock/maintenance{ name = "Biohazard Disposals"; - req_access_txt = "12" + req_access_txt = "12" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -56211,7 +56211,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -56220,7 +56220,7 @@ /turf/space, /turf/simulated/wall/shuttle{ dir = 8; - icon_state = "diagonalWall3" + icon_state = "diagonalWall3" }, /area/shuttle/syndicate) "ckr" = ( @@ -56231,34 +56231,34 @@ "cks" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "ckt" = ( /obj/machinery/power/apc{ dir = 8; - name = "Aft Starboard Solar APC"; - pixel_x = -26; - pixel_y = 3 + name = "Aft Starboard Solar APC"; + pixel_x = -26; + pixel_y = 3 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cku" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/smes, /turf/simulated/floor/plating, @@ -56272,8 +56272,8 @@ "ckw" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -56282,8 +56282,8 @@ "ckx" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/light{ dir = 1 @@ -56295,8 +56295,8 @@ "cky" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -56305,8 +56305,8 @@ "ckz" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -56338,8 +56338,8 @@ /obj/machinery/cell_charger, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -56356,8 +56356,8 @@ "ckH" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -56395,7 +56395,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -56403,8 +56403,8 @@ "ckM" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -56412,27 +56412,27 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/toxins/misc_lab) "ckN" = ( /obj/machinery/door/airlock/glass_research{ name = "Test Chamber"; - req_access_txt = "47" + req_access_txt = "47" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/toxins/misc_lab) "ckO" = ( /obj/structure/grille, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -56440,31 +56440,31 @@ "ckP" = ( /obj/machinery/door/airlock/glass_command{ name = "Chief Engineer"; - req_access_txt = "56" + req_access_txt = "56" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "ckQ" = ( @@ -56476,8 +56476,8 @@ "ckR" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" + icon_state = "shock"; + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/engine/chiefs_office) @@ -56490,130 +56490,130 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "ckU" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "n2_sensor" + id_tag = "n2_sensor" }, /turf/simulated/floor/engine{ name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + nitrogen = 100000; + oxygen = 0 }, /area/atmos) "ckV" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; - frequency = 1441; - id = "n2_in" + frequency = 1441; + id = "n2_in" }, /turf/simulated/floor/engine{ name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + nitrogen = 100000; + oxygen = 0 }, /area/atmos) "ckW" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + 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 + nitrogen = 100000; + oxygen = 0 }, /area/atmos) "ckX" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "o2_sensor" + id_tag = "o2_sensor" }, /turf/simulated/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + nitrogen = 0; + oxygen = 100000 }, /area/atmos) "ckY" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; - frequency = 1441; - id = "o2_in" + frequency = 1441; + id = "o2_in" }, /turf/simulated/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + nitrogen = 0; + oxygen = 100000 }, /area/atmos) "ckZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + 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 + nitrogen = 0; + oxygen = 100000 }, /area/atmos) "cla" = ( /obj/machinery/air_sensor{ frequency = 1441; - id_tag = "air_sensor" + id_tag = "air_sensor" }, /turf/simulated/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "clb" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; - frequency = 1441; - id = "air_in" + frequency = 1441; + id = "air_in" }, /turf/simulated/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "clc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ dir = 1; - external_pressure_bound = 0; - frequency = 1441; - icon_state = "vent_map"; - id_tag = "air_out"; - internal_pressure_bound = 2000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + frequency = 1441; + icon_state = "vent_map"; + 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 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "cld" = ( @@ -56623,8 +56623,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/binary/pump{ dir = 4; - name = "Mix to Incinerator"; - on = 0 + name = "Mix to Incinerator"; + on = 0 }, /mob/living/simple_animal/mouse, /turf/simulated/floor/plasteel{ @@ -56642,7 +56642,7 @@ "clf" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/simple/general/visible, /turf/simulated/floor/plasteel{ @@ -56652,12 +56652,12 @@ "clg" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -29 + pixel_y = -29 }, /obj/structure/table, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen, /turf/simulated/floor/plating, @@ -56666,7 +56666,7 @@ /obj/machinery/light/small, /obj/structure/extinguisher_cabinet{ pixel_x = 0; - pixel_y = -31 + pixel_y = -31 }, /obj/machinery/computer/turbine_computer{ id = "incineratorturbine" @@ -56678,17 +56678,17 @@ "cli" = ( /obj/machinery/button/door{ id = "auxincineratorvent"; - name = "Auxiliary Vent Control"; - pixel_x = 6; - pixel_y = -24; - req_access_txt = "32" + name = "Auxiliary Vent Control"; + pixel_x = 6; + pixel_y = -24; + req_access_txt = "32" }, /obj/machinery/button/door{ id = "turbinevent"; - name = "Turbine Vent Control"; - pixel_x = -6; - pixel_y = -24; - req_access_txt = "32" + name = "Turbine Vent Control"; + pixel_x = -6; + pixel_y = -24; + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -56701,8 +56701,8 @@ "clj" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -56725,7 +56725,7 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/general/hidden{ icon_state = "manifold"; - dir = 1 + dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, @@ -56747,8 +56747,8 @@ "clp" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" + req_access = null; + req_access_txt = "10; 13" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -56757,7 +56757,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -56771,7 +56771,7 @@ /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; - name = "3maintenance loot spawner" + name = "3maintenance loot spawner" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -56805,8 +56805,8 @@ "clx" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) @@ -56814,19 +56814,19 @@ /obj/structure/chair/stool, /obj/machinery/camera{ c_tag = "Aft Starboard Solar Control"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "clz" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/light/small{ dir = 4 @@ -56836,11 +56836,11 @@ "clA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -56853,13 +56853,13 @@ "clC" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -56868,30 +56868,30 @@ "clD" = ( /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/engine/engine_smes) "clE" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/smes/engineering, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/engine/engine_smes) "clF" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -56900,19 +56900,19 @@ "clG" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/smes/engineering, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/engine/engine_smes) "clH" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/wall, /area/engine/engineering) @@ -56932,12 +56932,12 @@ "clK" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 + freerange = 1; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -56955,33 +56955,33 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "clN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "clO" = ( /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "diagonalWall3" + icon_state = "diagonalWall3" }, /area/shuttle/syndicate) "clP" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "clQ" = ( /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "clR" = ( @@ -56990,7 +56990,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "clS" = ( @@ -57003,30 +57003,30 @@ /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/simulated/floor/engine{ name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + nitrogen = 100000; + oxygen = 0 }, /area/atmos) "clU" = ( /turf/simulated/floor/engine{ name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + nitrogen = 100000; + oxygen = 0 }, /area/atmos) "clV" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + nitrogen = 0; + oxygen = 100000 }, /area/atmos) "clW" = ( /turf/simulated/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + nitrogen = 0; + oxygen = 100000 }, /area/atmos) "clX" = ( @@ -57038,25 +57038,25 @@ "clY" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /turf/simulated/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "clZ" = ( /turf/simulated/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "cma" = ( /obj/machinery/door/window{ name = "Cockpit"; - req_access_txt = "150" + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -57084,18 +57084,18 @@ "cmf" = ( /obj/machinery/door/airlock/glass{ autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_interior"; - locked = 1; - name = "Turbine Interior Airlock"; - req_access_txt = "32" + frequency = 1449; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Turbine Interior Airlock"; + req_access_txt = "32" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/engine, /area/maintenance/incinerator) @@ -57109,14 +57109,14 @@ "cmh" = ( /obj/structure/disposalpipe/junction{ dir = 2; - icon_state = "pipe-y" + icon_state = "pipe-y" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "cmi" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plating, @@ -57170,7 +57170,7 @@ "cmq" = ( /obj/effect/landmark{ name = "xeno_spawn"; - pixel_x = -1 + pixel_x = -1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating{ @@ -57210,44 +57210,44 @@ "cmv" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cmw" = ( /obj/machinery/power/solar_control{ id = "starboardsolar"; - name = "Aft Starboard Solar Control"; - track = 0 + name = "Aft Starboard Solar Control"; + track = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cmx" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = -32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cmy" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -57256,13 +57256,13 @@ "cmz" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -57271,29 +57271,29 @@ "cmA" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/structure/cable/yellow{ d2 = 4; - icon_state = "0-4" + icon_state = "0-4" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/engine/engine_smes) "cmB" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/structure/cable/yellow{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/engine/engine_smes) "cmC" = ( @@ -57303,8 +57303,8 @@ "cmD" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" + freq = 1400; + location = "Engineering" }, /obj/structure/plasticflaps{ opacity = 1 @@ -57317,30 +57317,30 @@ /turf/space, /turf/simulated/wall/shuttle{ dir = 4; - icon_state = "diagonalWall3" + icon_state = "diagonalWall3" }, /area/shuttle/syndicate) "cmF" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cmG" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cmH" = ( @@ -57355,14 +57355,14 @@ /obj/machinery/vending/engivend, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cmJ" = ( /obj/structure/table, /obj/item/weapon/storage/box/zipties{ pixel_x = 1; - pixel_y = 2 + pixel_y = 2 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -57371,36 +57371,36 @@ "cmK" = ( /obj/machinery/requests_console{ announcementConsole = 0; - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cmL" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cmM" = ( /obj/machinery/sleeper{ icon_state = "sleeper-open"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -57412,13 +57412,13 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellow" + icon_state = "yellow" }, /area/engine/engineering) "cmO" = ( @@ -57435,23 +57435,23 @@ "cmQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cmR" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -57461,7 +57461,7 @@ /obj/item/stack/medical/bruise_pack, /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -57477,24 +57477,24 @@ /obj/machinery/light/small, /turf/simulated/floor/engine{ name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + nitrogen = 100000; + oxygen = 0 }, /area/atmos) "cmV" = ( /obj/machinery/light/small, /turf/simulated/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + nitrogen = 0; + oxygen = 100000 }, /area/atmos) "cmW" = ( /obj/machinery/light/small, /turf/simulated/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "cmX" = ( @@ -57506,40 +57506,40 @@ "cmY" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 2; - on = 1 + on = 1 }, /obj/machinery/doorButtons/access_button{ idDoor = "incinerator_airlock_exterior"; - idSelf = "incinerator_access_control"; - layer = 3.1; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = -24 + idSelf = "incinerator_access_control"; + layer = 3.1; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = -24 }, /obj/machinery/light/small{ dir = 8 }, /obj/structure/sign/fire{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/engine, /area/maintenance/incinerator) "cmZ" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; - on = 1 + on = 1 }, /obj/structure/sign/fire{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/doorButtons/access_button{ idSelf = "incinerator_access_control"; - idDoor = "incinerator_airlock_interior"; - name = "Incinerator airlock control"; - pixel_x = -8; - pixel_y = 24 + idDoor = "incinerator_airlock_interior"; + name = "Incinerator airlock control"; + pixel_x = -8; + pixel_y = 24 }, /obj/machinery/light/small{ dir = 4 @@ -57549,15 +57549,15 @@ "cna" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/engine, /area/maintenance/incinerator) "cnb" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -57576,7 +57576,7 @@ "cne" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, @@ -57585,7 +57585,7 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -57594,7 +57594,7 @@ /obj/structure/table, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/effect/spawner/lootdrop/maintenance, /obj/item/weapon/clipboard, @@ -57611,10 +57611,10 @@ "cni" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 }, /turf/indestructible/opshuttle, /area/shuttle/syndicate) @@ -57626,27 +57626,27 @@ "cnk" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" + req_access = null; + req_access_txt = "10; 13" }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cnl" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -57654,17 +57654,17 @@ "cnm" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; - on = 1 + on = 1 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -57673,47 +57673,47 @@ "cnn" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/engine/engine_smes) "cno" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/smes/engineering, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 4 + dir = 4 }, /area/engine/engine_smes) "cnp" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/camera{ c_tag = "SMES Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -57722,21 +57722,21 @@ "cnq" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/smes/engineering, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 1 + dir = 1 }, /area/engine/engine_smes) "cnr" = ( /obj/machinery/door/window/southleft{ base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Engineering Delivery"; - req_access_txt = "10" + dir = 2; + icon_state = "left"; + name = "Engineering Delivery"; + req_access_txt = "10" }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -57751,17 +57751,17 @@ "cnt" = ( /obj/machinery/camera{ c_tag = "Engineering West"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "yellowcorner" + icon_state = "yellowcorner" }, /area/engine/engineering) "cnu" = ( @@ -57774,33 +57774,33 @@ "cnv" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the singularity chamber."; - dir = 1; - layer = 4; - name = "Singularity Engine Telescreen"; - network = list("Singularity"); - pixel_x = 0; - pixel_y = -30 + dir = 1; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity"); + pixel_x = 0; + pixel_y = -30 }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cnw" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cnx" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -57819,8 +57819,8 @@ "cnA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, @@ -57832,40 +57832,40 @@ "cnC" = ( /obj/machinery/door/airlock/glass{ autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_exterior"; - locked = 1; - name = "Turbine Exterior Airlock"; - req_access_txt = "32" + frequency = 1449; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Turbine Exterior Airlock"; + req_access_txt = "32" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/engine, /area/maintenance/incinerator) "cnD" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/asmaint) "cnE" = ( /obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-j2" + icon_state = "pipe-j2" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "cnF" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 2; - name = "Waste Out"; - on = 1 + name = "Waste Out"; + on = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -57876,7 +57876,7 @@ /obj/structure/closet/emcloset, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -57887,9 +57887,9 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -57897,23 +57897,23 @@ /obj/structure/table, /obj/item/weapon/c4{ pixel_x = 2; - pixel_y = -5 + pixel_y = -5 }, /obj/item/weapon/c4{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/c4{ pixel_x = 2; - pixel_y = -3 + pixel_y = -3 }, /obj/item/weapon/c4{ pixel_x = -2; - pixel_y = -1 + pixel_y = -1 }, /obj/item/weapon/c4{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -57927,17 +57927,17 @@ "cnK" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "cnL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57948,22 +57948,22 @@ "cnM" = ( /obj/machinery/door/window{ name = "SMES Chamber"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -57973,11 +57973,11 @@ /obj/structure/window/reinforced, /obj/structure/cable/yellow{ d2 = 4; - icon_state = "0-4" + icon_state = "0-4" }, /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -57990,8 +57990,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -58000,12 +58000,12 @@ "cnP" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/structure/window/reinforced, /obj/structure/cable/yellow{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -58014,8 +58014,8 @@ "cnQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/light{ dir = 1 @@ -58025,14 +58025,14 @@ }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cnR" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58043,22 +58043,22 @@ /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/camera{ c_tag = "SMES Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cnT" = ( @@ -58068,15 +58068,15 @@ "cnU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58095,18 +58095,18 @@ /turf/space, /turf/simulated/wall/shuttle{ dir = 1; - icon_state = "diagonalWall3" + icon_state = "diagonalWall3" }, /area/shuttle/syndicate) "cnX" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58116,8 +58116,8 @@ "cnY" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/sign/nosmoking_2{ pixel_y = 32 @@ -58130,8 +58130,8 @@ "cnZ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/airalarm{ pixel_y = 23 @@ -58144,8 +58144,8 @@ "coa" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58156,13 +58156,13 @@ "cob" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58180,12 +58180,12 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -58194,8 +58194,8 @@ "coe" = ( /obj/machinery/door/window{ dir = 4; - name = "EVA Storage"; - req_access_txt = "150" + name = "EVA Storage"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58212,10 +58212,10 @@ "cog" = ( /obj/machinery/door/window{ base_state = "right"; - dir = 4; - icon_state = "right"; - name = "EVA Storage"; - req_access_txt = "150" + dir = 4; + icon_state = "right"; + name = "EVA Storage"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58237,12 +58237,12 @@ "coj" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 + freerange = 1; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58257,8 +58257,8 @@ "col" = ( /obj/machinery/door/window{ dir = 4; - name = "Infirmary"; - req_access_txt = "150" + name = "Infirmary"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -58267,10 +58267,10 @@ "com" = ( /obj/machinery/door/window{ base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary"; - req_access_txt = "150" + dir = 4; + icon_state = "right"; + name = "Infirmary"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -58291,7 +58291,7 @@ /obj/structure/table, /obj/item/weapon/stock_parts/cell/high{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/stock_parts/cell/high, /turf/simulated/floor/plasteel/shuttle{ @@ -58301,49 +58301,49 @@ "cop" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; - frequency = 1441; - id = "inc_in" + frequency = 1441; + id = "inc_in" }, /turf/simulated/floor/engine/vacuum, /area/maintenance/incinerator) "coq" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - external_pressure_bound = 0; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 0; - pressure_checks = 2; - pump_direction = 0 + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 0; + pressure_checks = 2; + pump_direction = 0 }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = -32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 }, /turf/simulated/floor/engine/vacuum, /area/maintenance/incinerator) "cor" = ( /obj/machinery/igniter{ icon_state = "igniter0"; - id = "Incinerator"; - luminosity = 2; - on = 0 + id = "Incinerator"; + luminosity = 2; + on = 0 }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/engine/vacuum, /area/maintenance/incinerator) "cos" = ( /obj/machinery/door/poddoor{ id = "auxincineratorvent"; - name = "Auxiliary Incinerator Vent" + name = "Auxiliary Incinerator Vent" }, /turf/simulated/floor/engine/vacuum, /area/maintenance/incinerator) @@ -58364,12 +58364,12 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 9; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cow" = ( @@ -58378,12 +58378,12 @@ }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cox" = ( @@ -58392,7 +58392,7 @@ }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "coy" = ( @@ -58402,12 +58402,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "coz" = ( @@ -58416,12 +58416,12 @@ }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "coA" = ( @@ -58430,30 +58430,30 @@ }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "coB" = ( /obj/machinery/door/airlock/engineering{ name = "SMES Room"; - req_access_txt = "32" + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "delivery"; - name = "floor" + name = "floor" }, /area/engine/engine_smes) "coC" = ( @@ -58464,12 +58464,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "coD" = ( @@ -58508,11 +58508,11 @@ /obj/item/device/assembly/signaler, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; - pixel_y = 4 + pixel_y = 4 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58521,8 +58521,8 @@ "coH" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58541,8 +58541,8 @@ /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58552,8 +58552,8 @@ "coK" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58563,13 +58563,13 @@ "coL" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58586,7 +58586,7 @@ "coN" = ( /obj/machinery/door/window/westright{ name = "Tool Storage"; - req_access_txt = "150" + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58603,8 +58603,8 @@ "coP" = ( /obj/machinery/door/window{ dir = 1; - name = "Surgery"; - req_access_txt = "150" + name = "Surgery"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -58617,12 +58617,12 @@ }, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/firstaid/brute, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -58631,8 +58631,8 @@ "coR" = ( /obj/machinery/door/window{ dir = 8; - name = "Tool Storage"; - req_access_txt = "150" + name = "Tool Storage"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58641,13 +58641,13 @@ "coS" = ( /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "south maintenance airlock"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "south maintenance airlock"; + turf_type = /turf/space; + width = 18 }, /turf/space, /area/space) @@ -58662,9 +58662,9 @@ "coV" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 }, /obj/structure/mirror{ pixel_x = 30 @@ -58687,7 +58687,7 @@ /obj/structure/table, /obj/item/weapon/grenade/syndieminibomb{ pixel_x = 4; - pixel_y = 2 + pixel_y = 2 }, /obj/item/weapon/grenade/syndieminibomb{ pixel_x = -1 @@ -58700,8 +58700,8 @@ /obj/machinery/nuclearbomb/syndicate, /obj/machinery/door/window{ dir = 1; - name = "Secure Storage"; - req_access_txt = "150" + name = "Secure Storage"; + req_access_txt = "150" }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor4" @@ -58716,11 +58716,11 @@ "cpa" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /turf/simulated/floor/plasteel{ dir = 5; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cpb" = ( @@ -58737,21 +58737,21 @@ }, /turf/simulated/wall/shuttle{ icon_state = "swall_f6"; - dir = 2 + dir = 2 }, /area/shuttle/pod_4) "cpd" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/pod_4) "cpe" = ( /turf/space, /turf/simulated/wall/shuttle{ dir = 2; - icon_state = "swall_f10"; - layer = 2 + icon_state = "swall_f10"; + layer = 2 }, /area/shuttle/pod_4) "cpf" = ( @@ -58770,9 +58770,9 @@ "cpi" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/lattice/catwalk, /turf/space, @@ -58780,22 +58780,22 @@ "cpj" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cpk" = ( /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 2 + dir = 2 }, /area/engine/engine_smes) "cpl" = ( @@ -58804,18 +58804,18 @@ "cpm" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cpn" = ( @@ -58827,38 +58827,38 @@ "cpo" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cpp" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cpq" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -58897,21 +58897,21 @@ }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cpv" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -58926,39 +58926,39 @@ "cpx" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4"; - tag = "" + d2 = 4; + icon_state = "2-4"; + tag = "" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "cpy" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ id = "Singularity"; - name = "radiation shutters" + name = "radiation shutters" }, /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "bot" + icon_state = "bot" }, /area/engine/engineering) "cpz" = ( @@ -58968,8 +58968,8 @@ "cpA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating, @@ -58977,12 +58977,12 @@ "cpB" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/engine/engineering) "cpC" = ( @@ -58993,13 +58993,13 @@ "cpD" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -59033,8 +59033,8 @@ "cpI" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Four"; - req_access = null; - req_access_txt = "0" + req_access = null; + req_access_txt = "0" }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -59044,8 +59044,8 @@ }, /obj/docking_port/mobile/pod{ dir = 4; - id = "pod4"; - name = "escape pod 4" + id = "pod4"; + name = "escape pod 4" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_4) @@ -59055,14 +59055,14 @@ }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 + layer = 3; + pixel_x = 32; + pixel_y = 0 }, /obj/machinery/computer/shuttle/pod{ pixel_x = -32; - possible_destinations = "pod_asteroid2"; - shuttleId = "pod2" + possible_destinations = "pod_asteroid2"; + shuttleId = "pod2" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_2) @@ -59094,8 +59094,8 @@ /obj/structure/lattice, /obj/machinery/atmospherics/components/binary/pump{ dir = 2; - name = "Incinerator Output Pump"; - on = 1 + name = "Incinerator Output Pump"; + on = 1 }, /turf/space, /area/maintenance/incinerator) @@ -59119,24 +59119,24 @@ /obj/structure/cable, /obj/machinery/power/apc{ dir = 2; - name = "SMES room APC"; - pixel_y = -24 + name = "SMES room APC"; + pixel_y = -24 }, /turf/simulated/floor/plasteel{ dir = 10; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cpT" = ( /obj/structure/table, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -35 + pixel_y = -35 }, /obj/item/weapon/stock_parts/cell/high/plus, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engine_smes) "cpU" = ( @@ -59145,7 +59145,7 @@ }, /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "warning" @@ -59155,17 +59155,17 @@ /obj/structure/table, /obj/machinery/camera{ c_tag = "Engineering Storage"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cpW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -59179,8 +59179,8 @@ "cpY" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -59191,95 +59191,95 @@ }, /obj/item/device/flashlight{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /obj/item/device/flashlight{ pixel_x = 1; - pixel_y = 5 + pixel_y = 5 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqa" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = -32 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = -32 }, /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqb" = ( /obj/item/clothing/glasses/meson, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqc" = ( /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqd" = ( /obj/machinery/button/door{ id = "Singularity"; - name = "Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "11" + name = "Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "11" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqe" = ( /obj/structure/chair/stool, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqf" = ( /obj/machinery/button/door{ id = "Singularity"; - name = "Shutters Control"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "11" + name = "Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "11" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "cqg" = ( @@ -59294,14 +59294,14 @@ "cqi" = ( /obj/machinery/button/door{ id = "Singularity"; - name = "Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "11" + name = "Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "11" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/engine/engineering) "cqj" = ( @@ -59313,49 +59313,49 @@ "cqk" = ( /obj/machinery/button/door{ id = "Singularity"; - name = "Shutters Control"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "11" + name = "Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "11" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cql" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqm" = ( /obj/structure/rack{ dir = 8; - layer = 2.9 + layer = 2.9 }, /obj/item/clothing/mask/gas{ pixel_x = 3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas{ pixel_x = -3; - pixel_y = -3 + pixel_y = -3 }, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqn" = ( @@ -59365,18 +59365,18 @@ "cqo" = ( /obj/structure/sign/pods{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ dir = 6; - icon_state = "warning" + icon_state = "warning" }, /area/engine/engineering) "cqp" = ( /obj/machinery/camera{ c_tag = "Engineering Escape Pod"; - dir = 4; - network = list("SS13") + dir = 4; + network = list("SS13") }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -59387,35 +59387,35 @@ }, /turf/simulated/wall/shuttle{ icon_state = "swall_f5"; - dir = 2 + dir = 2 }, /area/shuttle/pod_4) "cqr" = ( /turf/space, /turf/simulated/wall/shuttle{ icon_state = "swall_f9"; - dir = 2 + dir = 2 }, /area/shuttle/pod_4) "cqs" = ( /obj/structure/sign/fire{ pixel_x = 0; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/incinerator) "cqt" = ( /obj/machinery/door/poddoor{ id = "turbinevent"; - name = "Turbine Vent" + name = "Turbine Vent" }, /turf/simulated/floor/engine/vacuum, /area/maintenance/incinerator) "cqu" = ( /obj/machinery/door/airlock/external{ name = "External Access"; - req_access = null; - req_access_txt = "13" + req_access = null; + req_access_txt = "13" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -59430,7 +59430,7 @@ }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -59443,16 +59443,16 @@ "cqy" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) "cqz" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -59463,53 +59463,53 @@ "cqA" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/airlock/external{ name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" + req_access = null; + req_access_txt = "10;13" }, /turf/simulated/floor/plating, /area/engine/engineering) "cqB" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "Singularity"; - name = "radiation shutters" + name = "radiation shutters" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/engine/engineering) "cqC" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "Singularity"; - name = "radiation shutters" + name = "radiation shutters" }, /turf/simulated/floor/plating, /area/engine/engineering) "cqD" = ( /obj/item/stack/cable_coil{ pixel_x = 3; - pixel_y = -7 + pixel_y = -7 }, /obj/item/stack/cable_coil{ pixel_x = 3; - pixel_y = -7 + pixel_y = -7 }, /obj/item/weapon/crowbar, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "cqE" = ( @@ -59523,7 +59523,7 @@ "cqG" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/engine/engineering) "cqH" = ( @@ -59545,7 +59545,7 @@ /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; - name = "2maintenance loot spawner" + name = "2maintenance loot spawner" }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -59558,8 +59558,8 @@ "cqM" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating, @@ -59578,7 +59578,7 @@ /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 3; - pixel_y = -7 + pixel_y = -7 }, /obj/item/stack/cable_coil, /obj/item/weapon/electronics/airlock, @@ -59590,7 +59590,7 @@ /obj/item/weapon/folder/yellow, /obj/item/clothing/ears/earmuffs{ pixel_x = -3; - pixel_y = -2 + pixel_y = -2 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -59612,15 +59612,15 @@ "cqT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -59631,14 +59631,14 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/engine/engineering) "cqV" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/engine/engineering) "cqW" = ( @@ -59649,18 +59649,18 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/engine/engineering) "cqX" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "cqY" = ( @@ -59684,7 +59684,7 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/engine/engineering) "crd" = ( @@ -59697,15 +59697,15 @@ "cre" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32 }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -59725,24 +59725,24 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "cri" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "crj" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/solar{ id = "starboardsolar"; - name = "Starboard Solar Array" + name = "Starboard Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -59774,7 +59774,7 @@ /obj/structure/grille, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -59782,20 +59782,20 @@ "crp" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" + icon_state = "shock"; + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/engine/engineering) "crq" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/grille, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; - name = "brig shutters" + name = "brig shutters" }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -59805,11 +59805,11 @@ /obj/structure/cable, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/window/reinforced/fulltile, /turf/simulated/floor/plating, @@ -59817,21 +59817,21 @@ "crs" = ( /obj/structure/cable/yellow{ icon_state = "1-4"; - d1 = 1; - d2 = 4 + d1 = 1; + d2 = 4 }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 10 + dir = 10 }, /area/engine/engineering) "crt" = ( /obj/item/weapon/wirecutters, /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" + d2 = 8; + icon_state = "2-8"; + tag = "" }, /turf/simulated/floor/plating{ icon_state = "warnplate" @@ -59845,7 +59845,7 @@ "crv" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 6 + dir = 6 }, /area/engine/engineering) "crw" = ( @@ -59862,37 +59862,37 @@ "cry" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s6"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "crz" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s10"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "crA" = ( /obj/structure/transit_tube/station{ dir = 8; - icon_state = "closed"; - reverse_launch = 1 + icon_state = "closed"; + reverse_launch = 1 }, /obj/structure/transit_tube_pod, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "crB" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/lattice/catwalk, /turf/space, @@ -59900,19 +59900,19 @@ "crC" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/lattice/catwalk, /turf/space, @@ -59920,7 +59920,7 @@ "crD" = ( /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -59928,19 +59928,19 @@ "crE" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/lattice/catwalk, /turf/space, @@ -59948,7 +59948,7 @@ "crF" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -59956,13 +59956,13 @@ "crG" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/lattice/catwalk, /turf/space, @@ -59971,17 +59971,17 @@ /obj/structure/grille, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "crI" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plating{ icon_state = "warnplate" @@ -59990,16 +59990,16 @@ "crJ" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "crK" = ( /obj/machinery/camera/emp_proof{ c_tag = "Singularity North-West"; - dir = 2; - network = list("Singularity") + dir = 2; + network = list("Singularity") }, /obj/machinery/power/grounding_rod, /turf/simulated/floor/plating/airless, @@ -60008,16 +60008,16 @@ /obj/structure/grille, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "crM" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) @@ -60050,14 +60050,14 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/engine/engineering) "crS" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "starboardsolar"; - name = "Starboard Solar Array" + name = "Starboard Solar Array" }, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel" @@ -60067,8 +60067,8 @@ /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) @@ -60089,10 +60089,10 @@ /obj/structure/closet/emcloset, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -60107,31 +60107,31 @@ /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "csa" = ( /turf/simulated/floor/plating/airless{ dir = 8; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/engine/engineering) "csb" = ( /obj/machinery/power/emitter{ anchored = 1; - dir = 4; - state = 2 + dir = 4; + state = 2 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) @@ -60143,40 +60143,40 @@ "csd" = ( /turf/simulated/floor/plating/airless{ dir = 4; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/engine/engineering) "cse" = ( /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "csf" = ( /obj/machinery/power/emitter{ anchored = 1; - dir = 8; - state = 2 + dir = 8; + state = 2 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "csg" = ( /obj/machinery/door/airlock/external{ name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" + req_access = null; + req_access_txt = "10;13" }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -60230,11 +60230,11 @@ "csq" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the turbine vent."; - dir = 1; - name = "turbine vent monitor"; - network = list("Turbine"); - pixel_x = 0; - pixel_y = -29 + dir = 1; + name = "turbine vent monitor"; + network = list("Turbine"); + pixel_x = 0; + pixel_y = -29 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -60246,21 +60246,21 @@ "csr" = ( /obj/machinery/doorButtons/airlock_controller{ idExterior = "incinerator_airlock_exterior"; - idSelf = "incinerator_access_control"; - idInterior = "incinerator_airlock_interior"; - name = "Incinerator Access Console"; - pixel_x = 6; - pixel_y = -26; - req_access_txt = "12" + idSelf = "incinerator_access_control"; + idInterior = "incinerator_airlock_interior"; + name = "Incinerator Access Console"; + pixel_x = 6; + pixel_y = -26; + req_access_txt = "12" }, /obj/machinery/button/ignition{ id = "Incinerator"; - pixel_x = -6; - pixel_y = -24 + pixel_x = -6; + pixel_y = -24 }, /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4; - initialize_directions = 11 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel{ @@ -60270,8 +60270,8 @@ "css" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60279,8 +60279,8 @@ "cst" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60288,8 +60288,8 @@ "csu" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60297,8 +60297,8 @@ "csv" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60311,8 +60311,8 @@ "csx" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60322,7 +60322,7 @@ /obj/item/weapon/weldingtool, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -60335,7 +60335,7 @@ "csA" = ( /obj/machinery/field/generator{ anchored = 1; - state = 2 + state = 2 }, /turf/simulated/floor/plating/airless, /area/space/nearstation) @@ -60347,7 +60347,7 @@ "csC" = ( /turf/simulated/floor/plating/airless{ dir = 1; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "csD" = ( @@ -60358,7 +60358,7 @@ "csE" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/lattice/catwalk, /turf/space, @@ -60366,10 +60366,10 @@ "csF" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 }, /turf/simulated/wall/r_wall, /area/engine/engineering) @@ -60379,8 +60379,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60388,13 +60388,13 @@ "csH" = ( /turf/simulated/floor/plating/airless{ dir = 9; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "csI" = ( /turf/simulated/floor/plating/airless{ dir = 5; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "csJ" = ( @@ -60404,12 +60404,12 @@ "csK" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -60447,7 +60447,7 @@ /obj/machinery/the_singularitygen, /turf/simulated/floor/plating/airless{ dir = 8; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "csS" = ( @@ -60457,7 +60457,7 @@ "csT" = ( /obj/structure/transit_tube{ dir = 8; - icon_state = "Block" + icon_state = "Block" }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) @@ -60470,7 +60470,7 @@ "csV" = ( /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/turret_protected/aisat_interior) "csW" = ( @@ -60479,32 +60479,32 @@ }, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/turret_protected/aisat_interior) "csX" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) "csY" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/structure/cable, /obj/structure/lattice/catwalk, @@ -60513,9 +60513,9 @@ "csZ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/structure/lattice/catwalk, /turf/space, @@ -60523,8 +60523,8 @@ "cta" = ( /obj/machinery/door/airlock/external{ name = "MiniSat External Access"; - req_access = null; - req_access_txt = "65;13" + req_access = null; + req_access_txt = "65;13" }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) @@ -60547,7 +60547,7 @@ "ctf" = ( /turf/simulated/floor/plating/airless{ dir = 2; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "ctg" = ( @@ -60557,8 +60557,8 @@ "cth" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = -29 + pixel_x = 0; + pixel_y = -29 }, /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -60574,15 +60574,15 @@ "ctj" = ( /obj/machinery/camera{ c_tag = "MiniSat Pod Access"; - dir = 1; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 2; - on = 1 + on = 1 }, /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -60597,30 +60597,30 @@ /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "ctm" = ( /turf/simulated/floor/plating/airless{ dir = 10; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "ctn" = ( /obj/structure/grille, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "cto" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Foyer"; - req_one_access_txt = "65" + req_one_access_txt = "65" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -60649,12 +60649,12 @@ }, /obj/item/weapon/phone{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/pen, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "cts" = ( @@ -60676,7 +60676,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "ctt" = ( @@ -60688,9 +60688,9 @@ "ctu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -60703,13 +60703,13 @@ "ctw" = ( /obj/machinery/airalarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23; + pixel_y = 0 }, /obj/machinery/computer/station_alert, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "ctx" = ( @@ -60730,7 +60730,7 @@ "ctz" = ( /obj/machinery/door/poddoor/shutters{ id = "teledoor"; - name = "MiniSat Teleport Access" + name = "MiniSat Teleport Access" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -60745,7 +60745,7 @@ }, /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -60761,16 +60761,16 @@ "ctC" = ( /obj/machinery/camera/emp_proof{ c_tag = "Singularity West"; - dir = 1; - network = list("Singularity") + dir = 1; + network = list("Singularity") }, /turf/simulated/floor/plating/airless, /area/engine/engineering) "ctD" = ( /obj/machinery/camera/emp_proof{ c_tag = "Singularity East"; - dir = 1; - network = list("Singularity") + dir = 1; + network = list("Singularity") }, /turf/simulated/floor/plating/airless, /area/engine/engineering) @@ -60781,19 +60781,19 @@ "ctF" = ( /obj/machinery/button/door{ id = "teledoor"; - name = "MiniSat Teleport Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "17;65" + name = "MiniSat Teleport Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "17;65" }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 4 + dir = 4 }, /area/turret_protected/aisat_interior) "ctG" = ( @@ -60802,9 +60802,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -60817,11 +60817,11 @@ /obj/machinery/computer/monitor, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "ctI" = ( @@ -60835,9 +60835,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" + d2 = 8; + icon_state = "2-8"; + tag = "" }, /obj/effect/landmark/start{ name = "Cyborg" @@ -60849,7 +60849,7 @@ "ctK" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Teleporter"; - req_access_txt = "17;65" + req_access_txt = "17;65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -60866,13 +60866,13 @@ /obj/machinery/bluespace_beacon, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 4 + dir = 4 }, /area/turret_protected/aisat_interior) "ctN" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; - dir = 10 + dir = 10 }, /obj/structure/lattice, /turf/space, @@ -60881,14 +60881,14 @@ /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; - dir = 5 + dir = 5 }, /turf/space, /area/space) "ctP" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -60898,24 +60898,24 @@ /obj/structure/table, /obj/machinery/microwave{ pixel_x = 0; - pixel_y = 4 + pixel_y = 4 }, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "ctR" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 }, /turf/simulated/wall, /area/engine/engineering) @@ -60926,9 +60926,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -60938,13 +60938,13 @@ /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -60962,13 +60962,13 @@ }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/apc{ dir = 4; - name = "MiniSat Foyer APC"; - pixel_x = 27; - pixel_y = 0 + name = "MiniSat Foyer APC"; + pixel_x = 27; + pixel_y = 0 }, /obj/structure/chair, /turf/simulated/floor/plasteel{ @@ -60982,19 +60982,19 @@ "ctX" = ( /obj/machinery/camera{ c_tag = "MiniSat Teleporter"; - dir = 1; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "warndark"; - dir = 4 + dir = 4 }, /area/turret_protected/aisat_interior) "ctY" = ( @@ -61015,8 +61015,8 @@ "cub" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = -29 + pixel_x = 0; + pixel_y = -29 }, /obj/machinery/light/small, /turf/simulated/floor/plasteel{ @@ -61033,25 +61033,25 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "cud" = ( /obj/machinery/turretid{ control_area = null; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 0; - pixel_y = -24; - req_access = list(65) + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = -24; + req_access = list(65) }, /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera/motion{ c_tag = "MiniSat Foyer"; - dir = 1; - network = list("MiniSat") + dir = 1; + network = list("MiniSat") }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61060,8 +61060,8 @@ "cue" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -61080,7 +61080,7 @@ /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "cuh" = ( @@ -61109,14 +61109,14 @@ "cul" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ name = "MiniSat Antechamber"; - req_one_access_txt = "65" + req_one_access_txt = "65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61131,11 +61131,11 @@ "cun" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 2; - name = "Mix to MiniSat" + name = "Mix to MiniSat" }, /turf/simulated/floor/plating{ icon_plating = "warnplate"; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61144,12 +61144,12 @@ /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/plating{ tag = "icon-warnplatecorner"; - icon_state = "warnplatecorner"; - dir = 2 + icon_state = "warnplatecorner"; + dir = 2 }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61157,21 +61157,21 @@ "cup" = ( /obj/structure/showcase{ density = 0; - desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; - dir = 8; - icon = 'icons/mob/robots.dmi'; - icon_state = "robot_old"; - name = "Cyborg Statue"; - pixel_x = 9; - pixel_y = 2 + desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 }, /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plating{ icon_plating = "warnplate"; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61179,12 +61179,12 @@ "cuq" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; - name = "Air Out"; - on = 0 + name = "Air Out"; + on = 0 }, /turf/simulated/floor/plating{ icon_plating = "warnplate"; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61192,38 +61192,38 @@ "cur" = ( /obj/structure/showcase{ density = 0; - desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; - dir = 4; - icon = 'icons/mob/robots.dmi'; - icon_state = "robot_old"; - name = "Cyborg Statue"; - pixel_x = -9; - pixel_y = 2 + desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "darkbluecorners" + icon_state = "darkbluecorners" }, /area/turret_protected/aisat_interior) "cus" = ( /obj/structure/showcase{ density = 0; - desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; - dir = 8; - icon = 'icons/mob/robots.dmi'; - icon_state = "robot_old"; - name = "Cyborg Statue"; - pixel_x = 9; - pixel_y = 2 + desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners"; - dir = 4 + dir = 4 }, /area/turret_protected/aisat_interior) "cut" = ( @@ -61244,8 +61244,8 @@ "cuu" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -61257,21 +61257,21 @@ "cuv" = ( /obj/structure/showcase{ density = 0; - desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; - dir = 4; - icon = 'icons/mob/robots.dmi'; - icon_state = "robot_old"; - name = "Cyborg Statue"; - pixel_x = -9; - pixel_y = 2 + desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 }, /obj/structure/extinguisher_cabinet{ pixel_x = 5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plating{ icon_plating = "warnplate"; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61279,7 +61279,7 @@ "cuw" = ( /turf/simulated/floor/plating{ icon_plating = "warnplate"; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61295,15 +61295,15 @@ /obj/item/clothing/head/welding, /obj/item/stack/sheet/mineral/plasma{ amount = 35; - layer = 3.1 + layer = 3.1 }, /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plating{ dir = 1; - icon_state = "warnplatecorner" + icon_state = "warnplatecorner" }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61327,21 +61327,21 @@ }, /obj/machinery/camera{ c_tag = "MiniSat Atmospherics"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /obj/machinery/airalarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23; + pixel_y = 0 }, /obj/machinery/space_heater, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61352,18 +61352,18 @@ }, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_x = 28; - pixel_y = 0 + pixel_x = 28; + pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners"; - dir = 4 + dir = 4 }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61383,27 +61383,27 @@ }, /obj/machinery/camera{ c_tag = "MiniSat Antechamber"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /obj/machinery/turretid{ control_area = "AI Satellite Atmospherics"; - enabled = 1; - icon_state = "control_standby"; - name = "Atmospherics Turret Control"; - pixel_x = -27; - pixel_y = 0; - req_access = list(65) + enabled = 1; + icon_state = "control_standby"; + name = "Atmospherics Turret Control"; + pixel_x = -27; + pixel_y = 0; + req_access = list(65) }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "darkbluecorners" + icon_state = "darkbluecorners" }, /area/turret_protected/aisat_interior) "cuE" = ( @@ -61418,24 +61418,24 @@ }, /obj/machinery/turretid{ control_area = "AI Satellite Service"; - enabled = 1; - icon_state = "control_standby"; - name = "Service Bay Turret Control"; - pixel_x = 27; - pixel_y = 0; - req_access = list(65) + enabled = 1; + icon_state = "control_standby"; + name = "Service Bay Turret Control"; + pixel_x = 27; + pixel_y = 0; + req_access = list(65) }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners"; - dir = 4 + dir = 4 }, /area/turret_protected/aisat_interior) "cuG" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -61452,15 +61452,15 @@ }, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "darkbluecorners" + icon_state = "darkbluecorners" }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61468,8 +61468,8 @@ "cuI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61494,27 +61494,27 @@ }, /obj/machinery/camera{ c_tag = "MiniSat Service Bay"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /obj/machinery/airalarm{ dir = 8; - icon_state = "alarm0"; - pixel_x = 24 + icon_state = "alarm0"; + pixel_x = 24 }, /obj/structure/rack, /obj/item/weapon/storage/toolbox/electrical{ pixel_x = -3; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/storage/toolbox/mechanical, /obj/item/device/multitool, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61522,9 +61522,9 @@ "cuL" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -61538,18 +61538,18 @@ "cuM" = ( /obj/machinery/power/apc{ dir = 8; - name = "MiniSat Atmospherics APC"; - pixel_x = -27; - pixel_y = 0 + name = "MiniSat Atmospherics APC"; + pixel_x = -27; + pixel_y = 0 }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/portable_atmospherics/scrubber, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61557,9 +61557,9 @@ "cuN" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -61573,13 +61573,13 @@ "cuO" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/ai_slipper{ icon_state = "motion0"; - uses = 10 + uses = 10 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ @@ -61591,9 +61591,9 @@ "cuP" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -61605,9 +61605,9 @@ "cuQ" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -61615,7 +61615,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ name = "MiniSat Atmospherics"; - req_one_access_txt = "65" + req_one_access_txt = "65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61624,9 +61624,9 @@ "cuR" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -61639,23 +61639,23 @@ "cuS" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" + d2 = 8; + icon_state = "2-8"; + tag = "" }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/ai_slipper{ icon_state = "motion0"; - uses = 10 + uses = 10 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /mob/living/simple_animal/bot/secbot/pingsky, @@ -61666,9 +61666,9 @@ "cuT" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -61682,9 +61682,9 @@ "cuU" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -61692,7 +61692,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ name = "MiniSat Service Bay"; - req_one_access_txt = "65" + req_one_access_txt = "65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61701,9 +61701,9 @@ "cuV" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61714,19 +61714,19 @@ "cuW" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/ai_slipper{ icon_state = "motion0"; - uses = 10 + uses = 10 }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" + d2 = 8; + icon_state = "2-8"; + tag = "" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61737,18 +61737,18 @@ "cuX" = ( /obj/machinery/power/apc{ dir = 4; - name = "MiniSat Service Bay APC"; - pixel_x = 27; - pixel_y = 0 + name = "MiniSat Service Bay APC"; + pixel_x = 27; + pixel_y = 0 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 8 + dir = 8 }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61759,7 +61759,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/AIsatextAS{ name = "AI Satellite Atmospherics" @@ -61767,7 +61767,7 @@ "cuZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /mob/living/simple_animal/bot/floorbot, /turf/simulated/floor/plasteel{ @@ -61786,21 +61786,21 @@ "cvc" = ( /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/porta_turret/ai{ dir = 4 }, /obj/item/device/radio/intercom{ broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners"; - dir = 8 + dir = 8 }, /area/turret_protected/aisat_interior) "cvd" = ( @@ -61809,7 +61809,7 @@ }, /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -61821,24 +61821,24 @@ "cve" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/machinery/turretid{ control_area = "AI Satellite Hallway"; - enabled = 1; - icon_state = "control_standby"; - name = "Chamber Hallway Turret Control"; - pixel_x = 32; - pixel_y = -24; - req_access = list(65) + enabled = 1; + icon_state = "control_standby"; + name = "Chamber Hallway Turret Control"; + pixel_x = 32; + pixel_y = -24; + req_access = list(65) }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61851,12 +61851,12 @@ "cvg" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /mob/living/simple_animal/bot/cleanbot, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners"; - dir = 8 + dir = 8 }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61867,7 +61867,7 @@ }, /turf/simulated/floor/plasteel{ icon_state = "vault"; - dir = 8 + dir = 8 }, /area/turret_protected/AIsatextFP{ name = "AI Satellite Service" @@ -61875,8 +61875,8 @@ "cvi" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61902,7 +61902,7 @@ "cvm" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance"; - req_access_txt = "65" + req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -61918,14 +61918,14 @@ "cvo" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ name = "MiniSat Chamber Hallway"; - req_one_access_txt = "65" + req_one_access_txt = "65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -61939,12 +61939,12 @@ "cvq" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance"; - req_access_txt = "65" + req_access_txt = "65" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/turret_protected/AIsatextFS{ @@ -61989,28 +61989,28 @@ }, /obj/item/device/radio/intercom{ anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 }, /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 }, /obj/item/device/radio/intercom{ anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -62025,8 +62025,8 @@ "cvz" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -62041,28 +62041,28 @@ }, /obj/item/device/radio/intercom{ anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 }, /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 }, /obj/item/device/radio/intercom{ anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -62077,8 +62077,8 @@ "cvC" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/turret_protected/AIsatextFS{ @@ -62100,22 +62100,22 @@ /obj/structure/lattice, /obj/machinery/camera{ c_tag = "MiniSat External NorthWest"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /turf/space, /area/space) "cvG" = ( /obj/machinery/porta_turret/ai{ dir = 4; - installation = /obj/item/weapon/gun/energy/gun + installation = /obj/item/weapon/gun/energy/gun }, /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /turf/simulated/floor/bluegrid, /area/turret_protected/AIsatextFS{ @@ -62134,15 +62134,15 @@ "cvI" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62153,11 +62153,11 @@ "cvJ" = ( /obj/machinery/porta_turret/ai{ dir = 4; - installation = /obj/item/weapon/gun/energy/gun + installation = /obj/item/weapon/gun/energy/gun }, /obj/machinery/light{ icon_state = "tube1"; - dir = 4 + dir = 4 }, /turf/simulated/floor/bluegrid, /area/turret_protected/AIsatextFS{ @@ -62167,18 +62167,18 @@ /obj/structure/lattice, /obj/machinery/camera{ c_tag = "MiniSat External NorthEast"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /turf/space, /area/space) "cvL" = ( /obj/structure/sign/securearea{ pixel_x = 32; - pixel_y = 0 + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -62188,12 +62188,12 @@ "cvM" = ( /obj/machinery/camera/motion{ c_tag = "MiniSat Core Hallway"; - dir = 4; - network = list("MiniSat") + dir = 4; + network = list("MiniSat") }, /obj/machinery/firealarm{ dir = 8; - pixel_x = -24 + pixel_x = -24 }, /turf/simulated/floor/bluegrid, /area/turret_protected/AIsatextFS{ @@ -62202,12 +62202,12 @@ "cvN" = ( /obj/structure/sign/securearea{ pixel_x = -32; - pixel_y = 0 + pixel_y = 0 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/turret_protected/AIsatextFS{ @@ -62222,7 +62222,7 @@ "cvP" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance"; - req_access_txt = "65" + req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -62260,8 +62260,8 @@ "cvT" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62274,13 +62274,13 @@ "cvU" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance"; - req_access_txt = "65" + req_access_txt = "65" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/turret_protected/AIsatextFS{ @@ -62289,8 +62289,8 @@ "cvV" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/bluegrid, /area/turret_protected/AIsatextFS{ @@ -62299,8 +62299,8 @@ "cvW" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/turret_protected/AIsatextFS{ @@ -62322,8 +62322,8 @@ "cvZ" = ( /obj/machinery/airalarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23; + pixel_y = 0 }, /turf/simulated/floor/bluegrid, /area/turret_protected/AIsatextFS{ @@ -62333,9 +62333,9 @@ /obj/structure/cable, /obj/machinery/power/apc{ dir = 4; - name = "MiniSat Chamber Hallway APC"; - pixel_x = 27; - pixel_y = 0 + name = "MiniSat Chamber Hallway APC"; + pixel_x = 27; + pixel_y = 0 }, /turf/simulated/floor/bluegrid, /area/turret_protected/AIsatextFS{ @@ -62354,13 +62354,13 @@ "cwc" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62371,17 +62371,17 @@ "cwd" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/device/radio/intercom{ broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = -28; - pixel_y = -29 + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = -28; + pixel_y = -29 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62397,14 +62397,14 @@ "cwf" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ name = "MiniSat Chamber Observation"; - req_one_access_txt = "65" + req_one_access_txt = "65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62413,7 +62413,7 @@ "cwg" = ( /obj/machinery/airalarm{ frequency = 1439; - pixel_y = 23 + pixel_y = 23 }, /obj/structure/chair{ dir = 8 @@ -62429,11 +62429,11 @@ /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = -3; - pixel_y = 7 + pixel_y = 7 }, /obj/item/weapon/pen{ pixel_x = 4; - pixel_y = 4 + pixel_y = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62450,8 +62450,8 @@ "cwj" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -62464,12 +62464,12 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 8; - on = 1; - scrub_Toxins = 0 + on = 1; + scrub_Toxins = 0 }, /obj/machinery/firealarm{ dir = 4; - pixel_x = 24 + pixel_x = 24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62478,7 +62478,7 @@ "cwl" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 4; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62500,8 +62500,8 @@ "cwo" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -62514,7 +62514,7 @@ /obj/structure/chair/office/dark, /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62540,14 +62540,14 @@ "cwt" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "AI Core"; - req_access_txt = "65" + req_access_txt = "65" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62556,12 +62556,12 @@ "cwu" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/ai_slipper{ icon_state = "motion0"; - uses = 10 + uses = 10 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ @@ -62571,7 +62571,7 @@ "cwv" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 8 + dir = 8 }, /obj/machinery/status_display{ pixel_x = -32 @@ -62581,9 +62581,9 @@ "cww" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -62595,8 +62595,8 @@ "cwx" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -62623,18 +62623,18 @@ "cwA" = ( /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -62643,7 +62643,7 @@ "cwB" = ( /obj/machinery/light{ icon_state = "tube1"; - dir = 4 + dir = 4 }, /obj/machinery/ai_status_display{ pixel_x = 32 @@ -62667,8 +62667,8 @@ }, /obj/machinery/turretid{ name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = -24 + pixel_x = 5; + pixel_y = -24 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -62681,23 +62681,23 @@ }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; - name = "AI Chamber APC"; - pixel_y = -24 + dir = 2; + name = "AI Chamber APC"; + pixel_y = -24 }, /obj/machinery/flasher{ id = "AI"; - pixel_x = -11; - pixel_y = -24 + pixel_x = -11; + pixel_y = -24 }, /obj/machinery/camera/motion{ c_tag = "MiniSat AI Chamber North"; - dir = 1; - network = list("MiniSat") + dir = 1; + network = list("MiniSat") }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -62711,7 +62711,7 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 2; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/crowbar, /turf/simulated/floor/plasteel/shuttle{ @@ -62729,7 +62729,7 @@ "cwI" = ( /turf/simulated/wall/shuttle{ icon_state = "swall3"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cwJ" = ( @@ -62765,7 +62765,7 @@ }, /obj/structure/extinguisher_cabinet{ pixel_x = 0; - pixel_y = -30 + pixel_y = -30 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) @@ -62778,16 +62778,16 @@ "cwQ" = ( /obj/machinery/button/flasher{ id = "cockpit_flasher"; - pixel_x = 6; - pixel_y = -24 + pixel_x = 6; + pixel_y = -24 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) "cwR" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = -29 + pixel_x = 0; + pixel_y = -29 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) @@ -62800,32 +62800,32 @@ "cwT" = ( /turf/simulated/wall/shuttle{ icon_state = "swall13"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cwU" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cwV" = ( /turf/simulated/wall/shuttle{ icon_state = "swall14"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cwW" = ( /obj/machinery/status_display, /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cwX" = ( /obj/machinery/door/airlock/glass{ name = "Emergency Shuttle Cockpit"; - req_access_txt = "19" + req_access_txt = "19" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) @@ -62836,8 +62836,8 @@ "cwZ" = ( /obj/machinery/flasher{ id = "cockpit_flasher"; - pixel_x = 6; - pixel_y = 24 + pixel_x = 6; + pixel_y = 24 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -62853,7 +62853,7 @@ /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 2; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/crowbar, /turf/simulated/floor/plasteel/shuttle{ @@ -62869,13 +62869,13 @@ "cxd" = ( /obj/machinery/flasher{ id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = 6 + pixel_x = -24; + pixel_y = 6 }, /obj/machinery/button/flasher{ id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = -6 + pixel_x = -24; + pixel_y = -6 }, /turf/simulated/floor/plasteel/shuttle/red, /area/shuttle/escape) @@ -62885,14 +62885,14 @@ "cxf" = ( /obj/machinery/door/airlock/glass{ name = "Emergency Shuttle Brig"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) "cxg" = ( /obj/machinery/door/airlock/shuttle{ name = "Emergency Shuttle Airlock"; - req_access_txt = "2" + req_access_txt = "2" }, /turf/simulated/floor/plating, /area/shuttle/escape) @@ -62925,13 +62925,13 @@ "cxl" = ( /turf/simulated/wall/shuttle{ icon_state = "swall7"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cxm" = ( /turf/simulated/wall/shuttle{ icon_state = "swallc4"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cxn" = ( @@ -62941,25 +62941,25 @@ /obj/docking_port/mobile/emergency, /obj/docking_port/stationary{ dir = 4; - dwidth = 9; - height = 11; - id = "emergency_home"; - name = "emergency evac bay"; - width = 22 + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 }, /turf/simulated/floor/plating, /area/shuttle/escape) "cxo" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; - pixel_y = 30 + pixel_y = 30 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) "cxp" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) @@ -62996,17 +62996,17 @@ "cxt" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; - dir = 4 + dir = 4 }, /turf/simulated/wall/shuttle{ icon_state = "swall_s6"; - dir = 2 + dir = 2 }, /area/shuttle/transport) "cxu" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/transport) "cxv" = ( @@ -63022,7 +63022,7 @@ "cxx" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s10"; - dir = 2 + dir = 2 }, /area/shuttle/transport) "cxy" = ( @@ -63056,22 +63056,22 @@ /obj/machinery/door/airlock/shuttle, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 12; - id = "ferry"; - name = "ferry shuttle"; - roundstart_move = "ferry_away"; - travelDir = 180; - width = 5 + dwidth = 2; + height = 12; + id = "ferry"; + name = "ferry shuttle"; + roundstart_move = "ferry_away"; + travelDir = 180; + width = 5 }, /obj/docking_port/stationary{ dir = 8; - dwidth = 2; - height = 12; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/space; - width = 5 + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/space; + width = 5 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/transport) @@ -63084,11 +63084,11 @@ "cxG" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; - dir = 4 + dir = 4 }, /turf/simulated/wall/shuttle{ icon_state = "swall_s5"; - dir = 2 + dir = 2 }, /area/shuttle/transport) "cxH" = ( @@ -63104,7 +63104,7 @@ "cxJ" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s9"; - dir = 2 + dir = 2 }, /area/shuttle/transport) "cxK" = ( @@ -63116,7 +63116,7 @@ "cxL" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; - pixel_y = -30 + pixel_y = -30 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/escape) @@ -63130,7 +63130,7 @@ /obj/machinery/status_display, /turf/simulated/wall/shuttle{ icon_state = "swall14"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cxO" = ( @@ -63142,7 +63142,7 @@ "cxP" = ( /turf/simulated/wall/shuttle{ icon_state = "swall11"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cxQ" = ( @@ -63153,7 +63153,7 @@ "cxR" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor2" @@ -63162,7 +63162,7 @@ "cxS" = ( /obj/machinery/sleeper{ icon_state = "sleeper-open"; - dir = 8 + dir = 8 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -63173,12 +63173,12 @@ /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 2; - pixel_y = 3 + pixel_y = 3 }, /obj/item/weapon/crowbar, /obj/structure/extinguisher_cabinet{ pixel_x = 27; - pixel_y = 0 + pixel_y = 0 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -63199,7 +63199,7 @@ "cxW" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s5"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cxX" = ( @@ -63212,7 +63212,7 @@ "cxY" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s9"; - dir = 2 + dir = 2 }, /area/shuttle/escape) "cxZ" = ( @@ -63222,42 +63222,42 @@ "cya" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s6"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyb" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s10"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyc" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyd" = ( /obj/machinery/door/airlock/shuttle, /obj/docking_port/mobile{ dheight = 0; - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship"; - launch_status = 0; - name = "NT Medical Ship"; - roundstart_move = "whiteship_away"; - travelDir = 180; - width = 35 + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship"; + launch_status = 0; + name = "NT Medical Ship"; + roundstart_move = "whiteship_away"; + travelDir = 180; + width = 35 }, /obj/docking_port/stationary{ dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13 Arrival Docking"; - width = 35 + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13 Arrival Docking"; + width = 35 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -63272,20 +63272,20 @@ "cyf" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating/airless, /area/shuttle/abandoned) "cyg" = ( /turf/simulated/wall/shuttle{ icon_state = "swall13"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyh" = ( /turf/simulated/wall/shuttle{ icon_state = "swall11"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyi" = ( @@ -63310,13 +63310,13 @@ "cyl" = ( /turf/simulated/wall/shuttle{ icon_state = "swall3"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cym" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating/airless, /area/shuttle/abandoned) @@ -63328,7 +63328,7 @@ "cyo" = ( /obj/structure/shuttle/engine/heater{ icon_state = "heater"; - dir = 8 + dir = 8 }, /obj/structure/window/reinforced{ dir = 4 @@ -63338,7 +63338,7 @@ "cyp" = ( /turf/simulated/wall/shuttle{ icon_state = "swall15"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyq" = ( @@ -63352,25 +63352,25 @@ "cyr" = ( /turf/simulated/wall/shuttle{ icon_state = "swall7"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cys" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "cyt" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s6"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "cyu" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s10"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "cyv" = ( @@ -63392,8 +63392,8 @@ "cyy" = ( /obj/machinery/mass_driver{ dir = 4; - icon_state = "mass_driver"; - id = "oldship_gun" + icon_state = "mass_driver"; + id = "oldship_gun" }, /turf/simulated/floor/plating, /area/shuttle/abandoned) @@ -63404,7 +63404,7 @@ "cyA" = ( /obj/machinery/door/poddoor{ id = "oldship_gun"; - name = "pod bay door" + name = "pod bay door" }, /turf/simulated/floor/plating, /area/shuttle/abandoned) @@ -63414,7 +63414,7 @@ "cyC" = ( /turf/simulated/wall/shuttle{ icon_state = "swall3"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "cyD" = ( @@ -63425,13 +63425,13 @@ "cyE" = ( /turf/simulated/wall/shuttle{ icon_state = "swall14"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "cyF" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r"; - dir = 4 + dir = 4 }, /turf/simulated/floor/plating/airless, /area/shuttle/abandoned) @@ -63447,7 +63447,7 @@ "cyI" = ( /obj/item/weapon/stock_parts/cell{ charge = 100; - maxcharge = 15000 + maxcharge = 15000 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -63475,9 +63475,9 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -63489,11 +63489,11 @@ "cyN" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad2" + id = "QMLoad2" }, /obj/machinery/door/poddoor{ id = "QMLoaddoor2"; - name = "supply dock loading door" + name = "supply dock loading door" }, /turf/simulated/floor/plating, /area/shuttle/supply) @@ -63516,7 +63516,7 @@ "cyQ" = ( /obj/machinery/door/airlock/shuttle{ name = "Supply Shuttle Airlock"; - req_access_txt = "31" + req_access_txt = "31" }, /turf/simulated/floor/plating, /area/shuttle/supply) @@ -63528,35 +63528,35 @@ "cyS" = ( /obj/machinery/button/door{ dir = 2; - id = "QMLoaddoor2"; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = 8 + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 }, /obj/machinery/button/door{ id = "QMLoaddoor"; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = -8 + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/supply) "cyT" = ( /obj/machinery/door/airlock/shuttle{ name = "Supply Shuttle Airlock"; - req_access_txt = "31" + req_access_txt = "31" }, /obj/docking_port/mobile/supply{ dwidth = 5; - width = 12 + width = 12 }, /obj/docking_port/stationary{ dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 }, /turf/simulated/floor/plating, /area/shuttle/supply) @@ -63600,11 +63600,11 @@ "cyZ" = ( /obj/machinery/conveyor{ dir = 4; - id = "QMLoad" + id = "QMLoad" }, /obj/machinery/door/poddoor{ id = "QMLoaddoor"; - name = "supply dock loading door" + name = "supply dock loading door" }, /turf/simulated/floor/plating, /area/shuttle/supply) @@ -63651,7 +63651,7 @@ "czg" = ( /turf/simulated/wall/shuttle{ icon_state = "swall7"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "czh" = ( @@ -63663,19 +63663,19 @@ "czi" = ( /turf/simulated/wall/shuttle{ icon_state = "swall11"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "czj" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s5"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "czk" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s9"; - dir = 2 + dir = 2 }, /area/shuttle/abandoned) "czl" = ( @@ -63701,13 +63701,13 @@ "czn" = ( /turf/simulated/wall/shuttle{ icon_state = "swall15"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "czo" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s5"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "czp" = ( @@ -63720,7 +63720,7 @@ "czq" = ( /turf/simulated/wall/shuttle{ icon_state = "swall_s9"; - dir = 2 + dir = 2 }, /area/shuttle/supply) "czr" = ( @@ -63785,7 +63785,7 @@ /obj/structure/table, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 6; - pixel_y = -5 + pixel_y = -5 }, /turf/simulated/floor/plasteel/shuttle{ icon_state = "shuttlefloor3" @@ -63794,7 +63794,7 @@ "czC" = ( /obj/machinery/sleeper{ icon_state = "sleeper-open"; - dir = 8 + dir = 8 }, /obj/effect/decal/remains/human, /turf/simulated/floor/plasteel/shuttle{ @@ -63804,7 +63804,7 @@ "czD" = ( /turf/simulated/floor/plating/airless{ dir = 6; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "czE" = ( @@ -63812,16 +63812,16 @@ /obj/structure/window/reinforced/fulltile, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/engine/engineering) "czF" = ( /obj/machinery/camera/emp_proof{ c_tag = "Singularity North East"; - dir = 2; - network = list("Singularity") + dir = 2; + network = list("Singularity") }, /obj/machinery/power/grounding_rod, /turf/simulated/floor/plating/airless, @@ -63832,8 +63832,8 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -63842,9 +63842,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -63877,14 +63877,14 @@ }, /obj/machinery/status_display{ density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 + layer = 3; + pixel_x = 0; + pixel_y = 32 }, /obj/machinery/computer/shuttle/pod{ pixel_y = -32; - possible_destinations = "pod_asteroid4"; - shuttleId = "pod4" + possible_destinations = "pod_asteroid4"; + shuttleId = "pod4" }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_4) @@ -63897,15 +63897,15 @@ }, /obj/item/weapon/storage/pod{ pixel_x = 6; - pixel_y = -32 + pixel_y = -32 }, /turf/simulated/floor/plasteel/shuttle, /area/shuttle/pod_4) "czN" = ( /obj/docking_port/stationary/random{ dir = 4; - id = "pod_asteroid4"; - name = "asteroid" + id = "pod_asteroid4"; + name = "asteroid" }, /turf/space, /area/space) @@ -63933,9 +63933,9 @@ "czR" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plating, @@ -63951,28 +63951,28 @@ "czT" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/aft) "czU" = ( /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -63982,9 +63982,9 @@ "czV" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -63997,8 +63997,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -64008,9 +64008,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -64051,7 +64051,7 @@ /obj/structure/closet, /obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -64095,100 +64095,100 @@ "cAh" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/aft) "cAi" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/aft) "cAj" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /turf/simulated/wall/r_wall, /area/engine/engine_smes) "cAk" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4"; - tag = "" + d2 = 4; + icon_state = "2-4"; + tag = "" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAl" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAm" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 8; - icon_state = "1-8"; - tag = "" + d2 = 8; + icon_state = "1-8"; + tag = "" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAn" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" + d2 = 8; + icon_state = "2-8"; + tag = "" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAo" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAp" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/yellow{ icon_state = "1-4"; - d1 = 1; - d2 = 4 + d1 = 1; + d2 = 4 }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAq" = ( /obj/structure/cable/yellow{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /obj/machinery/power/tesla_coil, /turf/simulated/floor/plating/airless, @@ -64196,21 +64196,21 @@ "cAr" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/yellow{ d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" + d2 = 8; + icon_state = "2-8"; + tag = "" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAs" = ( /obj/structure/cable/yellow{ icon_state = "0-4"; - d2 = 4 + d2 = 4 }, /obj/machinery/power/tesla_coil, /turf/simulated/floor/plating/airless, @@ -64219,13 +64219,13 @@ /obj/machinery/the_singularitygen/tesla, /turf/simulated/floor/plating/airless{ dir = 4; - icon_state = "warnplate" + icon_state = "warnplate" }, /area/space/nearstation) "cAu" = ( /obj/structure/cable/yellow{ icon_state = "0-2"; - d2 = 2 + d2 = 2 }, /obj/machinery/power/tesla_coil, /turf/simulated/floor/plating/airless, @@ -64233,33 +64233,33 @@ "cAv" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAw" = ( /obj/structure/cable/yellow{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 8; - icon_state = "1-8"; - tag = "" + d2 = 8; + icon_state = "1-8"; + tag = "" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) "cAx" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 8; - icon_state = "1-8"; - tag = "" + d2 = 8; + icon_state = "1-8"; + tag = "" }, /turf/simulated/floor/plating/airless, /area/space/nearstation) @@ -64270,7 +64270,7 @@ "cAz" = ( /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -64305,14 +64305,14 @@ /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 1 + dir = 1 }, /area/maintenance/disposal) "cAE" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /mob/living/simple_animal/cockroach, /turf/simulated/floor/plasteel{ @@ -64326,18 +64326,18 @@ "cAG" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, /obj/machinery/power/apc{ dir = 2; - name = "Head of Personnel APC"; - pixel_y = -24 + name = "Head of Personnel APC"; + pixel_y = -24 }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating, @@ -64351,8 +64351,8 @@ "cAI" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; - id = "garbage"; - name = "disposal coveyor" + id = "garbage"; + name = "disposal coveyor" }, /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating, @@ -64370,7 +64370,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /mob/living/simple_animal/hostile/lizard{ name = "Wags-His-Tail"; - real_name = "Wags-His-Tail" + real_name = "Wags-His-Tail" }, /turf/simulated/floor/plasteel, /area/janitor) @@ -64380,16 +64380,35 @@ icon_state = "floorgrime" }, /area/maintenance/aft) +"cAN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/main) "cAO" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 8; + icon_state = "1-8" }, /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating, @@ -64398,7 +64417,7 @@ /mob/living/simple_animal/cockroach, /turf/simulated/floor/plating{ icon_state = "warnplate"; - dir = 4 + dir = 4 }, /area/engine/engineering) "cAQ" = ( @@ -64409,13 +64428,13 @@ "cAR" = ( /obj/machinery/door/window{ dir = 1; - name = "AI Core Door"; - req_access_txt = "16" + name = "AI Core Door"; + req_access_txt = "16" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -64425,45 +64444,45 @@ }, /obj/item/device/radio/intercom{ broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -9 + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -9 }, /obj/item/device/radio/intercom{ anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = -31 + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = -31 }, /obj/item/device/radio/intercom{ anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -9 + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -9 }, /obj/machinery/newscaster/security_unit{ pixel_x = -28; - pixel_y = -28 + pixel_y = -28 }, /obj/machinery/requests_console{ department = "AI"; - departmentType = 5; - pixel_x = 28; - pixel_y = -28 + departmentType = 5; + pixel_x = 28; + pixel_y = -28 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "cAT" = ( /obj/machinery/ai_slipper{ icon_state = "motion0"; - uses = 10 + uses = 10 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ @@ -64474,33 +64493,33 @@ /obj/structure/lattice, /obj/machinery/camera{ c_tag = "MiniSat External SouthWest"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /turf/space, /area/space) "cAV" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/showcase{ density = 0; - desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; - dir = 8; - icon = 'icons/mob/robots.dmi'; - icon_state = "robot_old"; - name = "Cyborg Statue"; - pixel_x = 9; - pixel_y = 2 + desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; + dir = 8; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = 9; + pixel_y = 2 }, /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -64509,17 +64528,17 @@ "cAW" = ( /obj/structure/showcase{ density = 0; - desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; - dir = 4; - icon = 'icons/mob/robots.dmi'; - icon_state = "robot_old"; - name = "Cyborg Statue"; - pixel_x = -9; - pixel_y = 2 + desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; + dir = 4; + icon = 'icons/mob/robots.dmi'; + icon_state = "robot_old"; + name = "Cyborg Statue"; + pixel_x = -9; + pixel_y = 2 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -64529,28 +64548,28 @@ /obj/structure/lattice, /obj/machinery/camera{ c_tag = "MiniSat External SouthEast"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /turf/space, /area/space) "cAY" = ( /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /turf/simulated/wall, /area/turret_protected/ai) "cAZ" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -64562,33 +64581,33 @@ }, /obj/structure/cable{ d2 = 8; - icon_state = "0-8" + icon_state = "0-8" }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "cBb" = ( /obj/machinery/camera/motion{ c_tag = "MiniSat AI Chamber South"; - dir = 2; - network = list("MiniSat") + dir = 2; + network = list("MiniSat") }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "cBc" = ( /obj/machinery/power/terminal{ icon_state = "term"; - dir = 1 + dir = 1 }, /obj/machinery/ai_slipper{ icon_state = "motion0"; - uses = 10 + uses = 10 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) "cBd" = ( /obj/machinery/firealarm{ dir = 1; - pixel_y = -24 + pixel_y = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -64597,8 +64616,8 @@ "cBe" = ( /obj/machinery/airalarm{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ @@ -64608,11 +64627,11 @@ "cBf" = ( /obj/machinery/camera{ c_tag = "MiniSat External South"; - dir = 2; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0; - start_active = 1 + dir = 2; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 }, /turf/space, /area/space) @@ -64639,8 +64658,8 @@ /obj/item/weapon/folder/blue, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ @@ -64665,8 +64684,8 @@ "cBn" = ( /obj/machinery/camera{ c_tag = "Locker Room Toilets"; - dir = 8; - network = list("SS13") + dir = 8; + network = list("SS13") }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ @@ -64718,7 +64737,7 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ icon_state = "warnwhite"; - dir = 1 + dir = 1 }, /area/crew_quarters/hor) "cBv" = ( @@ -64733,17 +64752,17 @@ "cBx" = ( /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -64758,7 +64777,7 @@ "cBy" = ( /obj/machinery/door/airlock{ name = "Custodial Closet"; - req_access_txt = "26" + req_access_txt = "26" }, /obj/structure/disposalpipe/segment, /obj/effect/landmark/event_spawn, @@ -64771,13 +64790,13 @@ "cBA" = ( /obj/machinery/button/massdriver{ dir = 2; - id = "toxinsdriver"; - pixel_y = 24 + id = "toxinsdriver"; + pixel_y = 24 }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ icon_state = "warningcorner"; - dir = 8 + dir = 8 }, /area/toxins/mixing) "cBB" = ( @@ -64787,13 +64806,13 @@ "cBC" = ( /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel, @@ -64801,12 +64820,12 @@ "cBD" = ( /obj/structure/cable{ d1 = 2; - d2 = 8; - icon_state = "2-8" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-c" + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -64829,14 +64848,14 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ @@ -64846,8 +64865,8 @@ "cBH" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel, @@ -64866,13 +64885,13 @@ "cBK" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; - pixel_y = -35 + pixel_y = -35 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel, @@ -64888,7 +64907,7 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/plasteel{ dir = 2; - icon_state = "neutralfull" + icon_state = "neutralfull" }, /area/engine/chiefs_office) "cBN" = ( @@ -64897,9 +64916,9 @@ }, /obj/structure/cable{ d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -64916,15 +64935,15 @@ /obj/effect/landmark/event_spawn, /turf/simulated/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + nitrogen = 10580; + oxygen = 2644 }, /area/atmos) "cBQ" = ( /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 4; + icon_state = "1-4" }, /obj/effect/landmark/event_spawn, /turf/simulated/floor/plating, @@ -64936,8 +64955,8 @@ "cBS" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/event_spawn, @@ -64959,303 +64978,65593 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/maintenance/asmaint2) +"cBV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access = null; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/security/main) "cBW" = ( /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_southmaint"; - name = "south maintenance airlock"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_southmaint"; + name = "south maintenance airlock"; + turf_type = /turf/space; + width = 18 }, /turf/space, /area/space) "cBX" = ( /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/space; + width = 18 }, /turf/space, /area/space) "cBY" = ( /obj/docking_port/stationary{ dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/space; - width = 18 + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/space; + width = 18 }, /turf/space, /area/space) -( -1, -1, -1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamOaacamPamPamPamPamPaacbJSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaDuaTpaDJbiZaXHbuAbuAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbwPaTpaTpapTaTpaTpaTpaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbBMaTpaTpaTpclKaTpclLaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclOaacaacaaccmaaadaacaaccmEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclOaaccmHaTpcmJaaccmEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmlaTpcmmaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaackqaacaacaacaacaaccmlaTpcmmcmpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmTaTpaTpcnsaaccmlaTpcmmaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmTaTpcnhcnuaaccmlaTpcmmaacaacbxhcnibJSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmTaTpaTpcnIaaccohcdPcohaacaTpaTpaTpaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmTaTpaTpaTpcoeaTpaTpaTpcofaTpaTpaTpaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmTaTpaTpaTpcogaTpaTpaTpcohaTpaTpaTpaaccnWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaackqaacaacaacaacaacaaccojaTpaTpaacaacaacaacaacaaccnWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmMcmPcmOcnzcmSaacaTpaTpaTpaaccoocoEcoDcoGcoFaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccnVcmPcmPcmPcmPcnTaTpaTpaTpaacaTpaTpaTpcnhcoOaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmMcmPcmPcmPcmPcolaTpaTpaTpcoNaTpaTpaTpaTpaTpaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccmPcmPcmPcmPcmPcomaTpaTpaTpcoRaTpaTpaTpaTpcokaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacconcoPcoIcoQcodaacaTpaTpaTpaaccoWcoXaTpaTpcokaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccoUcmPcoVaacaacaaccohcoYcohaaccpfaacaTpaTpaTpaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaafaaaaafaaaaafaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccprcpFcpwaacaaaaaccpHcpHcpHaacaacaacbsBcutcoiaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaaiaakaajaalaajaalaajaamaaiaaiaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccpHcpHcpHaacaaaclOcqIcrgcrfcmEaaaaaccpHcpHcpHaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaanaapaaoaaraaqaataasaavaauaaiaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclOcqIcrgcrfcmEaaaaaaaaaaaaaaaaaaaaaclOcqIcrgcrfcmEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaiaawaayaaxaayamBaayaazaavaaAaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaaiaaBaaDaaCaaFaaEaataataavaaGaaiaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaaiaaIaataataataataaJaataataaLaaKaaiaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaiaaMaaJaataataaOaaNaaJaataaQaaPaaiaafaaRaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaSaaSaaSaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaUaataataatadOaaWaaVaataataaYaaXaaiaaiaaZaafaafaafaafaafaafaafaafaaaaaaaaaaaaaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcabbabeabdabgabfaatabhawNaataataataataataavaatabjabiaaZaaTaaTabYaaTaaTabYabYaaTadRabpaboabpaboabpabqabqabrabrabrabqabqaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafabsaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabuabtabwabvabyabxaataatabAabzabBaatabDabCabEaatabGabFaaZaafaaaaaaaaaaaaaaaaaaaafaboabPabOabOabOabRabqabTabSabVabUabWabqaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafabXaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSabYabYabYabYaafaafaaaabZaaaaafaafaaSaaSaaSaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabuacaaccacbabyacdaceacdacdacdacfacdacdacdacgacdacdachaaZaaZaaZaaZaaZaaZaaZaaZaaZaaZacoabOacqacpabPabqacsacracuactabkabqaaaaafacwaagaagaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaaSaaSaafaafaaaacxaaaacyaafaaSaaSaaSaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaafaaaaafaaaaaaabZaaaaaaaafaaaaafaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabuaczacBacAabyacCaatabKacdacEabMabLacdacHacJacDacdacKaaZabmabHabnabJabIabQabNaciaaZacOabOacqacPabPabracRacQacSacuacjabqaaaaafabpacUabpaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaafaaaaafaaaaaaacxaaaaaaaafaaaaafaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafacVacVacVacVacVaaaacWaaaacVacVacVacVacVaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcacXacZacIabyadaaatacYacdaddacGadbacdadcadeacYacdadfaaZabmaclackackackackackacmaaZablabOacqacPabPabradoadnadpacuacnabqaafaafabpadrabpaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafadsadsadsadsadsaaaadtaaaadsadsadsadsadsaafaaSaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaadvaduaduaduaduadwadyadxadzadzadzadzadAaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadBabcabcabcadCadEadDabyadFadHadGacdadFadIacdacdacdadJadGacdacdaaZacvajCacFacMacFacNacFadgacTabOabOacqacPabPabqadNadMadPatoadhabqaboaboadRacUabpabpadRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaadSadTadTadTadTadVadUadXadWadWadWadWadYaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafadZadZadZadZadZaaaadyaaaadZadZadZadZadZaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaeaaecaebaeeaedaegaefaeiaehaekaejaemaelaenaeoaepaeqaePaeraaZadiacLacFadjacFadkacFadgadlabOabOaewaevabpabqaexabqaeyabqadmabqaeBaeAabpaeCabpaeDaeEaeEaeFaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafaeGaeGaeGaeGaeGaaaadUaaaaeGaeGaeGaeGaeGaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaaaaafaaaaaaaaaadyaaaaaaaaaaafaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaeHaeJaeIaeLaeKaeNaeMaeOaeRaeUaeQaeOaeOaeOaeSaeTaeVafCafBaaZadqadLadKadQadQaetaesaeuaaZafcafbafeafdabpaffafhafgafjafiafkafgafmaflafoafnafoafpafrafqafsaqGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaaaaafaaaaaaaaaadUaaaaaaaaaaafaaaaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafacVacVacVacVacVaaaadyaaaacVacVacVacVacVaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafuaftafwafvafyafxafAafzafJafIafEafDafGafFafHafHafHacdagkagiaaZaezaezaeXaeZaeYagqafaaltaaZafQaboafSafRabpafTafVafUafXafWafZafYagbagaabpagcabpagdaeEaeEageaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafadsadsadsadsadsaaaadUaaaadsadsadsadsadsaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaadvaduaduaduaduadwadyadxadzadzadzadzadAaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcabcabcagfaghaggafAacdacdagladFagjagjagjagjagjagjagjagFagDagnaeWagpagoagramNagtagsaguagnagwagvagyagxagAagzagBafUagCafWagEafYagGabpadRabpabpabpadRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaadSadTadTadTadTadVadUadXadWadWadWadWadYaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSacyadZadZadZadZadZaaaadyaaaadZadZadZadZadZaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaabcabcabcabcafAaaiagLagHagIagjagKagJagMagNahsagjagPagOagRagQagTagSagUagtagVagsagXagWagYafUahaagZafUahbahdahcahfaheahhahgahiahjahlahkahnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafaeGaeGaeGaeGaeGaaaadUaaaaeGaeGaeGaeGaeGaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaaaaafaaaaaaaaaadyaaaaaaaaaaafaaaaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaiahpahmahqagjahsahrahuahtahsagjagPagOagnahvahxahwahyagQahzahDahBahEahAahGahCahIahFahFahIahHahKahJahMahLahNabpahOaoJahnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaaaaafaaaaaaaaaadUaaaaaaaaaaafaaaaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafacVacVacVacVacVaaaadyaaaacVacVacVacVacVaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiahUahoahVagjahsahrahWahtahPagjagPagOagRahQahSahRahXaieaihaigaijaiiahZaikaiaaimaipclIclSaiqaitaisaivaiuaixaiwaicaibaiAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafadsadsadsadsadsaaaadUaaaadsadsadsadsadsaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaadvaduaduaduaduadwadyadxadzadzadzadzadAaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaiaiBahoaiCagjaiEaiDaiDaidaiFagjagPagOagnaiIaiKaiJaiLaiLaiNaiMagnagnadRaiOaiPadRadRabpabpabpabpabpabpabpabpabpahTaifaiAaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaadSadTadTadTadTadVadUadXadWadWadWadWadYaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaiSadZadZadZadZadZaaaadyaaaadZadZadZadZadZaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaiTaiTaiUaiUaiVaiXaiWagjagjagjagjagjailainagjaizaiyajcaiHajcajcajcajcajcajcajeajdaiQajfaiRaiGaiXajhajjajiajlajkaiYajmajpajoahTaifaiAaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafaeGaeGaeGaeGaeGaaaadUaaaaeGaeGaeGaeGaeGaiSabaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaafaaaaafaaaaaaajqaaaaaaaafaaaaafaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaiTajsajrajuajtajwajvajyajxajAajzaujaiZajaajDajgajbajIajBajIajIajIajIajIajIajJajIajIajKajBajLajNajMajPajOajRajQajEajSajUajoahTaifahnaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaafaaaaafaaaaaaadUaaaaaaaafaaaaafaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaafaafaafaafajVajWajVaafaafaafaafaaSaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajYajXajXajXajZaaaaafaiVakbakaakdakcakfakeakhakgakjakiaklajFajGakmaklajFakoakmaklakkakqakpakpakpakrahYaktaksakvakuakxakwakyakwakwakwajHajnajnajoahTaifaiAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaafaafaafaafaafadUaafaafaafaafaafaaSaaSaaSaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaaaajVakBajVaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakDakCakFakEakDaiUaiUakGakIakHakKakJaiXagjafKagjagjakMakOakNakQakPakRakNakQakPakTakSakQakUakVakQakXakWakQakYalaakZaiXalbalcajnaldajnaknajTajnajoahTaifaiAaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaafaaaaaaalgaaaaaaaafaaaaaaaafaaaaafaafaafaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafajVajValhajVajVaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaealialialialialiaaaalkaljalmallaloalnalpalnakIalqalsalraiXafLafMafLagjalvalxalwagjalyalxalwagjalyawwalwagjalzalBalAalCaiGagjalxakzalEaiXalGalIalHalJalHaleakAajnajoahTaifaiAaafaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaafaaaaaaalNaaaaaaaafaaaaaaaafaaaaaaaaaaafaafaaaaaaaaaaaaaaaalPalOalPaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafalRalQalTalSalRalUalUalUalUalUalUalUalUalUaaaaaaaaaaaaalialVaKYalWaliaaaakDalYamaalZakDaiUaiUaiUamcambameamdaiXafLafMafLagjamfalxamgagjamhalxamiagjamjalxamkagjamlamnammalCamoagjampalfamqaiXamramsamramtamralDamramrajoahTaifahnahnaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaafaaaamwamvamwaaaaafaaaaaaaafaaaaaaaaaaaaaafaafaaaaaaaaaaaaalPamxalPaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalRamyamAamzalRalFalFalUamDamCamEalUamFalUaaaaaaaaaaafalUamGamCamHalUaaaakDamIamIamJakDaaaaaaamKaiTaiUamMamLaiXafLafNafLaiXamQamRamRamSamRamRamRamSamRamRamRamSamTamVamUamXamWaiXaiXaiXaiXaiXamYamZamYajpamYanaamYajpajoalLalKandahnahnahnaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaafaaaamwaneamwaaaaafaafaafaafaaaaafaaaaaaaaaaafaafaaaaaaaaaalPanfalPaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalRanganianhalRanjanlankanmamCannalUalUalUalialUalialialUanoanpanoalUaaaalkanqamIanrakDaiUaiUaiUantansanvanuaiVaiXaiXaiXaiXanwanwanwanxanwanwanwanyanwanwanwanxanwanwanwanzanzanBanAanAanAanCamYamZamYajpamYanaamYajpajoahTalManFanEanGanEaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaafamwamwamvamwamwaafaaaaaaaafaaaaafaaaaaaaaaaaaaafaafaaaaaaalPanfalPaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaalRalRanIanHalRanJamCalUamCamCamCankamCamCanKamCalXamCamCamCamCanLaliaaaakDanMamIamIanOanNalpanNakIalqalsalqanPanzanzanzanQanzanzanRanzanzanzanzanzanzanzanSanzanzanzanTanzanzanzanzanzanzanUajpanWanVanYanXamuanVajpaoaanbbkVaodaodaoeahnaagaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaafaofaohaogaoiaofaafaaaaaaaafaaaaafaaaaafaaaaaaaaaaafalPalPalPanfalPalPalPalPalPalPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalUalUalUalUalUaafaafalUaojaolaokaomanlalUalUalialialUalUalUalUalialUalialialUaonamCaooalUaaaakDaopaopaopakDaiUaiUaoqaosaoraouaotaiTaovaovaovaovaovaoxaowaovaovaovaovaovaovaovaoyaozaozaozaoAaoBaozaoDaoCaoFaoEanCaoGaoHajoajoajoajoajoajoajoahTancahnaoKaoLahnaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaofaoNaoMaoOaofaafaaaaaaaafaaaaafaaaaafalPalOalPalOalPaoPanfanfanfanfanfanfaoQalPaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaqIaaaaaaaaaarCaaaaafaaaaaaaaaaaaaaaaaaaaaalUalUalUalUaoSaoRaoTalUaaaaaaalUamCaolanJamCaoUalUaoVaoVapQaoVaoVapQapQaaHaaHasCasCalUaoWamCaoXalUaaaaoZaoYaoYaoYapaaaaaafaiVaiUapbaiTapcapdapdapfapeapfapdapdapgaphaphaphapiaphaphapkapjapmaplaodapnaodaodaodaodapoaodaodaodaodaodapqappapsapraptaptanZanDapxapwapyahnaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaagaagaagaaaaafaofapAapzapBaofapCapCapCapCapCalOalOalOalPapDanfaoQalPalPanfalPalPalPalPapEalPalPaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafapFapHapGaaaapIapKapJaafaaaaagaagaagaaaaaaaafalUapLapNapMamCapOamCalUalialialUapPaolanJapPalUalUalUalialialialUalUaaHatRapQapQaaHalUalUankalUalUaaaaaaaaaaaaaaaaaaaaaaafaiTapRalpaiTapSapdairapUapUapUapVapdaqZaphaobaocataaqbaphanwanzaqdaqcaqfaqeaqeaqeaqeaqeaqhaqgaqeaqeaqeaqeaqeaqiaqkaqjaqmaqlapuaoIahnaqpaqqahnaafaqraqsaqsaqtaqsaqsaquaafaafaaaaaaaaaaafalOaqvalOaaaapCaofaofaqwaqxaofaqyanfanfanfalPaqzanfaqAalPaElanfanfaqBalPanfalPaqDaqCalPblTaqEalPaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaqFarDaqFaaaaqHcpKaqHaafaafaliaqJaliaaaaaaaafalUaqKaqLaomaqNaqMaqOalUaoXamCaqPamCaolaFJamCamCamCamCamCamCamCamCalUalUalUapQaaHapQaaHaqQaqRaqQaaaaaaaaaaaaaaaaaaaaaaaaaafaiTapRaqSaiTaqTapdaqUaqWaqVaqYaqXapdaqZapharaarcarbareardanwanzanAaqcahTarfarfarfarfarfarhargarfarfarfarfarfarfarfarfarjapvahnapXarjarjarjarjarjarmaroaroaroaroaroarmarjaafaaaaaaaaaaafarpanfalOaaaapCarqarsarrartanfanfanfalPanfalParuanfanfalPanfarwarvarxapEanfalParzaryalPanfarAalPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarBaqFcpLaqFarBaqHczKaqHarBaafarEamCaliaaaaaaalUalUalUalUalUankarFarGarGarIarHarJarHarLarKarNarMalUamCalUalUalUamCalUarOalUaaHapQaoVapQaqQaqRaqQaaaaaaaaaaaaaaaarParParParParParParParParQapdarRaqWarSarUarTapdaqZarWarVarYarXarZardanwanzasaaqcahTarfaqaapYaqnasdasgasfarfaqoasmariarfaskasmarkarjarlasbarnasrasqastassarjarmaroaroaroaroaroarmarjaafaafaafaafalOalOaqvalOalOapCasvanfaswanfaoPanfalPalPasxalPalPasyalPalParxasAaszanfalPanfasBasBasBasBasBasBasBasBasBatSatSatSatSaaHatSatSapQapQaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasEasDasGasFasEasHasJasIasEalUaliaqJalialialialUaseascascascascascascashasiatPalUalUalUalUamCalUalUamCasOalUarNamCalUalUalUalUaoVaoVaoVaqQaGhaqQaaaaaaaaaaafaafarPasQasParPasRasTasSarParQapdasUasWasjasnaslapdapWasoapZataatcataardanwanzatdaqcahTarfatfateathatgatjatiarfaspblUasuarfatmaHwasLarjasMasVasNasNasNasNasXasZasYaroaroaroaroaroarmarjarjarjaaaaaaalOanfanfanfaqyapCatvarxcpAanfatwatyatxapEanfanfanfanfatzanfanfasAatAanfatBanfasBatDatCatEasBatGatFatHasBapQaoVaoVaoVaoVaoVaoVaoVaoVaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasEasEatIasEasEasEatIasEasEatJaxkaAYatbatbatlatkatpatnatqatqatqatqatqatqatrauVavbaaHavUalUamCatTapParNatLalUatUamCamCamCatWaliaoVaoVapQaqQaqRaqQaaaaaaaaaarParParPaqRaqRarPaqRaqRaqRarPatXapdatYapUatsatKatuapdaqZaufaphauhaugauiaphaVhanzanAaqcahTarfarfarfarfarfaulaukarfarfatQaunarfarfaupaunarjatVausaurautautauvauuauaatZaroaroaroaroaroauyauAauzauBaaaaaaalOanfanfauCanfapCauDanfauEauFauFauFauFauGauFauHanfanfanfanfanfanfanfanfalPatyasBauJauIauIasBauLauKauMasBaoVaoVaoVaoVaoVaoVaoVaoVaoVaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasEauNauPauOasEauQauPauOasEaqOaucaubascascascaudaumaueaonauXauZauYavaalUatNauVaaHbNbavbaliamCasOalUalUalUalUalUalUalUavcatWaliapQaoVapQaqQaqRaqQaagaagaagavdaveavdaqRaqRarParPavfarParPatXapdapdapdauoauqapdapdavhaviaphaphaphaphaphavjanzavkaqcahTarfaqaapYauwasdauRauxauUauSavgauWavmavlavnavuavxavwausavyavzavzavAattavBauBaroaroaroaroaroauBavDavCauBaafaafalPanfanfalPalPapCapCapCapCapCapCapCapCapCalPavFavEalPalPalPalPalPalPalPalPanfavoasBauIauIavLavNauJavOasBaoVaoVaoVaoVaoVaoVaoVaoVaoVaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaafarBasEatIavParBasEavQavParBalUavpauValUalUalUalUavqaueamCavSbsUamCamCalUatNauVbOiapQbOialUamCavValUavWavXalUatUaqOatMatOatOatOavYavYavYavZawbawaavYavYavYavZawaavZavZawbavZawcawbawdawfaweawgawgawgavravsawgawgawhawiawgawgawgawgawjawlawkawkawmawnarfatfathathawoatjavtavGavvawpavRawsawqawvawtawzawyawAavyaXFavzavAattawBauBaroaroaroaroaroauBawCavCarjaaaaaaalPawDaElanfawEalPawFaoQawGawHaoPalPauDaoPalPawIanfalPawJanfalPawLawKawMawxawxawxawQawPawTawRaxaawSawUasBatSatSaaHaaHatSatSatSatSapQapQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWawVawVawVawXawVawVaxcaxGaxhaxIaxHawZawZaxbalUaxJaueaxeaxdaxfamCaxgalUatNaxKatOatOatOatOaxiatOatPamCaxfaxjamCamCaxlaxkaxnaxmaxoaxoaxoaxpaxoaxqaxoaxoaxsaxraxuaxtaxtaxtaxtaxtaxtaxvaxxaxwaxyaxyaxyaxyaxzaxyaxyaxzaxyaxAaxAaxAaxAaxAaxCaxBaxEaxDaxFarfarfarfarfarfaulaxLawrawuaxNaxMaxPaxOaxXaxVaxRaxQaxTaxSaxUaxUaxWattaxYatZaroaroaroaroaroaxZaybayaarjaaaaaaalPanfanfanfanfanfanfcqMauFauFauFauFauFauFauFaycanfanfanfanfatBanfanfaygayeavIavHavKavJavMcAyauIauIayjasBapQaoVaoVaoVaoVaoVaoVaoVaoVaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWaykaylaykaymaylaylaynaykaylaypayoayqayqayralUaxJaueaysamCamCaytayualUayiayhasKasKasKasKasKaywauVayxamCalUatJatJauVayyalUayzayBayAayAayCayAayDayAayAayFayEayHayGayGayGayGayGayGayGayJayIayLayKayNayMayPayvayQayOaySayRayTazWayXayWayYanzayZahnanFarfaqaapYayVasdazcbblawrawrawrawuazbazaazeazdavxazjazlazkaznazmazoazfazhazgaroaroaroaroaroazparjarjarjalPalPalPaoPalPalPapEalPalPaswalPalPazralPalPapEalPaswawDalPalPapEalPanfawDaygaydasAasBaztawOazvazuazwawOazxasBapQaoVaoVaoVaoVaoVaoVaoVaoVaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasEawWazyawWazzaylaylazAawWazyawWazBazCaymazDalUaxJauealUalUalUalUazFazFazqaziazFazFazFazFazFatNaxKatOatOatOatOatOazGayyaoXayzaaaaafaaaazHaaaazIaaaaafaaaayEayHayGazKazJazMazLazNayGayJazOazQazPazPazsazUazEazEazEazSazRazRayUazYayWazZanzaAaahnanFarfatfathathaAbatjazTazVaAdaAgaAfaAiaAhaAhazXaAharjaAlaAkaAnaAmaApaAoarjazparoaroaroaroaroazpalParAanfayfaAqalPalPalParAanfalParAaswalPaAranfalPaAsanfalPaAuaAtalPaAvanfalPapEapEaygaAcapEasBaAyawOaAAaAzaAAawOaABasBapQapQapQaoVaoVaoVaoVaoVaoVaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafaafaACarBaADauPawWaAFaAEaAHaAGawWauPaADawWarBaAIaAJalUaAjaAeaAMaAMauTaAwazFaAPaAKaAxaATaASaAUaAPazFaAVaANaALaAYaAYaAYaAYaAYaAOatJayzaafaBaaBaaBbaBaaBcaBaaBaaafayEayHayGaBeaBdaBgaBfaBeayGaBiaBhaBkaBjaAWaARaBoaBnaBqaBpaBsaBrazWazWazWaBtazZanzaBuahnanFarfarfarfarfarfaAXaukaAhaAhaAhaAhaAhaAhaBzaAZaBAaAharjarjarjarjaBCaBBarjazparoaroaroaroaroazpalPalPanfaBDaAqalPaBEalPblTanfalPanfaswalPblTanfalPanfanfalPaswatyalPanfanfalPaBFanfaygaydarxasBasBasBasBasBasBasBasBasBatSatSatSatSatSapQaoVaoVaoVaoVaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWazyawWawWawWawWawWawWazyawWaaaarBaBHazDaBIaBKaBJaBIaBIaBIaBlazFaAPaBvaBmaBwaFPaBGaAPazFalUaBLaBQaBQaBQaBQaBQaBQaBNaBQaBRaaaaBaaBTaBSaBVaBUaBWaBaaaaayEayHayGaBeaBXaBZaBYaBeayGaqRakLayLaBOaCaaBPaCgaCbaBraCcaCiazWazWaCjazWaBtazZanzaAaahnanFarfaqaapYaCdasdazcaukaAhaCmaDOaCnaCnaAhaBzaCeaBAaAhaCqaCfaChaCraCtaBBaafaCuaCvaCvaCvaCvaCvaCwaaaalPanfaCxaCyalPalPalPalPalPalPaCzaCAalPalPalPalPalPalPaCBaCDaCCaCEaCEaCEaCFaCHaCkaClaCIaCoaCKaCNaCMaCEaCOaCQaCPaCRaCRaCRaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaCTaCSaCUaCSaCVaCVaCVaCVaCSaCUaCXaCWarBazzaCpaBIaCLaCsaCYaDcaDfaCZazFaAPaDaaAQaDgaAQaAQaAPazFaDhaDdaDbaDlaDkaDnaDmaDpaDeaDqaBRaafaBaaDsaDraluaDtaDvaBaaafayEayHayGaDjaDiaDxaDwaDyayGaqRaDzayLaDCaDBaDAazWaDDaDEaDFaDIafOaBtayWafPayWazZanzaAaahnanFarfatfateathaDKatjaDGaFgaDLaDQaDMaDMaDSaDUaDTaDPaAhaDRaDYaEcaEbaEAaBBaaaaafaaaaafaaaaafaaaaafaaaalPawDaDVaCGaDWaDXalPatwanfawDaswanfalPaaaalPayfaCGaCGaEBaEaaDZaDZaDZaDZaDZaEDaECaEeaEdaEfaEfaEfaEgaEiaEhaEkaEjaEmbfbaEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCTaCSaCSaEpaEoaEraEqaEtaEsaEvaEuaEwaEraEyaExawWazzaEzaBIaEGaEEaEIaEHaEKaEJazFaEFaAQaAQaAQaAQaAQaAQaELaDoaDdaDobxkaDoaDoaDoaDoaDeaDoaBRaaaaBaaENaEMaEMaEOaEPaBaaaaayEayHayGaERaEQaETaESaEUayGaqRaEVayLayLaDIaEWaEXaEYaFcayLayLazWazWayWaFbayWazZanzaAaahnanFarfarfarfarfarfaFeaFdaFhaFfaFiaGxaGxaGxaGxaGxaBxaAhaFlaFjaFkaCraCtaBBalPalPalPalPalPalPalPalPalPalPalPalPalPaFnalPalPalPalPayfaCJaFpaFoaFqaFoaFmaFraFtaFsaFvaFuaFuaFuaFuaFwaFyaFxaFwaFwaFwaFwaFwaFwaFwaFzaFBaFAaCRaCRaCRaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCVaFCaFCaFDaEraFEaEraFEaEraFEaEraFEaEraEyaFFawWazzaFGaBIaFIaFHaFKbxMaFMaFLazFaFNaAQaAQaAQaAQaAQaFOazFaFQaFRaFYaFSaDoaDoaDoaFUaFTaFZaBRaafaBaaGbaGaaGdaGcaGeaBaaafayEaFVayGaFXaFWaETaJhaGfayGaqRaGgayWaGoazWaGiaEZaGjazWaGqayWagmaioayWaEZayWaGtapjaGuahnanFanFanFanFanFaoaaulaukaAhaGkaGlaAhaGmaAhaGnaAhaGpaAhaGDaGraGwaGvaGzaGyaGIaGHaGKaGJaGAaGLaGLaGLaGLaGNaGBaGLaGLaGPaGRaGQaGSaCEaGCaGTaGWaGVaGXaGVaGFaGEaFubbEaGGaFuaHcaHbaHdaFwaGOaGMaFwaHfaGUaHgaGYaHiaHlaHkaHnaHmaHpaHoaHqaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacrycrxcrxcrxcrxcrxcrzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHraaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCVaEraEraHsaEraFEaEraFEaHtaFEaEraFEaEraEyaFFawWazzaHuaBIaBIaGZaHyaHaaHyaBIazFazFazFazFaHzaAQaBMaHAazFaHeaDdaDoaDoaDoaHDaDoaDoaDeaHEaBRaaaaBaaBaaHFaHGaHFaBaaBaaaaayEayHayGaHjaHhbCxaHvaHLayGaqRaHxayWaHNazWaHBaEZaHCazWaHOayWaBtaBtayWafPayWaHQaHPaHRahnaoaahnahnahnahnahnaHTaHHaAhaHUaByaAhaHVaAhaHWaAhaHXaAhaHZaHIaHKaCraIbaIaaIdaIcaIeaIeaHSaHMaIeaIgaIiaIhaIfaHYavIavIavIaIkaImaIjaIlaInanfaIpaIpaIpaIqaIoaFuaIraIuaIsaIwaIvaIxaFwaIBaIyaFwaIzaICaIAaIIaHiaIDaFzaFBaEjaIFaIEaHqaaaaaaaaaaaaaaaaafaaaaaaaaaaaacrycrOcrNcwFcrQcwFcwGcwHcrzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCVaIGaIGaIHaEraFEaEraFEaEraFEaEraFEaEraEyaFFawWazzaylaNhaIMaIJaIMaILaylaIOaIQaIPaIRazFaISaAQaAQaITazFaINaDdaDoaIXaIWaIZaIYaJbaIUaJcaBRaaaaafaaaaJdaJeaJdaaaaafaaaayEayHayGaJaaIVaHJaJhaJiayGaqRaqZayWaJjazWaEZaEZaEZaJfaJlayWaaaaaaaJnaJpaJoaJraJqaJtaJsaJuaJnaaaaaaaJwaJvaJyaJgaAhaJzaByaByaByaDNaByaByaByaAhaCraJkaCraCraCraBBaJDaJCaJCaJEaJxaJmaJCaJHaJIaJIaJAaQjaJKaJIaJLaIpaIpaJBaIqaIpaIpaIpaJOaJNaIqaIoaFubavaJQaJPaJSaJRaJFaFwaJJaJGaLoaJMaJUaJTaJWaJVaIDaFzaFBaEjaHpaKeaHqaaaaaaaaaaaaaaaaafaaaaaaaaaaaacwIcwKcwJcwLcwLcwLcwMcwNcwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKfaCSaCSaEpaKgaEraEraEraEraEraEraKhaEraEyaKiawWazzaylaKjaKkaJXaKkaJYaKkaKkaKkaKlaylazFaKnaKmaKnazFazFaKpaJZaKpaBQaBQaBQaBQaKpaKaaKsaBRaKuaKtaKtaKvaKwaKbaKtaKtaKxayEaKyayGaKcayGaKdaKAaKBayGarPapgayWayWayWaBtaEXaBtayWayWayWaJnaJnaJnaKEaJqaJqaJqaJqaJqaKFaJnaJnaJnaJwaKGaJyaKoaAhaAhaAhaAhaAhaAhaAhaAhaAhaAhaKJaMraKraKqaKNaKMaKPaKOaJCaKQaJxaKzaKSaKRaJIaKTaKCaQjaKVaJIaKXaKWaKHaKDaKKaKIaKIaKLaKUaLdaIqaIoaFuaLfbCIaLgaJSaJRaLhaFwaKZcAzaLbaLaaLeaLcaMXaFwaFwaTeaFBaEjaIFaIEaHqaaaaafaafaafaafaafaafaafaaaaaacwIcwPcwOcwRcwQcwLcwMcwScwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKfaCSaLsaCSaCVaCVaCVaCVaCSaCUaLuaLtarBaLvaylaLwaLyaLiaLzaLjaLAasEaLCaLBaylaLDaLFaLEaLEaLGaLEaLEaLkaLEaLEaLEaLEaLEaLEaLHaLKaLJaLMaLLaLNaLNaLPaLNaLNaLNaLNaLlaLnaLmaLpaLNaLqaLNaLTaHPaLIaLxaLWaLVaLXaJsaJsaJsaJraJqaJqaLYaJqaJqaMaaLZaMcaMbaMeaMdaMfaJqaJqaLYaMhaMgaMjaLOaLRaLQaMnaMmaJqaMoaJqaCraMqaMpaMraMraMraLSaMvaMuaMxaMwaJCaLUaMicAAaMCaMBaJIaMDaKCaMkaMlaJIaJIaMGaMIaMsaMyaMtaMAaMzaMEaMNaIqaIoaFuaItaItaMHaMJaItaItaFwaMWaMKaFwaMXaMXaMXaMXaFwaMMaMLaLraEjaCRaCRaCRaMZaMZaMZaNaaNaaNaaafaafaaacrycwTcwUcwUcwVcwUcwXcwWcwUcwTcrzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWazyawWawWawWawWawWawWazyawWaaaarBaBHaNbaLwaNdaMOaNeaMPaNfasEaNgaLBaNiaNhaLFaNjaNlaNkaNnaNmaNoaLEaLEaLEaLEaLEaLEaLEaLKaLEaLFbDeaLEaLEaMRaMQaMSaMSaMSaMTaMUaMSaMVaMSaMYaMSaNpaNcaNraNqaNsaJqaJqaJqaJqaJqaJqaJqaJqaLYaJqaJqaNwaNvaNyaNxaNAaNzaNBaJqaJqaLYaJqbHtaJqaJqaJqaJqaJqaJqaJqaNCaJqaCraMraMraMraNtbHFaNFaNHaNGaNJaNIaJCaNuaNEaNDaJCaJCaJIaNMcABaNKaMFaNOaJIaIpaIpaNLaIpaIpaIpaNQaNNaNQaIqaIoaFuaNSaItaItaNPaItaNVaFwaFwaFwaFwaFwaFwaFwaNWaFwaFzaFzaFBaEjaNYaNXaCRaNZaObaOaaOdaOcaNaaafaaaaaacwIcwYcwYcwYcrxcwZcwLcxacxccxbcrxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafaafaACarBawWauPawWaOfaOeaOhaOgawWauPawWawWarBazzaylaLwaOjaNRaNeaMPaNfasEaOkaLBaylaNhaLFaLEaOmaOlaOlaOlaOoaOnaOpaOlaOqaOlaOlaOlaOraOlaOsaOlaOlaOlaNUaNTaOtaOiaOiaOuaOwaOvaOyaOxaOAaOzaOCaOBbBoaODaJqaOEaOEaOEbJxaOEaOEaOEaOEaOFaOEaOEaOEaOEaOEaOEaOEaOEaOEaOEaOEaOGaOEaOEaOEaOEaOEaOEaOEaOEaJqaJqaJqaCraOHaOHaOHaOHaOHaOHaOJaKMaOLaOKaJCaJCaOOaJCaJCaOPaJIaOIaONaOMaMFaOTaJIaIpaOVaOQaOXaOWaOXaOXaORaOZaIqaIoaFuaPbaPbaYWaOSaPdaPdaPfaFuaPgaPiaPhaCRaPjaPlaPkaFzaFzaPnaPmaCRaPoaCRaPpaPraVXaOUaPsaNaaNaaNaaNacwIcxdcxecxecxfcwLcwLcwLcwLcxacwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafasEawWazyawWazzaylaylazAawWazyawWaPtaPvaPuaylaLwaPxaOYaLzaPaaLAasEaPyaLBaylaPzaPzaPzaPBaPAaPAaPAaPAaPAaPAaPCaPDaPAaPEaPAaPAaPAaPGaPFaPHaPFaPJaPIaPKaLEaLEaPLaPNaPMaLEaPcaPOaLEaPQaPQaJqaPeaLXaJnaJnaJnaJnaJnaJnaJnaJnaPRaPTaPSaPUaPSaPSaPSaPVaPSaPWaPSaPXaPRaJnaJnaJnaJnaJnaJnaJnaJnaJraJqaJqaJCaPZaPYaQbaQaaQbaQbaQcaKMaQeaQdaQgaPwaQiaPPaJIaJIaJIaJIaQkaQjaJIaJIaJIaJIaOXaQfaQmaQmaQmaQmaQhaOXaIqaIoaFuaQpaItaYWaOSaItaItaQqaFuaQraQtaQsaCRaFzaQvaQuaQwaQwaQyaQxaQAaQzaCRaQBaQCaTmaPqaPqaQFaQEaQEaQFcxgcxecxhcxhcrxcxicxkcxjcwLcxacrxaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWaQGaylawVaPuaylaylaQHawVaylaQGaPuaylaylaylaQIaQJaQlaQoaQnaQDaQDaRdaQKaylaPzaQLaPzaQMaPAaQOaQNaQQaQPaQRaQNaQTaQSaQVaQUaQXaQWaPGaQYaRaaQZaPJaRbaPKaPKaRcaPKaPKaPQaPQaReaRfaPQaPQaPQaRhaJqaLXaJnaaaaaaaaaaaaaaaaaaaaaaPRaRjaRiaRlaRkaRnaRmaRpaRoaRraRqaRsaPRaaaaaaaaaaaaaaaaaaaaaaJnaJraJqaRtbYPaRuaQcaRwaRvaRvaRvaQcaKMaQeaRxaPYaQcaRzaRgaJIaRAaRCaRyaRDaRBaRGaRFaRHaJIaOXaREaRJaRJaRJaRJaRIaOXaIqaRKaFuaRNaRNaYWaOSaROaROaRPaFuaFuaRQaFuaCRaRRaPlaPkaRScdlaPnaPmaCRaCRaCRaNaaRUaRLaNaaNaaNaaNaaNaaRWcxlcwUcwUcwUcxmcxjcxjcxjcwLcxacwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaawWaRXaRYaRYaRYaRYaRYaRYaRYaRYaRXaRYaRZaylaylaNhaylbcDaSbaylaSdaylaRMaSeaSfaPzaSgaPzaQMaPAaShaQNaQNaQNaQNaQNaQTaSjaQNaQNaQNaQWaPGaSkaRaaRaaPJaRbaPKaSlaSmaSmaSnaPQaRVaRTaScaSaaStaSsaJqaJqaLXaJnaaaaaaaaaaaaaPRaPRaPRaPRaSvaSuaSxaSwaSzaSyaSBaSAaSDaSCaSEaPRaPRaPRaPRaaaaaaaaaaaaaJnaJraJqaJqaOKaQcaQcaQcaQcaSoaSHaSGaSpaQeaQdaSqaQcaSFaQcaSIaVzaSKaSJaSMaSLaSOaSNaVzaSPaSRaSQaRJaSSaSTaRJaSUaOXaIqaIoaFuaItaItaYWaOSaItaItaItaTcaTbaItaTdaCRaTeaTgaTfaRSaRSaTiaThaTjaCRaTlaTkaQCaTmaPqaPqaTnaQEaQEaTocxncwLcxocwLcwLcwLcwLcwLcwLcxpcwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafarBarBawWawWawWawWawWawWawWawWarBarBasEaNhaTraTqaTqaTsaTqaTqaTqaTqaTtaTqaTqaPzaSgaTuaTvaPAaTwaQNaSVaTxaTAaTzaTCaTBaSiaQNaQNaTDaPGaTEaTGaTFaPJaRbaPKaTHaTJaTIaTKaPQaSWaTLaSXaSraTPaSsaJqaJqaLXaJnaJnaJwaTQaPRaPRaTRaTTaTSaTVaTUaTXaTWaTYaTXaTZaTXcehaUaaUcaUbaUeaUdaPRaPRaTQaJwaJnaJnaJraJqaJqaJCaUfaQcaUgaUgaUgaUgclXaQcaMxaSYaQcaSZaQcaTaaJIaVzaVzaTMaVGaTNaTOaVFaVzaUhaUiaVIaRJaUjaUkaRJaXoaUzaIqaIoaFuaUBaUBaYWaOSaUCaItaItaUDaItaUFaUEaCRaUGaUIaUHaRSaRSaUKaUJaFzaCRaULaPqaQCaTmaPqaPsaNaaNaaNaaNacwIcxkcwLcxqcxrcwLcxqcxrcwLcxscwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxtcxucxucxvcxucxucxucxwcxucxucxxaaaawWaAFaymaUMaTqaUOaUNaUQaUPaUQaUlaUmaUQaTqaSgaSgaUSaUTaPAaUUaUnaUoaUVaUqaUpaUsaUraUuaUtaUvaQWaPGaPGaPGaPGaPJaRbaPKaPKaPKaPKaPKaPQaVaaSraUwaSraSraSsaJqaJqaLXaJsaJsaVbaVdaVcaPRaVeaVgaVfaVicpCaViaVjaVlaVkaVnaVmaVpaVoaVmaVqaVsaVraPRaVtaVdaVuaVvaJsaJraJqaJqaOKaQbaQcaQbaQbaVxaVwaQcaQcaQeaVyaQcaQcaQcaQcaVAaVzaVzaVBaVEaVDaVGaVFaVHaJIaVJaVIaVKaRJaRJaRJaXoaVMaIqaUxaFuaFuaFuaYWaOSaVPaVQaItaVSaVRaLgaVTaCRaFzaTgaTfaRSaRSaVUaThaVVaCRaVWaPqaQCaTmaPqaPsaNaaaaaafaaacrxcxkcwLcxqcxrcwLcxqcxrcwLcxscrxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxtcxycxAcxzcxBcxBcxBcxBcxBcxBcxBcxvaWaawWawWazzaylaTqaUybaHaUAaUOaUWaURaUmaUQaTqaWjaWlaWkaPzaPAaWnaTyaUXaWoaWqaWqaUYaWqaWqaWqaWpaUZaPAaWuaWwaWvaVCaWxaWAaWzaWBaPzaWCaPQaWEaWDaWGaWFaWFaSsaJqaJqaJqaJqaJqaWHaWJaWIaWLaWKaWNaWMaWPaWOaWRaWQaWTaWSaWVaWUaWXaWWaWYaWMaXaaWZaXcaXbaXeaXdaXgaXfaXhaJqaJqaJCaXiaQcaRvaRvaRwaRvaQcaQcaQeaVyaXjaVyaXlaXkaJIaVzcACaVzaXmaVzaVzaVFaXnaJIaOXaVIaRJaRJaRJaRJaXoaOXaIqaVLaVOaVNaVZaVYaWbaXuaXuaWdaYWaYWaYWaYWaWeaRSaRSaRSaRSaRSaWgaXzaXBaXyaXDaXCczOaWhaOUaXGaNaaafaafaaacrxcxkcwLcxqcxrcwLcxqcxrcwLcxscrxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxDcxCcxCcxCcxCcxCcxCcxCcxCcxCcxCcxEaXIauPaXIaylaylaTqaWmaWiaWraXLaXLaWsaWtaXNaTqaXPaSgaWkaXQaXQaXQaWyaXpaXQaXsaXraXvaXtaXwaXwaXAaXxaPAaYaaYcaYbaXJaXEaXMaXKaYhaYgaYgaYiaYiaYiaYiaYiaYjaPQaJqaJqaYlaYkaYnaYmaYpaYoaPRaYqaYsaYraYuaYtaYvaYvaYxaYwaYzaYyaYBaYAaYCaYraYDaYqaPRaYoaYpaYEaYFaYkaYGaJqaJqaOKaQcaQcaQcaQcaQcaQcaQcaQcaXOaPYaYIczPaQcaQcaYKaYJaYLaVzaVzcAgaVzaYMaYNaJIaYPaYOaRJaYQaYQaYRaYOaYTaXSaXRbdpbdpaXTaYYaXUaYWaYWaXVaYWaYWaYWaYWaWeaXWaZfaZfaZfaZfaZfaZgaZhaZeaZjaZiaZlaZkaPqaZmaNaaaaaafaaacrxcxkcwLcxqcxrcwLcxqcxrcwLcxscrxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxGcxFcxHcxHcxIcxIcxIcxIcxIcxIcxIcxvawWawWawWazzaWcaXXaWfaXYaXZaXZaXZaXZaYdaUOaTqaZraZsaWkaXQaZtaZvaYebaOaXQaYHaZxaYSaPAaZBaZAaYXaYUaPAaZDaZFaZEaYZaZEaZEaZaaZEaZEaZIaZHaZHaZHaZJaZHaZLaZKaLYaLYaZNaZMaZMaZMaZMaZMaZMaZOaZQaZPaYtaYxaZSaZRaZRaZTaZRaZRaZUaYzaYAaZVaZXaZWaZVaZVaZVaZVaZVaZVaZYaLYaLYaJCbaaaZZbacbabaQcaQcaQcbadaZbbaeaQcbagbaibahaJIaJIaJIbajbakbakbakaJIaJIaJIbalaRJaRJcBgbambanbapbamaIqaZcaYVbaraFubasbaubataVQaItbaxaUDaVQaZdaCRbazaFzbaAaRSaRSbaAaFzbaBaCRbaDbaCbaEaTmaPqaPsaNaaNaaNaaNacwIcxkcwLcxqcxrcwLcxqcxrcwLcxscwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxGcxucxucxvcxucxucxucxwcxucxucxJaaaawWbaFaPubaGaTqaUQbaHaUQaUObaJaUQaZnaUQaTqbaLbaNbaMaXQaXQaXQaZwaZoaXQaZxcBhaZxaPAaZBaZAaYXaYUaPAaZDaZFaZEaZpbaScBibfibaUaZEbaWbaVbaYbaXaZKaZKaZKaZKaJqaJqaYlaZMaZuaZqaZzaZybbXaZCbbibbhbbkbbjaZRaZRbbmcBjbbmaZRaZRbbnbbpbbobafaZGbaqbaobbvbbubbwaZVaYGaJqaJqaJCaJCaJCaJCaJCbbxaOKbbxbbyaJCaJCaJCaJCaJCaJCaJIbbzbbzbbzbbzbbzbbzbbAbbzaJIbambbBbbBbamaYVaYVaYVaYVaIqaZcaYVbaraFuaFuaFubbDaFubbDaFubbDaFuaFuaCRaCRbbFbbFbbFbbFbbFbbFaCRaCRbbGaPqbbHaTmaPqaPqaToaQEaQEaTocxKcwLcxLcwLcwLcwLcwLcwLcwLcxpcwIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafarBarBawWawWawWawWawWawWawWawWarBarBasEaylaylaTqaTqaTsaTqaTqaTqaTqaTtaTqaTqbbIbbKbbJaXQaZtbbLaZwbawaXQbbObbNbbOaPAaZBaZAaYXaYUaPAaZDaZFaZEbgAbbPbbPbfibbPaZEbaWbbQbbRbbRbbTbbSbbUaZKbbVaJqaYlbbWbbYbbXbaIbaybaybaKbdebccbbkbceaZRaZRbbmbcfbbmaZRaZRbcgbbpbchbdkbejbaQbaPbcmbbwbcnaZVaYGbcobcpaHPbcqaYVaYVaYVaYVaYVaYVaYVaYVbcraYVaYVaYVaYVbcsaYVaYVaYVaYVaYVaYVaYVaYVbcqaYVaYVaYVaYVaYVaYVaYVbaRbaZbaTbbaaYVbcvaYVaYVaYVaYVaYVaYVaYVaYVaYVbcsbcxaYVaYVaYVaYVaYVaYVbcqbcyaTkaPqbcAbczbcCbcBaNaaNaaNaaRWcxlcwUcwUcxMcwUcxNcrxcxOcrxcrxcxPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWawYawZawZawZawZawZawZawZawZawYawZbbbaIKaIKbbcbhNbbdbbebbebbebbfbbgbcIaPzbcKbcMbcLaXQaXQaXQbbqbcOaXQaPAaPAaPAaPAaZBaZAbbsbbraPAaZDaZFaZEbgAbcRbaSbbtbcSaZEbaWbcTbbRbbRbbRbbRbcVaZKbcWbHtaYlbcXbcYbbXbdabcZbbMbbCbcdbddbbkbdfbbmaZRbdhbdgbdhaZRbbmaZUbbpbdibdkbejbaQbbZbcmbbwbbwaZVbdnaJqaJqaHPbcqaYVaYVaYVaYVaYVaYVaYVaYVaYVbdoaYVaYVaYVaYVaYVbdqbdpbdpbdpbdpbdraYVbcqaYVaYVaYVaYVaYVaYVbcibcbbckbcjaXqaXqaXqcBkaXqaXqaXqaXqaXqaXqaXqaXqaXqaXqaXqaXqaXqaXqaXqbdvbdxbdwbdybdybdzaTmcBlaPqbdAaQEaQEbdAcxKcxQcxQcxQcxRcwIcxccxacxacxScrxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafawWaykaylaykaymaylaylaynaykaylaykaymaylaylaylbeObclbeObeObeObeObeTbdGaPzaPzaPzbdHaWkaXQaZtbdJbctbawaXQbdMbdLbdMaPAaPAaPAbcwbcuaPAaZDaZFaZEbcFbcEbbPbcGbcHaZEbaWaZKbdSbbRbbRbcJbdVbdUbdWaJqaYlbcXbdXbbXbdabdYbcNbbCbcdbbXbbkbebbecaZRbeebedbefaZRbehbegbbpbeibekbdjbcQbcPbembbwbenaZVbepbeobeqaHPbcqaYVaYVberaYVbesbetbetbetbetbeubetbetbevaYVaYVaYVaYVaYVcBmbdcbdbbeybcqaYVaYVaYVaYVaYVbezbeBbdlbdmbeCaYVaYVaYVaYVaYVbeEbdsaYVaYVaYVaYVaYVaYVaYVaYVaYVaYVaYVaYVaYVbcqbeGbeIbeHbeJaTmaPqaPsaNaaNaaNaaNacwIcxQcxQcxQcxQcwIcxacxacxacxTcwIaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasEawWbeKawWazzaylaylazAawWbeLawWazBbeNbeMbeMbeObeQbePbeSbeRbeUbeTbdubdtbdBbdBbdDbdCaXQaXQaXQbfacBnaXQaPzaPzaPzaPzbfcaWvbfdbfeaWvbffaZFaZEbfgbaSbaSbdEbaSaZEbfjaZKbfkbbRbcUbbRbfnbfmbfoaJqaYlaZMbbXbfpbcabdFbdKbdIbcdbfrbfsaYvbfubftbfvbfvbfvbfwbfxaYBbfzbfybfBbfAbfCcBobfDbbwbfEaZVaYGaJqaJqbfFbfFbfFbfFbfFbfFbfFbfHbfGbfGbfGbvkbfJbfHbfKbfKbfKbfKbfKbfLbfLbfLbdNbfLbfLbfLbfLbfOaYVbeEbfPbfSbdObdPaYVaYVaYVbfUbfUbfVbfVbfVbfVbfVbfWbfXbfXbfXbfYbfXbfZbgabfXbfXbgbbgcbgcbgcbgcbgebgdbggbgfaNaaafaaaaaacwIcxUcxUcxVcxVcwIcxccxacxacxScrxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaACarBaADauPawWaAFaAEbgibghawWauPaADawWarBaACasEbeObgkbgjbgjbgjbglbdQbdTbdRaWvaWvbeabdZaXQaZtbgrbfabgsaXQbgtbgtaSgbelbewaYbbgwbgxbgxbgxbgyaZEbgAbexbeDbeAckQbgBbgCaZKbgDbbRbeFbkMbeWbeVbkSbeXbgGaZMbgHaZPbgJbgIbgLbgKbcdbgMaZMaafbgObgNbgNbgNbgNbgNbijaafaZVbgSbgUbgTbgVbbwbgWbbwbgXaZVaYGaJqbgYbfFbhabgZbhcbhbbhdbfFbhfbhebhebhebiubhhbhhbhibhkbhjbhlbfKbhnbhmbeYblrbhmbhpbhqbfLbfSbhrbfSbfSbfSbPvbdPbfTbhtbfTbhubhubfVbhvbhxbhwbfVbhybhzbhybfVbhAbhBbhAbgcbhCbhDbhCbgcbhEbhFbgcbhHbhGaNaaNaaNaaafaafaaacxWcwVcxXcxXcxXcxXcxXcxXcxXcwVcxYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaafaafaafaafawWbeKawWawWawWawWawWawWbeLawWaafaafaafaaabeObhIbeObhJbgjbhLbeZbeOaSgaTubfhbfqbhObhQbhQbhQbhQbhQbhQbhSbhRbhTbfIbfMaZEaZEaZEaZEaZEaZEaZEbhWbhYaZEaZEaZEbhXbiabhZbfNboUbmiboUbfRbfQbgnbgmbidaZMbieaZPaZPaZPaZPbgKbcdbifaZMaafbgObgNbihbigbiibgNbijaafaZVbikbdkbilbimbbwbfDbbwbbwaZVaYGaJqaJqbfFbiobinbipbipbisbirbhhbitbhhbhhbiubhhbhhbhibixbiwbiybfKbizbhmbizbhobizbiBbhmbfLbiCbiCbiEbiDbfSbgobdPbiGbiIbiHbiJbiJbfVbiKbiMbiLbiObiNbiQbiPbfVbiRbgpbiSbgcbiUbiVbiUbiXbiWbiWbgcbiYbhGaaaaafaaaaafaaaaaaaaacxWcxZcxZcxZcxZcxZcxZcxZcxYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyacybaaaaaaaaaaafaaaaaacyacydcyccyccyccyccyccyccyecybaaaaafaafaaabeObjbbjabjdbjccADbjebjfaYfbjgaPzbjibjhbjjbjjbjjbjkbjkbjkbjkbjkbjkbgqbjlaZEbjnbjmbjpbjobjrbjqbjtbguaZEbjubgzbgvaZKaZKbgEbbRbflbbRbbRaZKbfoaLxaYlbjzbjBbjAbjDbjCaZPbjEbcdaZMaZMaafbgObgNbigbgNbigbgNbijaafaZVaZVbjFbejbjGbbwbjIbjHbjJaZVaYGaJqaJqbfFbgFbinbgPbjObjRbjQbhhbjSbjUbjVbjTbgQbhgbhibjXbhsbjYbfKbizbhmbizbhobizcAEbkbbfLbkdbkcbkfbkebfSbPvbdPbkgbkhbkhbhMbhKbklbkkbkmbhPbiLbiLbiLbkobfVbkqbhUbkrbgcbksbiWbiWbhVbkvbibbgcbiYbhGbkybkybkybkyaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyfcygcybaaaaaaaafaafcyacyhcyicyicykcyjcyicyicyicyicylaaaaafaafaaabeObkzbeObkBcAFbkAbkCbeObkDbkDaPzbkFbkEbkFbkFbkFbkEbkFaPzaPzaZEaZEbhYbkGaZEbjrbjrbjrbjrbjrbjrbiqbicbiAbivbiTbiFbjsbkMbjvbkMbjwbbRbqsaZKbfobjxbBibkTbkWcAGbkYbkXaZPbgKbcdaZMaafaafbmubmvbiibkZbihbjybgRaafaafaZVblcblbaZVaZVaZVaZVbldaZVbleaJqaJqbfFblfbjKbjLbipbisblhbhhbliblkbljblmbllblnbfKblpbjMbjNbfKbizcAHbizbhobizbiBbhmbfLbfSbfSbfSbfSbfSbPvbdPblublwblvbjWbjPblAblzblCblBblBbnibiLblEbfVbjZbhUblHbgcblIblKblJbkablLbkibgcbiYblOblQblPblRblPaaaaaaaafaaaaafaaaaafaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcyocyncybaaaaafcyacypcyhcyicyicyicyicyicyicyicyqcyrcyccybaafaaabeOblSbjacAIbkAblVcAJbeOaaaaaaaaacytcyscyscyscyscyscyuaaaaaablWblYbkjbkpbknbktbjrbjrbjrbjrbjrbjrbkubmgbmfboUbkwbkxbfQbkHbfmbmkaZKbmlaZKbmnbmmaLYbjzbmpbmobmobmobmobmqbmsbmraafaaabgObkIbgNbgNbgNbmwbijaaaaafbmxbmzbmybmBbmAbmCbmxbmDbmxbmEaJqbAibfFbmFbkKbkLbmGbmIbfFbmJbliblkbmKbmLbhhbmMbfKbmObmNbkObfKbmRbkPbkRbkQblabkUblablgbKHblobKHbKHbKHblqbdPbnbbiIblsblxbltblDblyblGblFblFblMblNbnjbfVbvxblXbnmbgcbnnbnpbnoblZbiWbmabgcbmdbmcbmebnsbnsbnsbnsbnsbnsbnuaafaaaaafaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcyocyvcyncybcyacypcywcylcyxcyicyicyicyicyicyicyicyzcyycyAaafaaabeObnvbjabjabjabeObeObeOaaaaaaaaacyCcyBcyBcyBcyBcyBcyCaaaaaablWbnwbqmbmjbmhbmhbmhbmhbmhbmhbmhbmhbmhbmHbmtbmPbnEbmQbnGbfmbnIbbRbnJbnLbnKbfobnMbnNbjzbjzbmrbnPbnObnRbnQbnSbmraaaaaabgObnTbnVbnUbnVbnWbijaaaaaabmxbnYbnXbnZbmxboabmxbmDbmxbmEaJqbmSbfFbobbkKbmTbipbodbfFbofboebohbogboibhhbojbfKbhibokbmUbfKbfLbmVbfLbmWbmYbmXbmZbmZbmZbmZbmZbmZbmZbnabncbopblwblvbnebndbotbosboubouboubnibiLbovboxbozbowboyboBboAbngbnfbnkbnhbnlbgcbnrbnqbnxboFboFboFboFboFboHbhGbkybkybkyaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcyocyvcyvcyrcygcywcyicylcyxcyicyicyicyicyicyDcypcyccygcyEcybaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyBcyCboIblWblWboJbqmbjrbjrboKboKboKboKbjrbjrbjrbjrbkJboNbuFbnybnAbnzboSboRboTbbRbbRbnKboWboVboYboXbpaboZbpcbpbbpebpdbpfbmraafaaabgObpgbphbphbphbpibijaaaaafbmxbpkbpjbplbmxbpmbmxbmDbmxbpnaJqbmSbfFbnBbkKbnDbnCbptbfFbpublibiubogbpwbpvbofbofbpybpxbnHbnFbolbocboobomboqbpEbpHbpGbpJbpIbpLbpKbonbPvboCborboEboDboLboGbfVbpRbouboubpTbnibiLbpUbpWboMboObpXboBbpZboQboPbpobiWbpqbppbprbgcbqebqebqebqebqebqebiYbhGbqhbqgbkybkyaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyFcyccyGcyvcyHcyicyIcyicyrcyKcyJcyicyicyicyDcypcywczyczycyMcyhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyBcyNbqibqjbqibqlbpsbmbbmbbpzbjrbjrbjrbjrbjrbqnaZEaZEbqobbRbtvbpBbpAbfmbqsbbRbqtbbRbqubmEbnMbqwbqvbqybqxbqAbqzbqBbpdbqCbmraaaaaabgObqDbqFbqEbqFbqGbijaaaaaabqHbqJbqIbqHbqHbqHbqHbqKbqHbqLaLYbpCbfFbfFbpDbpMbpFbfFbfFbqPbpNbpObhhbhhbhhbhhbhhbwzbpPbqQbqQbqQbqWbqQbIqboqbpEbrabqZbrcbrbbrebrdbonbpQbpVbpSbpYbpYbqbbqabfVbqcbiLbiLbqdbnibiLbrqbrsbzEbhUbrtboBboBbrxbqfbqkbrxboBbgcbgcbgcbrAbrzbrCbrBbrDbqebrFbrEbrHbrGbrIbkyaaaaafaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyacypcyccyhcyicyicyicyMcygcyccyccyecyEcypcywcyicyOcyOcyPcylaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyBcyQbrJbrKbrJbrLbjrbjrbjrboKboKcBpboKbjrbjrbrNbrMaZEbrObbRbtvbpBbqpbfmbqsbbRcBqbbRbqubmEbrTaJqbqvcBrbrUbrWbqqbqqbqrbrZbmraafaafbsbbsabsdbscbsfbsebsgaafaafbshbsjbsibslbskbsnbsmbsobqHbspaJqbqNbqMbqRbqObqTbqSbqVbqUbsybqXbqYbsxbsxbsxbsxbsxbrgbrfbsxbsxbsxbrhbhgbribrjbpEbsKbrkbsLbsLbsNbpKbonbPvbdPbsObsQbsPbsRbsRbfVbsScBsbsTboxbrlbiLbsWboxbsXbsZbrmbtbbtabrobrnbrpbtebthbrrbtjbrubrwbrvbrvbrvbrPbrybrQbhGbtqbtpcAKbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyacyEcygcywcyicylcyicyicyicyicyicyicyicyicyMcyhcyicyicyicyicyicyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyScyCboIblWblWbtrbjrbjrbjrbjrbjrbjrbjrbjrbjrbrNbtsaZEbttbtubjvbrRbkMbkNbkMbuIbbRbtybnKbtzbrTaJqbqvbqybmrbtBbrSbtDbtCbtEbmraaaaaaaafbgObtGbtFbtGbijaafaaaaaabshbtIbtHbtKbtJbtLbtLbtNbtMbtObAkaNrbrVbrXbLXbFDbrYbEebsqbEebEebssbsrbtXbtVbtVbtVbtZbhhbhhbhhbstbuabuabsubpEbpEbpEbsvbugbufbrebpKbonbdObdPbuhbuhbuhbuhbuhbfVboxboxboxboxbujbswbujboxbszcdXbsAbuobuobuobsCbsDbupbusbsEbuubsFbuwcBtbuvbsGbsIbsHbsMbsJbtqbtpbtpbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyacyEcyccyccyccyccyccyccyccyEcybaaacyacypcywcyicyicyicylcyicyicyDcyccyccyecyKcyicyicylcyicyicyicyicyicyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyBcyTbrJbrKbrJbnwbuBbjrbjrbuCbjrbuBbjrbjrbjrbrNbuDaZEbuEbbRbtvbsVbbRbfmbbRbbRbbRbuJbnKbtzbrTaYlbqvbuKbmrbuMbsYbuObuNbnSbmraaaaaaaafbuPbuQbphbuSbuRaafaaaaaabshbtdbtcbuWbuVbuYbuXbuZbqHbvaaJqaJqbofbofbtfbJGbwzbBLbvjbvhbtgbtgbvhbvjbvhbvjbvhbvjbvhbvjbfJbfJbuabvnbsLbtkbtibpEbsvbtlbvsbvvbvubonbtmbtobtnbtxbtwbuobuobtAbuobuobtPbtSbtQbtUbvEbuobtWceXbvHbvJbvJbvJbvKbvKbvKbvKbvKbvMbtYbvObvNbvObvPbvObqebuzbhGbvQbrGbvRbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacypcywcyicyicyicyicyicyicyicyMcypcyccypcywcyicyicyicyicyUcyicyicylcyVcyWcyicylcyicyicyRcyicyicyicyXcyYcyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyBcyZbvSbvTbvSbvVbvUbvVbvVbvVbvVbvVbubbvXbjrbrNbvYaZEbvZbbRbucbwcbudbwebwdbwdbwdbwebwebwfbrTaKFbwgbqybmrbwibuebwkbwjbwlbmraaaaaaaafbwmbwnbscbwpbwoaafaaaaaabshbwrbwqbwtbwsbuYbuXbuZbqHbwuaJqaJqbwvbwxbuibJGbwybwAbvjbwCbDRbukbwDbwGbwFbwIbwHbwIbwJbvjbhhbhhbuabwLbsLbumbulbuqbunbutburburbuxbuGbuybuLbuHbuUbuTbxdbvbbxdbxdbvcbxdbxdbvebxebxdbxdbxfbvgbvfbvJbCkbxjbxibxlcBubxmbvKbxobxnbxqbxpbxrbxnbxsbqebuzbhGbxtbtpbtpbkyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyecyicyicyicyicyicyicyicyicyicyecyicyecyicyicyicyicyiczacyicyicylcyicyicyicylcyicyiczacyicyicyiczbczccyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyCcyBcyBcyBcyBcyBcyCboIblWblWblWaZEblWblWblWbxubxubxubxubxwbxxbxxbxubxubxybxzbxAbxybwebxBbxDbxCbxEbwebtzbrTaLXaJwaJwbmrbmrbmrbmrbmrbxGbmraJnaJnaJnbxHbxIbtFbxKbxJaJnaJnaJnbqHbqHbqHbqHbqHbqHbqHbqHbqHbwuaJqbxLbvjbvjbvibvlbvjbvjbvjbxNbDRbvmbDRbxRbxQbxTbxSbxVbxUbxRbhhbhhbuabxXbvobvqbvpbvtbvrbvwbvpbvpbvybvAbvzbvBbyfbyfbyfbyfbyhbyfbyfbyfbyibyibyjbvCbykbykbzEbvDbrtbvJbyobyqbypbysbyrbyubytbqebqebyvbyvbyvbqebywbqebuzbhGbvQbrGbyxbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacypcyKcyicyicyicyicyicyiczdcyDcypcyccypcyKcyicyicyicyicyUcyicyicylcyiczecyicylcyicyicyRcyicyicyicyXcyXcyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczgczfcyBcyBcyBczhcziaaaaaaaaaaaaaafaaaaaaaaaaaabxubvFbyAbyzbyCbyBbyDbxxbyFbBabvIbvGbwdbvLbyLbyKbyMbwebtzbrTaJqaJqaJqbyNaMmaMnaLYbyPbyRbyQaXfaXfaXfbySbwabvWbwhbwbaJqaJqaJqaJqaMmaJqaLYaJqaJqaJqbyNaJqbwuaJqbyXbvjbwBbwwbwEbzabAlbvjbzebDRbDTbDRbxRbxQbxQbzhbzjbzibxRbhhbwKbuabsLbzlbznbzmbyebzobzqbzpbzrbonbonbdOcbKbyfbzubztbzwbzvbzybzxbyfbzzbwNbwMbzDbzCbykbzEbvDbwObwQaDHbwRbzJbzMbzLbzNbytbzObzObzObzObzObzObzObqebuzbhGbtqbtpbtpbkyaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHraaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczjcygcyccyccyccyccyccyccyccygczkaaaczjcypcyKcyicyicyicylcyicyicylcyiczmczlcylcyicyicylcyicyicyicyicyicyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczocznczpczpczpcznczqaaaaaaaaaaaaaafaaaaaaaaaaaabxxbzPbzRbzQbzTbwSbwUbwTbwWbwVbwXbAZbwYbyIbyKcBvbAdbwebtzbAeaJqaJqaJqaJqaJqaJqcBwaJqbrTaJqaJqaJqaJqaJqbAgbAfbAhaJqaJqaJqaJqaJqaJqaJqaLYaJqaJqaJqaJqbHtbwubAjaJqbvjbxabwZbxcbxbbAlbvjbApbDRbukbAqbvjbArbAtbAsbAvbAubvjbhhbhhbuabuabuabuabuabonbonbonbonbonbonbAwbPvbxgbyfbAzbAybABbAAbADbACbyfbAEbAGbAFbxvbAHbykbzEcBxbxFbxWbxPbxYbxYbyabxZbybbytbzObzObARbAQbzObzObzObqebuzbhGbtqbtpbtpbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczjcygcyEcyKczrcylcyicyicyMcyecyccyccywcyicyicylcyXcyicyicyicyicyRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczscztcztcztczuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxubASbydbycbylbygbynbymbGmbyybyGbGmbyJbyHbyTbyObBfbwebBhbBgbBibBibBibBjbBibBibBkbBibBlaJqbyVbyUaJqaMhbBqbBpbBsbBrbBubBtaXfaXfbBvaXfbBxbyWaXfbBybBAbBzbBBaJqaJqbvjbyZbyYbzbbvhbvhbvjbvhbzcbvhbvjbvjbvjbvjbvjbvjbvjbvjbhhbhhbhhbBJbzdbBLbBKbBNaFabBPbBObBQbBNbzgbnabzkbyfbBTbBSbBVbBUbBXbBWbyfbBYbCabBZbCcbCbbykbzEbzBbzAbvKbCfbChbCgbCjbCiaGsbytbzObzObzObClbzObzObzObqebuzbrEbCmbrGbrIbkyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczjcypcyccyhcyicyicyicyicyicyicyicyicyicylcyXcyicyicyicyicylaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabxubxubxxbxxbxxbxxbxubxubCobBabvIbzFbwebwebwebwebwebwebCrbCqaJwaJwaJwaJwbCsbCsbCsbCsbCsbCsbCsbCsbCsbCsbCuaHPbzGbCvbCvbCvbCvbCvcBybCvbCvbCvbCvbzsbCzbzsaJvaKGbCAbvjbzIbzHbzKbCDbzSbvjbCGbDRbzUbCQbzWbzVbCMbCLbCObCNbCQbzXbhhbhhbhhbhhbhhbwzbEibCYbCZbCYbDabBNbLSbPvbDbbDbbDbbDbbDbbDbbDbbDbbDbbDcbDcbDcbDcbDcbDcbDdbAabzZbvKbvKbvKbvKbvKbvKbvKbytbqebqebqebqebqebqebqebqebuzbhGbDhbDgbkybkyaafaafaafaagaagaagaagaagaagaagaagaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyfcycczvcyvcyHcyicyicyicyicyicyicyIcyiczwcylcyXcyiczxcyicyDcyhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDiaaaaaaaaaaafaaaaaabxybDkbAbbAmbAcbAcbAnbAxbAobAJbAIbAKbCqaaaaaaaafaaabCsbDvbDxbDwbDzbDybAMbALbFabCsbAObANbAPbCvbATbDHbDKbDJbDMbAUbDLbAVbDPbDObDQbzsbzsbzsbzsbvjbAXbAWbBbbAYbBcbvdbBdbDZbBebDWbDZbDZbDZbxObDRbEabEdbBmbtVbtVbBnbtTbBCbBwbEibEhbEkbEjbElbBNbLSbPvbDbbEmbEmbEmbEnbEmbEmbEmbDbbEobEobEpbEobEobDcbEqbBEbBDbEtbEsbEvbEubExbEwbBFbEybEBbEAbEDbECbEFbEEbEGbEGbEIbEHbEsbEsbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcyocyvcyvcyrcyEcyEcyEcyecyccyccyRcyRcyRcygcyccyKczycyDcypczkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajYbEJajXbEJajZaaaaafaaabxybxybEKbzYbBGbGmbBIbBHbTEbTEbCebCdbCnbDtaafbEUbEWbEVbEYbEXbFabEZbFabFbbFabFabFabCsbFdbQgbCpbCvbDLbFfbFibCtbCwcALbFkbCvbCvbFlbFnbFmbFpbFobCCbCBbCFbCEcpGbCHbCJbFubFwbCKbCSbCPbCTbzfbDRbDRbDRbFAbofbofbofbofbofbCUbCVbJGbEibCWbFGbCYbFHbBNbLSbPvbDbbEmbEmbEmbEmbEmbEmbEmbDbbFIbICbCXbDjbDfbJRbDlbDmbBDbDnbGcbFUbFUbFUbFUbFUbFUbFWbFVbFXbECbkybFYbGabFZbFZbGbbGdbGcaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbGebGfbGeaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcyocyvczzczkczjcypcyhcyicyicyiczAcyicyicyicyicyMcyEcypczkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakDbGgbGhbGgakDbGibGibGibxybGjbyEbBabDobyEbGnbxybCqbGobCqbCqbGqbGpaaabGrbGtbGsbGubFabFabGvbFabGwbGybGxbFabCsbFdbQgbDpbCvbDqbGBbGEbGDbDrbFgbDsbCvbAwbGHbGJbGIbGJbDubDAbCPbDBbFvbDCbDRbukbvjbDDbFybDEbvjbGRbDRbDRbDRbDRbGSbofbGTbGVbGUbDFbCRbDNbDIbDUbDSbCYbGZbHbbHacbQbDVbDbbEmbEmcBzbEmbEmbEmbEmbDbbHebDYbDXbEcbEbbEgbEfbErbBDbEzbHmbFUbFUbFUbFUbELbFTbFTbFTbFTbEMbEObENbHsbHrbHucBAbHvbGcaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbGfbGebHwbGebGfaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacymcyoczzczkaaaaaaczjcypcyKczBcyicyicyicyicyicyiczycyrczkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajXamIbHxamIajXbGibHzbHybxybHAbyEbEQbyEcBBbGnbxybHDbHCbHEbCqbGqbGpaafbGrbHGcBCbHIbHHbHJbHHbHHbERbFcbETbETbFebFjbFhbFqbCvbCvbCvbCvbCvbCybFsbCvbCvbHVbHUbHXbHWbHZbFtbFxbvjbFBbFzbIdbIcbFCbvjbFJbFFbFKbvjbIjbIibIlbIkbInbImbofbIobIpbqQbIrbqQbFMbFLbFObFNbFPbFEbIwbBNbLSbPvbDbbDbbIxbEmbEmbIybIxbDbbDbbIzbIBbIAbIAbICbDcbFQbFRbBDbFSbGcbFUbFUbGlbGkbGzbFUbFUbGAbGFbGCbGKbGGbGLbISbIVbIUbIWbGcaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbIXbGfbIYbJabIZbGfbIXaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyFcyEczkaaaaaaaaaaaaczjcygcyEcyKcyiczCcyicyicyDcycczkaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakDamIamIamIbJcbJbbyEbyEbJdbHAbyEbGMbyEbyEbGnbxybJebHEbJfbCqbGqbGpaaabGrbJhbJgbJibFabFabJjbFabJkbJmbJlbJnbCsbJpbGNbGObJqbJsbJsbJsbJsbGPbJtbJsbJsbJwbJvbJycBDbJAbGQbGWbvdbvdbvdbvdbvdbvdbvdbvdbvdbvdbJCbJCbJCbJCbJCbJCbJDbJEbofbofbofbofbGXbtRblibBNbBNbBNbBNbBNbBNbLSbPvbDbbJHbJJbJIbJLbJKbJMbJHbJNbIzbIBbIAbIAbGYbDcbHcbHfbBDbJTbEsbJVbJUbJXbJWbJZbJYbFUbHgbKabECbKcbKbbKdbEsbKfbKebKebEsaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbGfbGfbKhbKgbKgbKgbKibGfbGfaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczjczkaaaaaaaaaaaaaaaaaaaaaczjcygcyccyccyccycczkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajXbHxbHxbHxajXbGibKkbKjbKmbKlbyEbKnbKpbKobKqbxybCqbCqbCqbCqbGqbESaafbKrbEWbKsbEYbKtbFabKubFabFabFabHhbHibLDbHkbHjbHlbKwbKybKybKybKybHnbKybHobKzbKCbKBbKEbKDbKGbHpbKIbKHbKJbKHbKHbKHbKHbKHbKHbKHbKHbKHbKHbKHbKHbKHbKLbKKbofbIobKMbCRbKNbCRbDNbKObKRbKQbKQbKSbKTbKBbHBbHqbDbbKWbKYbKXbLabKZbLcbLbbJNbJNbJNbJNbJNbJNbLebHKbHMbHLbLhbEsbECbECbECbECbECbECbLibFUbFUbECbkybFYbhGbEsbLkbLjbLmbLlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLobLnbLobKgbLpbKgbLrbLqbGeaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakDanMbLtbLsakDbGibGibGibxybxybGibGibGibxybxybxybLubCqaaabLvbLwbGpaaaaaaaafaaabCsbLxbLzbLybFabLAbHObHNbHQbCsbHRbNNbHSbLHbLKbLJbLMbLLbLNbLKbLKbLKbLKbLKbLPbLObLKbLKbLQbLKbLRbLKbLKbLKbLKbLKbzsbzsbzsbzsbzsbzsbzsbzsbLTbLSbofbLUbLWbLVbHTbqQbIabHYbMcbMbbMbbMdbMbbMbcaUbMebDbbMgbMibMhbMibMibMibMkbMmbMlbMobMnbMqbMpbMrbIbbFRbBDbMsaafbMubMtbMwbMvbMxbMvbMzbMybMAbECbMBbuzbMCbEsbEsbEsbEsbEsaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbGfbGfbMDbKgbKgbKgbMEbGfbGfaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoZbEJbMFbEJapaaoVaoVaoVapQaaHapQaoVapQaaHapQbLvbHEbLvaafbLvbGqbGpaafaafaafaafbCsbCsbCsbCsbCsbCsbCsbCsbCsbCsbIebNNbLIbRqbLKbLJbLMbLLbLNbMKbMKbMLbMNbMMbMPbMObMRbMQbMTbMSbMVbMUbMXbMWbMZbMYbRKbNabNabNabNabNabUrbzsbLTbNcbNdbNdbNdbNdbNdbRNbIfbNfbNdbNdbNdbNdbNdbNdbNcbIgbIsbIhbNobItbNobIubNobNnbNpbIvbNpbNpbNpbNpbNrbIDbIEbBDbMsaafbMubNtcBEbNubNwbNvbNybNxbNzbECbNAbuzblObkybNCbNBbkyaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaafaafbIXbGfbNDbNFbNEbNGbIXaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaoVaoVaoVapQaaHapQaoVapQaaHapQbLvbHEbLvbLvbLvbGqbGpaaaaaaaaaaafbNIbNHbNHbNJbNLbNKbNKbNMbNMbNIbFdbNNbLIbNObLKbNPbNQbNQbNSbNRbMKbNTbNVbOdbIGbIFbIHbNYbObbOabOdbOcbOdbOebOgbOfapQbOhbOhbOhbOhbOhbVubzsbLTbOjbIJbIIbOnbOmbNdbIKbILbOpbNdbOrbOtbOsbOtbOrbOjbIMbINbOxbIPbOxbPybIObOxbIQbOxbIRbOxbOzbOxbOxbITbOAbJrbJobMsaafbMubNtbOEbMvbOFbMvbOHbOGbOIbECbtpbuzblObkybtpbtpbkyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbGfbGebOJbGebNGaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafbCqbCqbCqbLvbCqbLvbCqbCqbCqbCqbCqbCqbLvbLvbLvbCqbCqbCqbHEbHEbHEbOKbGqbGpaaaaaaaaaaafbNIbOLbNJbNJbNJbQcbNKbNKbJubNIbJzbNNbORbOQbOTbOSbOVbOUbOXbOWbOYbOVbOVbOVbJBbOZbJFbPabPdbPcbMZbPebPgbPfbPibPhbRKbPjbPlbPkbPmbOhbVubPnbLTbNcbPobOrbOrbPpbNdbPqbOqbPrbNdbOtbOrbOtbPubPtbPwbPvbDbbPxbPAbPzbPAbPBbPDbPCbMibPEbPHbPGbPJbPIbJNbPKbJObPKbPNbPNbECbECbECbECbECbECbEsbEsbEsbECbtpbuzbPObtpbtpbPPbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbGebGfbGeaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabCqbJPbPSbPRbPSbPTbPVbPUbPWbHEbPYbPXbQabPZbHEbHEbOKbHEbHEbLvbLvbLvbLwbGpaaaaafbKvbJQbRnbRlbRlbKxbRlbKAbKPbKFbKFbKUbRpbNNbQgbQfbQibQhbQkbQjbQmbQlbQnbQjbQobQjbKVbQpbQrbMQcBFbQsbQvbQubQxbQwbQzbQyapQbQAbQBbPmbQCbOhbVubPnbLTbNcbQEbQDbOrbQFbNdbLdbLfbQHbNdbOrbOrbQJbOrbOrbNcbLTbDbbJNbJNbJNbJNbLebQMbQLbQNbLebJNbJNbJNbJNbJNbQObWrbQXbQSbQRbQUbQTbQVbQTbQWbPNbQYbQXbRabQZbRbbuzblObkybkybkybkyatSaafaafaafaagaagaagaagaagaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabCqbCqbRdbRcbRfbRebCqbHEbCqbHEapEbRgbHEbHEbHEbRhbCqbLvbLvbCqaaabLvbGqbGpaaaaafbLBbLgbLEbLCbLFbLFbLFbLFbLFbLFbLGbONcavcaubQgbRqbRsbRrbRtbOdbRvbRubRxbRwbRzbRybRBbRAbRAbRCbRDbMZbRFbREbRHbRGbRJbRIbVvbPjbRLbPmbPmbOhbVubPnbLTbNcbRMbLYbRObRNbNdbNdbRPbNdbNdbRQbRQbRRbRQbRQbNcbLTbDbbRTbRUbRUbRWbRVbMicBGbRZbRYbSabEmbEmbEmbJNbSbbQXbWrbSfbSebQUbSgbSibShbSjbPKbQXbSkbQXbQZbDhbSlbSmbkyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagaagaagaagaagaagbLvbSnbPSbSobSobSobCqbSpbCqbSqbCqbRgbHEbHEbSsbSrbCqaaaaafaaaaaabLvbGqbESbCqbCqbEScjLbNIbSubNJbNJbNJbSvbSybSxbSzbNIbSAcBHbQgbRqbSCbSBbSDbOdbOdbSEbMKbSFbSHbSGbSIbOdbOdbMQbSKbSJbSMbSLbSObSNbSObSPapQbOhbOhbOhbOhbOhbVubzsbLTbNcbOrbMabSQbSSbSUbSTbSWbSVbSXbOrbOrbOrbOrbSYbNcbLTbDbbEmbSZbEmbTbbTabMibTcbMibTdbTebEmbSZbEmbJNbOubQXbQXbWrbMfbTlbTkbTmbTlbTnbPNbTobQXbTpbQZbPNbTqbTrbkyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabCqbCqbPSbTsbTubTtbTwbTvbTybTxbCqbCqbCqbTzbCqbCqbCqbLvbLvbLvbTBbTAbTDbTCbTFbTEbMjcjLbNIbNIbNIbNIbNIbNIbNIbNIbNIbNIbTJbMGbQgbTKbLKbTLbTMbRxbTNbRxbMKbOdbOdbOdbSIbTObTPbTPbTRbTQbTSbPebTUbTTbTVbPhbRKbPjbTXbTWbTWbOhbVubzsbLTbTYbTZbTZbTZbUabUbbOrbMHbSQbMIbSQbSQbSQbSQbMJbNcbLTbDbbEmbEmbEmbUebUdbRZbUfbMibUgbUhbRUbRUbUibJNbUjbUkbQXbWrbNebQUbShbUnbTlbUobPNbUpbUpbUpbQZbUqbTqbTrbkyaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoVaoVbVwapQapQbVxaoVbCqbCqbCqbCqbCqbCqbCqbCqbCqbCqbHEbHEbHEbHEbHEbHEbHEbUtbUsbUvbUubUxbUwbUwbUwbUwbNgbUzbUzbUzbUAbUzbUBbEPbEPbUDbCqbSAbLZbQgbUEbUGbUFbUHbTPbTPbUIbUJbTPbTPbUKbUMbULbOdbUNbUPbUObUQbOdbUSbURbUTbQyapQbQAbUVbUUbUWbOhbVubPnbUYbUXbUXbUXbUZbNcbVabOrbNibNhbNkbNjbWjbWjbWjbNlbNcbLTbDbbJNbJNbJNbJNbVibVjbTcbVkbVibJNbJNbJNbJNbJNbVlbVnbWrbQXbNmbXrbXrbXrbXrbNqbPKbUpbUpbVsbQZbVtbTqbTrbkybkybkyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZmbVzbVzbVzbVzcafcbjcbjcbkbVybVBbVAbVDbVCbVFbVEbCqbVGbLvbLvbLvbLvbLvbLvbLvbLvbESbVHbVIbVIbVIbVIbVIbVIbVIbVIbVJbVJbVJbVJbVJbVLbVMbCqbSAbLZbQgbUEbVObVNbVQbVPbRAbVRbVSbRAbRAbVTbVVbVUbVXbVWbVZbVYbWabOdbUSbWbbWcbRIbVvbPjbWdbTWbTWbOhbVubPnbWebzsbzsbzsbPvbNcbWfbOrbOrbWgbNUbNsbWkbWjbWkbNWbNcbLTbDbbRTbRUbRUbWlbRVbMibRXbRZbWmbWnbEmbEmbEmbJNbWobWqbWpbWrbNXbWrbQXbQXbNZbOkbPNbUpbUpbUpbQZbVtbTqbTrbtpbtpbkyaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoVapQbVwaoVapQaoVaoVbLvbLvbLvbHEbWwbWybWxbWAbWzbCqbHEbLvaoVaoVapQaoVaoVapQaoVbESbVHbVIbWBbWDbWCbWFbWEbWGbWBbWIbWHbOobOlbVJbVJbVMbCqbWLbLZbQgbWMbWObWNbWNbWPbWQbWQbWQbWQbWQbWRbWSbMKbMKbMKbWTbOdbUObOdbUSbURbWUbQyapQbOhbOhbOhbOhbOhbVubPnbWebWVbAwbAwbPvbOjbWXbWWbWZbWYbXbbXabXcbWjbXcbXdbNcbLTbDbbEmbXebEmbXfbTabMibTcbMibTdbXgbEmbXebEmbJNbXhbXjbXibXlbTfbOwbOvbOvbOybOBbPKbXsbXrbXtbQZbUpbTqbXubkybtpbkybkybkyaagaagaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoVapQbVwbVwbVwbVwbVwbXvbHEbXvbHEbXwbXxcAMbXybHEbCqbHEbLvaoVaoVapQaoVaoVapQaoVbESbVHbVIbWBbXAbXzbXCbXBbXDbWBbXFbXEbODbOCbOMbVJbVMbCqbSAbLZbQgbXJbXKbLKbXMbXLbWQbOObXPbXObWQbXQbSIbXRbMKbXSbWabOdbVZbXTbXUbTTbXVbPhbRKbPjbXXbXWbXYbOhbVubzsbWebzsbBRbXZbPvbNcbOPbYabYdbYcbWibYabYebWjbYebPubPwbLTbDbbEmbEmbEmbYgbYfbRZbUfbMibUgbYhbRUbRUbUibDbbQZbYjbYicaZbQZbQZbYkbYmbZdbPsbPbbPLbPFbPMbUpbUpbTqbTrbkybYrbkybYsbkyaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoVaoVaoVaoVaoVapQapQbLvbLvbLvbYubYtbYwbYvbYxbHEbYybHEbLvaoVaoVaoVaoVaoVaoVaoVbESbVHbVIbYzbYBbYAbXCbYCbYzbYzbXFbYDbQbbPQbQdbVJbVMbCqbSAbLZbYIbYHbYHbYJbYLbYKbYNbQecBIbQqbWQbOdbSIbYQbYRbXSbYSbOdbVZbXTbUSbURbYTbQyapQbQAbYVbYUbYWbOhbVubzsbWebzsbHZbHZbPvbNcbNdbYXbYYbNdbYZbNdbNdbNdbNdbNdbNcbLTbDbbJNbJNbJNbJNbVibZabTcbZbbVibJNbJNbJNbJNbDbbTlbZcbTlcbabTlbQZbYkbYmbYlbYobQGbQIbWrbZhbQZbUpbTqbTrbkybtpbtpbtpbZiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaafaafaafbLvbZkbZjbZjbZlbWzbLubCqbLvbLvaoVcceaoVaoVaoVaoVaoVbGpbVHbVIbYzbYzbZnbZpbZobYzbZqbZsbZrbZvbQKbQPbVJbVMbCqbZxbQQbDGbYHbZzbRicewbRjbRmbRkbRSbRobWQbZFbZGbXRbMKbXSbZHbOdbZIbXTbUSbZJbZKbRIbVvbPjbZLbXWbXWbOhbVubPnbWebZMbzsbZNbPvbZObTZbTZbZPbNdbZRbZQbZSbzsbZUbZTbLSbLTbDbbRTbRUbRUbZVbRVbMibRXbRZbZWbZXbEmbEmbEmbDbbZYbTlbTlbTlbTlbQZbZZbZZcaacabbPNbPNbWrbPNbQZbPNbTqbTrbkycadcaccaebZiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaaSaaSaaSaaSaaSaaSabaaaSaaSaaSaaSaaSaaaaaabCqbCqbCqbCqbCqbCqbYybCqbCqbCqbCqapQaoVaoVapQaaHcjnaoVaoVaoVbGpbVHbVIcagcaicahcakcajcamcalcaocanbSdbYFbStbVJcatcasbSRbSwbHPbYHcawbZybThbTgbTjbTibTHbTGcaDbPccaEbMKbMKbMKcaFbOdcaHcaGbUSbURbOdbQyapQbOhbOhbOhbOhbOhcaJcaIcdEcbJbzscaKcaMcaLbUXcaNcaObzscaQcaPcaRbzscaSbMbcaUcaTbDbbEmbSZbEmcaVbTabMibTcbMibTdcaWbEmbSZbEmbDbcaXbTlcaYcbccbbckacjWckNckMcbdbPNbWrbWrcbebQZbDhcbfcbgbkycbicbhbtpbZiaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaaafaaaaafaaaacyaaaaafaaaaafaaaaaSaafaafbCqbHEbHEbHEbHEbHEbHEbHEbHEbLubLvaoVaoVaoVaaHcjocmXaaHaaHapQbGpbVHbVIcblbYzbWBbWBbWBbYzcbmcbocbnbXGbTIbUcbVJbCqbCqbUlcbrcbtbYHbYHcbucdtbUmcaAcaAcaAcaAbWQbOdcbAcbzcbCcbBbQtcbDcbFcbEbXUbTTcbGbPhbRKbPjcbIcbHcbHbOhapQbPnbAwceCbzsbzscbLcbKbzscbMcbNbzsbzscbObzsbzscbNbFrcbQcbPbDbbEmbEmcBzcbScbRbRZcbTbMibUgcbUbRUbRUbUibDbbTlbTlcbVbTlbTlbQZbZZbZZcbWcbXbPNcbZcbYcbYbQZbqgcbfbTrbkybkybkybtpbkyaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaccacccccbaaaccacccccbaaaccacccccbaaaaaSaaaaaabLvccdbHEbCqbCqbCqbTzbCqbCqbCqbCqaoVaoVaoVcnBaaHaaHapQaoVaoVbGpbVHbVIbYzccgccfbWBcchbYzbYzbXFccibOCbUybVbbUCbVdbVcbVfbVebVhbVgbVobVmbVqbVpcerbVrbWhbVKccwccvccyccxbRAbRAcBJbTOcczbTUbRFbURccAbQyapQbQAccCccBccDbOhapQbzsbzscfVccFccEcbLccGbzscbMccIccHccKccJccLccHccNccMbhGccObDbbDbbDbbDbbDbbDbbMiccPcfybDbbDbbDbbDbbDbbDbbQZbQZbQZbQZbQZbQZccRccRccSccTbQZbQZbQZbQZbQZbkyccUbTrbkyccWccVbtpbkyaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafccaccXccbaaaccaccXccbaaaccaccXccbaafaafaaaaaabLvccYccZbCqbSqbHEbHEcdabQacdbbCqaoVaoVaoVaoVapQaoVaoVaoVaoVbESbVHbVIbWBcddcdcbWBcdecdfbWBbXFcdgbWtbWsbWvbWubWKbWJbXmbXkbXobXnbXqbXpbXIbXHccsbXNcdtbYbccwcdwbOdcbAbTObTPcdycdxcdAcdzbMWcdBcdCbRIbVvbPjcdDcbHcbHbOhapQbzsbAwcfWcdGcdFcdIcdHbzscdJcdLcdKccMcdMccMbFrbHdcdNbhGcdObDbcfrcgicgicglcgkbMiccPcgnbDbaafaafaafaafbkycdQbNBblQcdRcdRbQZcdScdSccSbScbQZcmobtpcAKbtpbDhccUbXubkycdVbtpbtpbkybkybkyaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaccaccXccbaafccaccXccbaafccaccXccbaaaaafaafaafbCqbLvbCqbCqbCqcdWcdYcgFcpYbSsbCqaoVaoVaoVaoVapQaoVaoVapQaoVbESbVHbVIbWBceacdZceccebcedbWBcefceecBKcegceibVJbYpbYnbYEbYqbYMbYGbZebYObZgbZfbZubZtbZAbZwceycexbOdcbAcezbOdbOdbOdcezcezcezbURceBceAapQbOhbOhbOhbOhbOhapQbzscaKcfXceEceDceGceFbzsbzsceIceHceJbLSceLceKbzsbzsbhGcdObDbchochqchqchschrchuchtcjBbDbaafaaaaaaaafbkybtpceMbrGceOceNbQZcePcePceQbScbQZbkybkyceSceRbDhccUbTrbtpbtpbtpceTblPceUblPaagaagaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafccaccXccbaaaccaccXccbaaaccaccXccbaafaafaaaaaaaafaafbCqceVbCqceWceYbCqcyLbCqbCqaoVapQaoVaoVapQaoVaoVapQaoVbESbVHbVIbVIbVIbVIbVIbVIbVIbVIbVJbVJbVJbVJbVJbVJbCqbZBbCqccwcfbcfbcfbcfcbZDbZCcfbbZEcfhcapccwbOdbQucficezbOdbOdbOdbOebULcezbURcezbLKapQapQapQapQapQapQapQcfjcfjchkcflcfkcfjcfjcfjcfmcfocfnceJcfpceJceJbzscfqcbKcdObDbbDbccQccQbDbbDbccQcknccQbDbaaaaaaaaaaaabkybkyccUcfsbkybkybQZbQZbQZcftcfubQZbDhbkycaebtpckSccUcbgbkybkycfvbkybkybkybkyaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaafaaaccaccXccbaaaccaccXccbaaaccaccXccbaaaaafaaaaaacfxcfwcfwcfwcfwbCqbCqcqncqybCqbLvbLvbLvbLvbLvbLvbLvbLvbLvbCqcarcaqbTAcaxcazcaycaycaycaycaycaycaycaycaycaBcaBcaycaCceWccwcfFcfEcfHcgOcbqcbpcfbcbscfMctRccwcfNcfObRHcfQcfPcfRcfPcfQcfScfQcfTcezbLKbLKbLKaoVaoVapQapQcfjcfjciBchlcfZcfYcgbcgacfjcgcbAwcgdcgfcgecghcggbKTbKTcgjcnHbkyaaaaaaaaaaaaaaaaafcskaafaaaaaaaaaaaaaaabkyczGcgocgmcgmcgpcgrcgqcgtcgscgubkybkybkybkycbvbkyccUbTrbkycgycBLbtpbkyaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaaaaaaacgzaaaaaaaaacgzaaaaaaaaacgzaaaaaaaafcfxcfxcfxcgAcgCcgBcgEcgDbHEcAhcAicgGcgHcgHcgHcgHcgHcgHcgHcgHcgHcgHcgHcbwbEPcbxcbyccwccwccwccwccwccwccwccwccwccwccwccwccwccwccwcfbcgMcgOccjcclcckcgSccmccoccnccwcfNcgWcgVcgYcgXchacgZchbbOdchdchcchfchechgcheaoVaoVapQciCcfUcjpckhcizckicjrchnchmcfjbAwbAwceJceJcbKceJccMbAwbAwcbKczHbkybkybZibZibkybkybZiczQbZibkybkybZibZibZibkyczRczSbnschwchvchxchxchxchychAchzchCccpccqccqccqccrcctbkyccVbtpchHbkyaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafchJchIchIchKchLchLchLchLchLchLchLchLchLchLchLchMchOchNchOchPchRchQchScgHchUchTbQabCqbLvbLvbLvbLvbLvbLvbLvbLvbLvbCqbCqccucdicdhcdjccwchYchYchZccwcibciacidciccifciecihcigcijcdkcfbcikcimcBMcdmcinciqcdncdpcdoccwbLKcitbMQciubMQcivbMQciubMQciwbMQcixbLKbLKbLKapQapQapQbVucfjchhchjchicldckjciEciDcfjciFbAwccMccMciGceJccMbAwciHcbKczTbUwbUwbUwbUwbUwcBNbUwczUczVczVczVczVczVczVczXczWblObkyciKciJbkybkybZibZibkybkyciLcbfcdqbnscdscdrcdubkybkybkybkybkyaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaaaaaaaciPaaaaaaaaaciPaaaaaaaaaciPaaaaaaaafcfxcfxcfxciQciSciRcfwbHEbHEbHEbHEbCqaaaaaaaafaaaaaaaafaaaaaaaafaaabCqciTbCqciUcdvccwciXciWciZciYcjbcjacgRcBOcgRcdTcjecjdcjfcjacfbcjgcgOcdUciocjjcfbcejcelcekccwapQcphapQbVuapQcphapQbVuapQcpPapQcpPapQapQaoVaoVaoVapQbVucfjciyciAcizcjtcjscjvcjucjxcjwcjzcjyccMbLSccMcjAbFrbHdchpczYczYczYczYczYczYczYcAaczZczYczYczYczYczYczYcAccAbcAdbkycjCcbfbkyaaaaaaaaaaaabkybtpcbfcjEcjDcjDcjFcjGcjDaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaafaaaccacjHccbaaaccacjHccbaaaccacjHccbaaaaafaaaaaacfxcfwcfwcfwcfwcjIbLubHEbHEbCqbCqbLvcAjcjJcjJcjJcjJcjJcjJaafbCqbCqbCqcjKcemccwcjMciZciZciYckHcgRcencjNcjPcnAcgRcgRcgRcgRcfbcjUceoceocjYcjXcfbcepcfMcsFccwbOhckbbQAckbbOhckbbQAckbbOhckcbQAckdbOhaoVaoVaoVaoVaoVbVuckfckecjrcjqcjrclecljclfcfjcklceJceJceJckmceJceJceJbzsbCqbCqbCqbLvbLvbLvbCqbCqbLvbLvbLvbCqbCqbLvbLvbLvbCqckobkybkyckpcbfbkybkybZibZibkybkybtpcbfckrcjDcktcksckucjDaaaaaaaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafccacjHccbaaaccacjHccbaaaccacjHccbaafaafaafaaaaaaaaaaaaaagbCqbCqbCqckvbHEbCqckvbJfcjJckwckyckxckyckzcjJaaabCqbSsbHEckAcemccwckBckBckCccwckEckDckGcgRckFcnAckJckIckKckKcfbckLceqceqckPckOckRcesckTcetccwbOhckVckUckWbOhckYckXckZbOhclbclaclcbOhaoVaoVaoVaoVaoVbVucfjclgclhckgcsqclickkcsrcfjclkclmcllcloclncAeccMccMbAwclpbHEbLvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabkyclqbDhbkyclsclrcltcgrcltcltcltcltclvcluclwcjDclyclxclzcjDaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHraaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaccacjHccbaafccacjHccbaafccacjHccbaaaaafaafaafaaaaaaaaaaagclBclAclBbHEbHEbTzbHEccdcjJclCclEclDclGclFcjJaaabCqceYbHEckAcemccwckBckBckCccwclHcigclJceuceZcevclJcigclJclJcigclMcfaclQckHclPclRclNcgUcfdccwbOhclUclTclUbOhclWclVclWbOhclYcBPclZbOhapQapQapQapQapQbVucfjcfjcfjcmbcmdcmccmfcmecmdclkcmgccMcmicmhcmjcdNccMcmkbCqbHEbLvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabkycmqcBLbkycmrbntbntcmsbntbnsbnsbnscmtcmtcmucjDcmwcmvcmxcjDaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafccacjHccbaaaccacjHccbaaaccacjHccbaafaafaaaaafaafaaaaaaaagbCqbCqbCqbCqbHEbCqbCqbCqcjJcmycmAcmzcmBcmycjJaafbCqccwcmDcmCcfeccwckBckCckCccwcmGcmFcmIcffckFcfgcmLcmKcmLcmLcmNcfzcmQcmQcmRcmQcmQcfAcfCcfBccwbOhclUcmUclUbOhclWcmVclWbOhclZcmWclZbOhaoVaoVapQapQaoVcaJbUraoVaoVcpOcmdcmYcnacmZcmdbAwcnccnbcbQcndcnebFrcngcnfbCqclpbLvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabkyciIbtpbkybkybkybkybkybtpbkyaafaaaaaaaaaaafcnjcnjcnkcnjcnjaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaccacnlccbaaaccacnlccbaaaccacnlccbaaaaaSaaaaaaaafaafaaaaaaaaaaaaaaabLvbHEbLvaaaaaacjJcnmcnocnncnqcnpcjJcjJcjJccwcnrcmCcfDccwccwccwccwccwcntcfGcgRcgRckFcgUcgRcBOcnwcnvcnxcgRcgRcgRcgRcnycgRckFcnAcfIccwbOhbOhbOhbOhbOhbOhbOhbOhbOhbOhbOhbOhbOhaoVapQapQaoVaoVaoVbVuaoVaoVcpQcmdcmccnCcmecmdbzscnDbHdcnFcnEbHdcnGbzsbzsbCqaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbkycnJbtpbtpbtpbtpbtpbtpbtpbkyaafaaaaaaaaaaafaaacnjcnKcnjaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaaafaaaaafaaaaafaaaaafaaaaafaaaaaSaaaaaaaaaaafaafaaaaaaaaaaaabLvbHEbLvaaaaaacjJcnLcnNcnMcnPcnOcnRcnQcnScnRcnUcfJcgvcfLcnYcnXcoacnZcobcgwcgIcgxcgKcgJcsFccwcgLccwcgLccwcsFcgNcgRcgRcgPckFcnAcgQccwccwccwccwccwcigcigcigcigccwaafaafaafaafapQapQaoVaoVaoVaoVbVuaoVaoVcpQcmdcopcorcoqcosapQbzsceIcotbPnbPnbzsbzsaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbkycricvOcsycmocoubMBbNAbkybkyaafaaaaaaaaaaafaaacnjcnkcnjaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaaSaaSabaaaSaaSaaSaaSaaSaaSaaSaaSaaSaaaaaaaaaaaaaafaafaaaaaaaafbLvbHEbLvaafaafcjJcovcoxcowcozcoycoBcoAcoCcgTchDchBchEcoHcoHcoHcoJcoHcoLcoKchFcoMcjSchGccwchVchXchWchXciiccwcilcgRcipcirckFciscjScjScjScoZcpaccwcpbcigcpccpdcpdcpeaaaaaaaaaaoVaoVaoVaoVaoVaoVbVuaoVaoVcpQcmdcmdciMcmdcmdaaaapQaaacscaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkybkybkybYrbkyckobkybZibZibkybkyaaaaafaaaaaaaaaaafaaaaaacpiaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaabLvbHEbLvaaaaaacjJcpjcplcpkcpncpmcjJcpocppcjJcpqcpWciNcBOcgRcpsclJcptckHcpuciOcpvcpvcpvcpycpxcAOcpzcBQcpBcpycpDcpDcnxcencocciVcjNcjNcjPcgUcjccpIciZcpIcpJczMczLcpMczNaaaaaaaoVaoVaoVaoVaoVaoVbVuaoVaoVcpQbVwcmdcpNcmdczIapQapQaaacsmaoVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkycwycmncmnbkycAfaafaaaaaaaafaaaaaaaafaaaaaaaaaaafaaaaaacpiaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbCqbCqcpRbCqbCqaaacjJcpScpUcpTcjJcjJcjJcjJcjJccwcpVcgRciNcgRcgRcpXclJcpZckHcqacqccqbcqecqdccwcqfcqhcqgcqjcqiccwcqkcqlcqlcqccqackHcqmcjhckFcgUcqoccwcqpcigcqqcpdcpdcqraaaaaaaaaaoVaoVaoVaoVcszaoVbVuaoVaoVczJbVwcqscqtcqsbVwapQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZibZibZicmncmncBTbkyaaaaafaaaaaaaafaaaaaSaaSaaSabaaafaafaafaafcpiaafaafaafaafaafabaaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafbCqciTbHEcqvbCqaafcjJcjJcjJcjJcjJaafaaaaaaaafccwcqwcgRcjicqxcqxcqzcigcigcqAccwcqCcqBcqBcqBccwcqDcqFcqEcqHcAPccwcqBcqBcqBcqCccwcqAcigcigckFcgUccwccwcigcigcigcigccwaafaafaafaafapQapQaoVaoVaoVaoVbVuaoVaoVapQbVwaaaaaaaaabVwapQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZibtpcqucmncmncBUbkyaaaaafaaaaaaaafaaaaaSaaaaaaaafaaaaafaaaaaacqJaaaaaaaafaaaaafaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLvcqKcAQcqLbCqaafaaaaaaaafaaaaaaaafaaaaaaaafccwcqOcqNckHcqPcqRcqQcigcqScqTccwcqVcqUcqWcqUcqYcqXcracqZcrbcqGcqYcqUcqUcqUcrcccwcrecrdccwckFcrwcjkcjlcjTcrhcqYaaaaaaaaaaaaaaaaaaaoVaoVaoVaoVaoVaoVbVuaoVaoVaoVbVwbVwbVwbVwbVwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZicqubZibZibZibZibkyaaaaafaaaaaaaafaaaaaSaafcrjcrjcrjcrjcrjaaacrkaaacrjcrjcrjcrjcrjaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLvcrlcrmbJebCqcigcrncrncrncrncrncrncrncrncigccwcrpcrocrrcrqcrpccwccwccwcqAccwccwcqYcqYcqYcqYcrscrIcrtcrucrvcqYcqYcqYcqYccwccwcqAccwccwcpEcjOcjmcjQcgRcrAcqYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacswaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaSaaacrBcrCcrCcrCcrCcrDcrkcrFcrEcrEcrEcrEcrGaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLvbLvbLvbLvbCqaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcrHcrJcrKaoVaaHcsPcqYcqYcqYcqYczEcqYcqYcqYcqYcsPaaHaoVczFcrMcrLccwcjRccwccwcjVcrPcrRcqYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacswaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaSacycrScrScrScrScrSaaacrkaaacrScrScrScrScrSaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcrTcrUcrUaoVcAkcAlcAlcAlcAlcAlcAmcAlcAlcAlcAlcAlcAnaoVcrUcrVcrTccwcrWcrXccwcigcigcrYcigaafaafaafaafaafaafaafaafaafaafaafaafcswaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaSaaaaaaaaaaafaaaaaaaaacrkaaaaaaaaaaafaaaaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcrZcsbcsaapQcAoaaHcsAaoVaoVaoVaoVcsAaoVaoVcsAaaHcAoaoVcsdcsfcseccwcsgcfKcigaafaaacsicshaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaacswaaaaaaaaacsDcsDcsDcsDcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafcrjcrjcrjcrjcrjaaacrkaaacrjcrjcrjcrjcrjaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcrTcrUcsjaoVcApcAqaoVaoVaoVaoVaoVcsBaoVaoVaoVcAscAraoVcrUcrUcrTccwaagaagaagaafaaacsLcslcsocsncspcsncsocsncspcsncsocsncspcsncsMcsncsncsncsOcsNcsUcsTcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaacrBcrCcrCcrCcrCcrDcrkcrFcrEcrEcrEcrEcrGaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcsscstcrUaoVcAoaaHaoVaoVapQapQapQapQapQaoVaoVaaHcAocBRcrUcsvcsuccwaaaaaaaagaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaacswaagcsDcsDcsDcsVcsWcsVcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafcrScrScrScrScrSaaacrkaaacrScrScrScrScrSaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwccwcsxcrUaoVcAoaaHcsAapQapQcsHcsCcsIapQcsJaoVaaHcAoaoVcrUcsxccwccwaaaaaaaagaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcswaagctacsXctactbctcctbcsDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaafaaaaaaaaacsEaaaaaaaaaaafaaaaaaaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcsFccwcsGcrUaoVcApcAqaoVaoVapQcsRcsQcAtapQaoVaoVcAscAraoVcrUcsKccwcsFaaaaaaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagctdaagcsDctgcticthctcctjctiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafcrjcrjcrjcrjcrjaaacpiaaacrjcrjcrjcrjcrjaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwccwcsxcrUaoVcAoaaHaoVcsSapQctmctfczDapQapQcsAaaHcAoaoVcrUcsxccwccwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacswaagcuacuacuacuactoctkctqctpaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaacrBcrCcrCcrCcrCcsZcsYcsZcrEcrEcrEcrEcrGaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcsvcsucrUaoVcAoaaHaoVaoVapQapQapQapQapQaoVaoVaaHcAoaoVcrUcsscstccwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacswaaaaaacuacuactrcttctscuacuacuacuacuaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafcrScrScrScrScrSaaacpiaaacrScrScrScrScrSaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwcrTcrUcteaoVcApcAqaoVaoVaoVapQaoVaoVaoVaoVaoVcAscAraoVcrUcrUcrTccwaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacswaaaaaacuactwctuctyctxctActzctFctEcuaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaaaaafaaaaafaaaaaacpiaaaaaaaafaaaaafaaaaaaaaSaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaccwctlcsbcsaapQcAoaaHcsAaoVaoVcsAaoVaoVaoVaoVcsAaaHcAoaoVcsdcsfctnccwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacswaaaaaacuactHctGctJctIcuyctKctMctLcuaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaSaaSaaSaaSaaSaafaafaaacpiaaaaafaafaaSaaSaaSabaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwctvcrUcrUaoVcAoaaHaaHcAuaaHaaHcAuaaHaaHcAuaaHaaHcAoaoVcrUcrUctvccwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafctOctNaafcuactQctPctTctSctVctUctXctWcuaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaafctBaafaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccwctvcrUctCaoVcAvcAlcAlcAwcAlcAlcAwcAlcAlcAwcAlcAlcAxaoVctDcrUctvccwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafctZctYctZctZcuccubcuecudcugcufcufcufcufaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaaaafaaaaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjZccwccwccwcrUapQapQapQapQaoVaoVaoVaoVaoVapQapQapQapQcrUccwccwccwcjZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactZctZcuhcuictZcujcujculcukcujcufcumcumcufcufaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSaaSaaSaaSaaSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaactvccwccwcigcigcigcigcigcigcigcigcigcigcigcigcigccwccwctvaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactZcuocuncuqcupcujcurcuucuscujcuvcuwcuwcuxcufaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaactvctvctvctvctRctvctvctvctvctvctvctvctRctvctvctvctvaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactZcuAcuzcuCcuBcuEcuDcuGcuFcuEcuHcuJcuIcuKcufaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaafaafaafaafaaaaaaaaaaaaaaaaafaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactZcuMcuLcuOcuNcuQcuPcuScuRcuUcuTcuWcuVcuXcufaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactZctZcuYcuzcuZcujcvccvecvdcujcvgcvicvhcufcufaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvkcvjcvmcvjcvkcvkcvocvncvkcvjcvqcvjcvkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvkcvscvtcvjcvwcvucvzcvycvwcvjcvCcvBcvkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvkcvDcvtcvjcvwcvucvzcvycvwcvjcvCcvEcvkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvFcvkcvkcvtcvjcvGcvucvIcvHcvJcvjcvCcvkcvkcvKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcvkcvLcvjcvMcvucvzcvycvwcvjcvNcvkaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvkcvQcvPcvScvRcvTcvycvVcvUcvWcvkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvkcvXcvjcvZcvYcBScvycwacvjcvXcvkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcvkcvXcvjcvGcwbcwccvycvJcvjcvXcvkaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvkcvkcvXcvjcvwcvucvzcvycvwcvjcvXcvkcvkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvkcvXcvXcvjcvwcvucwdcvycvwcvjcvXcvXcvkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvkcvXcvacvacvfcvacwfcwecvbcvacvacvXcvkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvkcvXcvacvacwhcwgcwjcwicwkcvacvacvXcvkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvkcvXcvacvacwmcwlcwocwncwpcvacvacvXcvkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvkcwqcvacvacwrcwrcwtcwscwrcvacvacwqcvkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvkcwqcvacvpcvpcvlcwucwncvpcvpcvacwqcvkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvacvacvacwvcwxcwwcwAcwzcwCcwBcvacvacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvacvacvacvpcwjcwDcARcwEcwncvpcvacvacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvacvacvacvrcwucvvcAScvvcATcvrcvacvacvaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAUcvacvacvxcvlcAVcvvcvvcvvcAWcvlcvAcvacvacAXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvacvacvacvrcAZcAYcBacvvcvlcvrcvacvacvaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvacvacvacwvcvlcBbcBccvpcvlcwBcvacvacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvacvacvacvpcvlcBdcBecvlcvlcvpcvacvacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvacvacvacvacvacvacvacvacvacvacvacvacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacvacvacvacvacvacvacvacvacvacvacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcvacvacvacvacvacvacvacvacvaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaacBfaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cya +cyp +cye +cyp +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyE +cyw +cyi +cyK +cyg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyi +czd +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyE +cyM +cyi +cyD +cyg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyb +cyp +cye +cyp +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyc +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cya +cyp +cye +cyp +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cya +cyp +cyw +cyi +cyK +cyp +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +cya +cyf +cym +cym +cym +cyF +aaa +cyE +cyw +cyi +cyi +cyi +cyK +cyg +aaa +cyf +cym +cym +cym +cyF +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aag +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyb +cyg +cyo +cyo +cyo +cyc +cya +cyg +cyi +cyi +cyi +cyi +cyi +cyE +czj +cyc +cyo +cyo +cyo +cyE +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyb +cyn +cyv +cyv +cyG +cyp +cyw +cyi +cyi +cyi +cyi +cyi +cyK +cyp +czv +cyv +cyv +czz +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyb +cyn +cyv +cyv +cyc +cyi +cyi +cyi +cyi +cyi +cyi +czr +cyc +cyv +cyv +czz +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aCT +aCV +aCV +aCV +aKf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +cyb +cyr +cyH +cyh +cyl +cyl +cyU +cza +cyU +cyl +cyl +cyh +cyH +cyr +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aCS +aFC +aEr +aIG +aCS +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaa +cxt +cxD +cxG +aaa +aaf +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +cya +cyg +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyE +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aAC +aaa +aaa +aCS +aFC +aEr +aIG +aCS +aaa +aaa +aAC +aaf +aaa +aaa +aaf +cxt +cxy +cxC +cxF +cxG +aaf +aaa +aaf +aaa +aAC +aaf +aaa +aaf +cya +cyp +cyw +cyI +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyE +cyp +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckq +aac +aac +aac +aac +aac +aac +aac +aac +clO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +arB +asE +asE +asE +arB +awW +awW +asE +arB +aaa +aCT +aEp +aFD +aHs +aIH +aEp +aKf +aaa +arB +asE +awW +awW +arB +cxu +cxA +cxC +cxH +cxu +arB +awW +awW +asE +arB +aaf +aaa +cya +cyp +cyw +cyi +cyi +cyi +cyi +cyD +cyl +cyl +cyl +cyl +cyM +cyi +cyi +cyE +cyh +cyp +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckq +aac +aac +aac +aac +aac +aac +cmM +cnV +cmM +cmP +con +coU +cpr +cpH +cqI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apF +aqF +aqF +asD +asE +auN +asE +awV +ayk +awW +aAD +awW +aCS +aEo +aEr +aEr +aEr +aKg +aCS +awW +awW +awW +aQG +aRX +arB +cxu +cxz +cxC +cxH +cxu +arB +awY +ayk +awW +aAD +awW +cya +cyh +cyh +cyl +cyl +cyr +cyM +cyi +cyc +cyV +cyi +cyi +cyi +cye +cyi +cyi +cye +cyi +cyK +cyg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +cmT +cmT +cmT +cmT +cmT +aac +cmP +cmP +cmP +cmP +coP +cmP +cpF +cpH +crg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aqI +apH +arD +cpL +asG +atI +auP +atI +awV +ayl +azy +auP +azy +aCU +aEr +aFE +aFE +aFE +aEr +aLs +azy +auP +azy +ayl +aRY +awW +cxv +cxB +cxC +cxI +cxv +awW +awZ +ayl +beK +auP +beK +cyd +cyi +cyi +cyx +cyx +cyK +cyg +cyi +cyc +cyW +cyi +cze +czm +cyc +cyi +cyi +cyc +cyi +czB +cyE +czj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aTp +aTp +aTp +aTp +aTp +aac +cmO +cmP +cmP +cmP +coI +coV +cpw +cpH +crf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apG +aqF +aqF +asF +asE +auO +avP +awV +ayk +awW +awW +awW +aCS +aEq +aEr +aEr +aEr +aEr +aCS +awW +awW +awW +awV +aRY +awW +cxu +cxB +cxC +cxI +cxu +awW +awZ +ayk +awW +awW +awW +cyc +cyi +cyi +cyi +cyi +cyJ +cyc +cyi +cye +cyi +cyi +cyi +czl +cyc +cyi +cyi +cyc +cyi +cyi +cyK +cyg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amO +aac +aac +aac +clO +aaa +aaa +aac +aTp +cnh +aTp +aTp +aTp +aac +cnz +cmP +cmP +cmP +coQ +aac +aac +aac +cmE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +arB +asE +asE +asE +arB +awX +aym +azz +aAF +awW +aCV +aEt +aFE +aFE +aFE +aEr +aCV +awW +aOf +azz +aPu +aRY +awW +cxu +cxB +cxC +cxI +cxu +awW +awZ +aym +azz +aAF +awW +cyc +cyk +cyi +cyi +cyi +cyi +cyc +cyi +cyK +cyl +cyl +cyl +cyl +cyw +cyi +cyI +cyR +czA +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aDu +bwP +bBM +aac +clO +aaa +aac +cns +cnu +cnI +aTp +aTp +aac +cmS +cmP +cmP +cmP +cod +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apI +aqH +aqH +asH +asE +auQ +asE +awV +ayl +ayl +aAE +awW +aCV +aEs +aEr +aHt +aEr +aEr +aCV +awW +aOe +ayl +ayl +aRY +awW +cxu +cxB +cxC +cxI +cxu +awW +awZ +ayl +ayl +aAE +awW +cyc +cyj +cyi +cyi +cyi +cyi +cye +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyR +cyi +cyi +czC +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amP +aTp +aTp +aTp +aac +aac +aac +aac +aac +aac +aac +coe +cog +aac +aac +cnT +col +com +aac +aac +aac +clO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +arC +apK +cpK +czK +asJ +atI +auP +avQ +awV +ayl +ayl +aAH +awW +aCV +aEv +aFE +aFE +aFE +aEr +aCV +awW +aOh +ayl +ayl +aRY +awW +cxw +cxB +cxC +cxI +cxw +awW +awZ +ayl +ayl +bgi +awW +cyc +cyi +cyi +cyi +cyi +cyi +cyE +cyM +cyi +cyi +cyi +cyi +cyi +cyi +cyi +czw +cyR +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amP +aDJ +aTp +aTp +aac +cmH +cml +cml +cml +cml +coh +aTp +aTp +coj +aTp +aTp +aTp +aTp +aTp +coh +cpH +cqI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apJ +aqH +aqH +asI +asE +auO +avP +axc +ayn +azA +aAG +awW +aCV +aEu +aEr +aEr +aEr +aEr +aCV +awW +aOg +azA +aQH +aRY +awW +cxu +cxB +cxC +cxI +cxu +awW +awZ +ayn +azA +bgh +awW +cyc +cyi +cyi +cyi +cyi +cyD +cyp +cyh +cyl +cyR +cza +cyR +cyl +cyl +cyl +cyl +cyg +cyi +cyi +cyi +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amP +biZ +apT +aTp +cma +aTp +aTp +aTp +aTp +aTp +cdP +aTp +aTp +aTp +aTp +aTp +aTp +aTp +aTp +coY +cpH +crg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +arB +asE +asE +asE +arB +axG +ayk +awW +awW +awW +aCS +aEw +aFE +aFE +aFE +aKh +aCS +awW +awW +awW +awV +aRY +awW +cxu +cxB +cxC +cxI +cxu +awW +awZ +ayk +awW +awW +awW +cyc +cyi +cyi +cyi +cyD +cyp +cyw +cyi +cyi +cyi +cyi +cyi +cyi +cyX +cyX +cyX +cyc +cyi +cyi +cyD +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amP +aXH +aTp +clK +aad +cmJ +cmm +cmm +cmm +cmm +coh +aTp +aTp +aTp +aTp +aTp +aTp +aTp +aTp +coh +cpH +crf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +alU +atJ +aqO +alU +axh +ayl +azy +auP +azy +aCU +aEr +aEr +aEr +aEr +aEr +aCU +azy +auP +azy +ayl +aRY +awW +cxx +cxv +cxE +cxv +cxJ +awW +awZ +ayl +beL +auP +beL +cye +cyi +cyq +cyi +cyp +cyw +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyK +cyM +czy +cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amP +buA +aTp +aTp +aac +aac +aac +cmp +aac +aac +aac +cof +coh +aac +aac +aac +coN +coR +aac +aac +aac +cmE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +ali +arE +ali +axk +auc +avp +axI +ayp +awW +aAD +awW +aCX +aEy +aEy +aEy +aEy +aEy +aLu +awW +awW +awW +aQG +aRX +arB +aaa +aWa +aXI +awW +aaa +arB +awY +ayk +awW +aAD +awW +cyb +cyl +cyr +cyz +cyc +czy +cyO +cyi +cyi +cyi +cyi +cyi +cyi +cyi +cyi +czx +czy +cyE +cyr +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +buA +aTp +clL +aac +cmE +aaa +aaa +aaa +aac +aTp +aTp +aTp +aac +coo +aTp +aTp +aTp +coW +cpf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aqJ +amC +aqJ +aAY +aub +auV +axH +ayo +azB +awW +aaa +aCW +aEx +aFF +aFF +aFF +aKi +aLt +aaa +awW +aPt +aPu +aRY +arB +awW +awW +auP +awW +awW +arB +awZ +aym +azB +awW +aaf +aaa +aaa +cyc +cyy +cyg +czy +cyO +cyi +cyi +cyX +czb +cyX +cyi +cyi +cyi +cyi +cyD +cyp +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bJS +aac +aac +aac +cmE +aaa +aaa +aaa +aaa +bxh +aTp +aTp +aTp +aac +coE +aTp +aTp +aTp +coX +aac +aac +aac +clO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +ali +ali +ali +atb +asc +alU +awZ +ayq +azC +arB +arB +arB +awW +awW +awW +awW +awW +arB +arB +arB +aPv +ayl +aRZ +asE +aAF +awW +aXI +awW +baF +asE +bbb +ayl +beN +arB +aaf +aaf +aaf +cyb +cyA +cyE +cyM +cyP +cyi +cyi +cyY +czc +cyX +cyi +cyi +cyi +cyD +cyp +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cni +aTp +aTp +aTp +aac +coD +aTp +aTp +aTp +aTp +aTp +bsB +cpH +cqI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +atb +asc +alU +awZ +ayq +aym +aAI +aBH +azz +azz +azz +azz +azz +azz +aLv +aBH +azz +aPu +ayl +ayl +aNh +aym +azz +ayl +azz +aPu +ayl +aIK +ayl +beM +aAC +aaf +aaf +aaf +aaf +aaf +cyb +cyh +cyl +cyR +cyR +cyR +cyR +cyR +cyR +cyR +cyl +cyh +czk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bJS +aac +aac +aac +aac +coG +cnh +aTp +aTp +aTp +aTp +cut +cpH +crg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +atl +asc +alU +axb +ayr +azD +aAJ +azD +aCp +aEz +aFG +aHu +ayl +ayl +ayl +aNb +ayl +ayl +ayl +ayl +aTr +aUM +ayl +ayl +aWc +baG +ayl +aIK +ayl +beM +asE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cnW +aac +coF +coO +aTp +cok +cok +aTp +coi +cpH +crf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaf +aaf +alU +alU +atk +aud +alU +alU +alU +alU +alU +aBI +aBI +aBI +aBI +aBI +aNh +aKj +aLw +aLw +aLw +aLw +aQI +aNh +aTq +aTq +aTq +aTq +aXX +aTq +aTq +bbc +beO +beO +beO +beO +beO +beO +beO +beO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cnW +aac +aac +aac +aac +aac +aac +aac +aac +cmE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +alU +alU +alU +ase +atp +aum +avq +axJ +axJ +axJ +aAj +aBK +aCL +aEG +aFI +aBI +aIM +aKk +aLy +aNd +aOj +aPx +aQJ +ayl +aTq +aUO +aUy +aWm +aWf +aUQ +aTq +bhN +bcl +beQ +bgk +bhI +bjb +bkz +blS +bnv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +apL +aqK +alU +asc +atn +aue +aue +aue +aue +aue +aAe +aBJ +aCs +aEE +aFH +aGZ +aIJ +aJX +aLi +aMO +aNR +aOY +aQl +bcD +aTs +aUN +baH +aWi +aXY +baH +aTs +bbd +beO +beP +bgj +beO +bja +beO +bja +bja +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +apN +aqL +alU +asc +atq +aon +amC +axe +ays +alU +aAM +aBI +aCY +aEI +aFK +aHy +aIM +aKk +aLz +aNe +aNe +aLz +aQo +aSb +aTq +aUQ +aUA +aWr +aXZ +aUQ +aTq +bbe +beO +beS +bgj +bhJ +bjd +bkB +cAI +bja +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +alU +alU +apM +aom +alU +asc +atq +auX +avS +axd +amC +alU +aAM +aBI +aDc +aEH +bxM +aHa +aIL +aJY +aLj +aMP +aMP +aPa +aQn +ayl +aTq +aUP +aUO +aXL +aXZ +aUO +aTq +bbe +beO +beR +bgj +bgj +bjc +cAF +bkA +bja +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aba +aaS +aaS +aaf +aaf +aaf +aaa +aaa +aaa +alU +aoS +amC +aqN +ank +asc +atq +auZ +bsU +axf +amC +alU +auT +aBI +aDf +aEK +aFM +aHy +ayl +aKk +aLA +aNf +aNf +aLA +aQD +aSd +aTq +aUQ +aUW +aXL +aXZ +baJ +aTq +bbe +beO +beU +bgl +bhL +cAD +bkA +blV +beO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaf +chJ +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abY +aaa +aaf +aaa +aaf +aaa +aaf +aaa +acy +aaa +aaf +aaa +aiS +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +alU +aoR +apO +aqM +arF +asc +atq +auY +amC +amC +ayt +alU +aAw +aBl +aCZ +aEJ +aFL +aBI +aIO +aKk +asE +asE +asE +asE +aQD +ayl +aTq +aUl +aUR +aWs +aXZ +aUQ +aTq +bbf +beT +beT +bdQ +beZ +bje +bkC +cAJ +beO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaS +aaS +aaf +aaf +aaa +chI +aaa +aaf +aaf +aaS +aaS +aba +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abY +aaa +acV +adv +adZ +aaa +acV +adv +adZ +aaa +acV +adv +adZ +aaa +aaS +aaf +aaf +aaf +aaa +aaa +aaa +alU +aoT +amC +aqO +arG +asc +atq +ava +amC +axg +ayu +azF +azF +azF +azF +azF +azF +azF +aIQ +aKk +aLC +aNg +aOk +aPy +aRd +aRM +aTt +aUm +aUm +aWt +aYd +aZn +aTt +bbg +bdG +bdu +bdT +beO +bjf +beO +beO +beO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaa +aaf +aaa +aaf +aaa +aaa +chI +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +abY +aaf +acV +adu +adZ +aaa +acV +adu +adZ +aaa +acV +adu +adZ +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +alU +alU +alU +alU +arG +ash +atq +alU +alU +alU +alU +azF +aAP +aAP +aAP +aEF +aFN +azF +aIP +aKl +aLB +aLB +aLB +aLB +aQK +aSe +aTq +aUQ +aUQ +aXN +aUO +aUQ +aTq +bcI +aPz +bdt +bdR +aSg +aYf +bkD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaf +cca +cca +cca +cca +cca +aaa +chK +aaa +cca +cca +cca +cca +cca +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abY +aaa +acV +adu +adZ +aaf +acV +adu +adZ +aaf +acV +adu +adZ +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +ali +aoX +arI +asi +atr +atN +atN +atN +ayi +azq +aAK +aBv +aDa +aAQ +aAQ +azF +aIR +ayl +ayl +aNi +ayl +ayl +ayl +aSf +aTq +aTq +aTq +aTq +aTq +aTq +aTq +aPz +aPz +bdB +aWv +aTu +bjg +bkD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +ccc +ccX +ccX +ccX +ccX +cgz +chL +ciP +cjH +cjH +cjH +cjH +cnl +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +acV +adu +adZ +aaa +acV +adu +adZ +aaa +acV +adu +adZ +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaf +aaa +ali +amC +arH +atP +auV +auV +auV +axK +ayh +azi +aAx +aBm +aAQ +aAQ +aAQ +azF +azF +azF +aLD +aNh +aNh +aPz +aPz +aPz +aPz +aSg +aWj +aXP +aZr +baL +bbI +bcK +aPz +bdB +aWv +bfh +aPz +aPz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaS +aaf +ccb +ccb +ccb +ccb +ccb +aaa +chL +aaa +ccb +ccb +ccb +ccb +ccb +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaf +aaa +acV +adu +adZ +aaa +acV +adu +adZ +aaa +acV +adu +adZ +aaa +aaf +aaa +ajV +alR +alR +alR +alR +alU +alU +alU +aqP +arJ +alU +avb +aaH +bOi +atO +asK +azF +aAT +aBw +aDg +aAQ +aAQ +aHz +aIS +aKn +aLF +aLF +aLF +aPz +aQL +aSg +aSg +aSg +aWl +aSg +aZs +baN +bbK +bcM +bdH +bdD +bea +bfq +bji +bkF +cyt +cyC +cyC +cyC +cyC +cyC +cyC +cyC +cyC +czg +czo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaS +aaa +aaa +aaa +aaf +aaa +aaa +aaa +chL +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aba +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaa +aaa +adw +aaa +aaa +aaa +adw +aaa +aaa +aaa +adw +aaa +aaa +ajV +ajV +ajV +alQ +amy +ang +alR +aoj +amC +apP +amC +arH +alU +aaH +bNb +apQ +atO +asK +azF +aAS +aFP +aAQ +aAQ +aAQ +aAQ +aAQ +aKm +aLE +aNj +aLE +aPz +aPz +aPz +aTu +aUS +aWk +aWk +aWk +baM +bbJ +bcL +aWk +bdC +bdZ +bhO +bjh +bkE +cys +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +czf +czn +czs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaS +aaf +cca +cca +cca +cca +cca +aaa +chL +aaa +cca +cca +cca +cca +cca +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaf +abs +abZ +abZ +acW +ady +ady +ady +ady +ady +ady +ady +ady +ady +ady +ajq +ajW +akB +alh +alT +amA +ani +anI +aol +aol +aol +aol +arL +alU +avU +avb +bOi +atO +asK +azF +aAU +aBG +aAQ +aAQ +aAQ +aBM +aAQ +aKn +aLE +aNl +aOm +aPB +aQM +aQM +aTv +aUT +aPz +aXQ +aXQ +aXQ +aXQ +aXQ +aXQ +aXQ +aXQ +bhQ +bjj +bkF +cys +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +czp +czt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaS +aaa +ccc +ccX +ccX +ccX +ccX +cgz +chL +ciP +cjH +cjH +cjH +cjH +cnl +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaa +aaa +adx +aaa +aaa +aaa +adx +aaa +aaa +aaa +adx +aaa +aaa +ajV +ajV +ajV +alS +amz +anh +anH +aok +anJ +anJ +aFJ +arK +alU +alU +ali +alU +atO +asK +azF +aAP +aAP +aAP +aAQ +aFO +aHA +aIT +azF +aLG +aNk +aOl +aPA +aPA +aPA +aPA +aPA +aPA +aXQ +aZt +aXQ +aZt +aXQ +aZt +aXQ +aZt +bhQ +bjj +bkF +cys +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +czp +czt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaS +acy +ccb +ccb +ccb +ccb +ccb +aaa +chL +aaa +ccb +ccb +ccb +ccb +ccb +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aba +aaS +aaf +aaa +acV +adz +adZ +aaa +acV +adz +adZ +aaa +acV +adz +adZ +aaa +aaf +aaa +ajV +alR +alR +alR +alR +aom +amC +apP +amC +arN +amC +amC +amC +amC +axi +asK +azF +azF +azF +azF +aEL +azF +azF +azF +azF +aLE +aNn +aOl +aPA +aQO +aSh +aTw +aUU +aWn +aXQ +aZv +aXQ +bbL +aXQ +bdJ +aXQ +bgr +bhQ +bjj +bkF +cys +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +cyB +czp +czt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aba +aaa +aaa +aaa +aaf +aaa +aaa +aaa +chL +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +acV +adz +adZ +aaa +acV +adz +adZ +aaa +acV +adz +adZ +aaf +aaf +aaa +aaa +alU +alF +anj +anJ +anl +aoU +alU +amC +arM +alU +atT +asO +avV +atO +ayw +atN +aAV +alU +aDh +aDo +aFQ +aHe +aIN +aKp +aLE +aNm +aOl +aPA +aQN +aQN +aQN +aUn +aTy +aWy +aYe +aZw +aZw +bbq +bct +bfa +bfa +bhQ +bjk +bkE +cys +cyB +cyB +cyB +cyB +cyS +cyB +cyB +cyB +czh +czn +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaS +aaf +cca +cca +cca +cca +cca +aaa +chL +aaa +cca +cca +cca +cca +cca +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +acV +adz +adZ +aaf +acV +adz +adZ +aaf +acV +adz +adZ +aaa +aaf +aaf +aaf +alU +alF +anl +amC +alU +alU +alU +amC +alU +alU +apP +alU +alU +atP +auV +axK +aAN +aBL +aDd +aDd +aFR +aDd +aDd +aJZ +aLk +aNo +aOo +aPA +aQQ +aQN +aSV +aUo +aUX +aXp +baO +aZo +baw +bcO +baw +cBn +bgs +bhQ +bjk +bkF +cyu +cyC +cyC +cyN +cyQ +cyC +cyT +cyZ +cyC +czi +czq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aoV +bZm +aoV +aoV +aoV +aaa +aaS +aaa +ccc +ccX +ccX +ccX +ccX +cgz +chL +ciP +cjH +cjH +cjH +cjH +cnl +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaf +acV +adz +adZ +aaa +acV +adz +adZ +aaa +acV +adz +adZ +aaf +aaf +aaa +aaa +alU +alU +ank +alU +alU +aoV +alU +amC +amC +amC +arN +alU +avW +amC +ayx +atO +aAL +aBQ +aDb +aDo +aFY +aDo +aDo +aKp +aLE +aLE +aOn +aPA +aQP +aQN +aTx +aUV +aWo +aXQ +aXQ +aXQ +aXQ +aXQ +aXQ +aXQ +aXQ +bhQ +bjk +aPz +aaa +aaa +boI +bqi +brJ +boI +brJ +bvS +boI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aoV +bVz +apQ +apQ +aoV +aaa +aaS +aaf +ccb +ccb +ccb +ccb +ccb +aaa +chL +aaa +ccb +ccb +ccb +ccb +ccb +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +acV +adA +adZ +aaa +acV +adA +adZ +aaa +acV +adA +adZ +aaa +aaS +aaa +aaa +alU +amD +anm +amC +ali +aoV +ali +amC +alU +asO +atL +alU +avX +axf +amC +atO +aAY +aBQ +aDl +bxk +aFS +aDo +aIX +aBQ +aLE +aLE +aOp +aPA +aQR +aQN +aTA +aUq +aWq +aXs +aYH +aZx +bbO +aPA +bdM +aPz +bgt +bhS +bjk +aPz +aaa +aaa +blW +bqj +brK +blW +brK +bvT +blW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +bVw +bVz +bVw +bVw +aoV +aaa +aaS +aaa +aaa +aaf +aaa +aaf +aaa +aaa +chL +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaS +aaf +aaf +alU +amC +amC +amC +ali +apQ +ali +amC +alU +alU +alU +alU +alU +axj +alU +atO +aAY +aBQ +aDk +aDo +aDo +aDo +aIW +aBQ +aLE +aLE +aOl +aPC +aQN +aQN +aTz +aUp +aWq +aXr +aZx +cBh +bbN +aPA +bdL +aPz +bgt +bhR +bjk +aZE +blW +blW +blW +bqi +brJ +blW +brJ +bvS +blW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +apQ +bVz +aoV +bVw +aoV +aaa +aaS +aaS +aaS +aaf +aaf +aaf +aaf +aaf +chM +aaf +aaf +aaf +aaf +aaf +aaS +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaS +aaS +aba +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaa +aaa +alU +amE +ann +amC +alU +aoV +ali +amC +alU +arN +atU +alU +atU +amC +atJ +atO +aAY +aBQ +aDn +aDo +aDo +aHD +aIZ +aBQ +aLE +aLE +aOq +aPD +aQT +aQT +aTC +aUs +aUY +aXv +aYS +aZx +bbO +aPA +bdM +aPz +aSg +bhT +bjk +aZE +blY +bnw +boJ +bql +brL +btr +bnw +bvV +blW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +apQ +bVz +apQ +bVw +aoV +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +cfx +chO +cfx +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +alU +alU +ank +alU +aoV +alU +amC +amC +amC +amC +alU +aqO +amC +atJ +atO +aAY +aBQ +aDm +aDo +aDo +aDo +aIY +aBQ +aLE +aLE +aOl +aPA +aQS +aSj +aTB +aUr +aWq +aXt +aPA +aPA +aPA +aPA +aPA +aPz +bel +bfI +bgq +bhY +bkj +bqm +bqm +bps +bjr +bjr +buB +bvU +aZE +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aag +aaa +bVx +caf +aoV +bVw +apQ +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +cfx +chN +cfx +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +amF +alU +amC +alU +apQ +alU +alU +alU +alU +amC +alU +atM +axl +auV +azG +aAY +aBQ +aDp +aDo +aFU +aDo +aJb +aKp +aLE +aLE +aOl +aPE +aQV +aQN +aSi +aUu +aWq +aXw +aZB +aZB +aZB +aZB +aPA +bfc +bew +bfM +bjl +bkG +bkp +bmj +bjr +bmb +bjr +bjr +bjr +bvV +blW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bCq +bCq +bCq +bLv +bCq +aoV +cbj +aoV +bVw +apQ +aaf +bCq +bCq +bLv +bLv +bCq +aaf +cfx +cfx +chO +cfx +cfx +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +alU +alU +amC +alU +apQ +aaH +alU +arO +alU +amC +avc +atO +axk +ayy +ayy +aAO +aBN +aDe +aDe +aFT +aDe +aIU +aKa +aLH +aLE +aOl +aPA +aQU +aQN +aQN +aUt +aWq +aXw +aZA +aZA +aZA +aZA +aPA +aWv +aYb +aZE +aZE +aZE +bkn +bmh +bjr +bmb +bjr +bjr +bjr +bvV +blW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bCq +bJP +bCq +bSn +bCq +bCq +cbj +bLv +bXv +bLv +aaf +bCq +bHE +ccd +ccY +bLv +aaf +cfw +cgA +chP +ciQ +cfw +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +anK +ali +aaH +atR +alU +alU +alU +atW +atW +atO +axn +alU +aoX +atJ +aBQ +aDq +aDo +aFZ +aHE +aJc +aKs +aLK +aLK +aOr +aPA +aQX +aQN +aQN +aUv +aWp +aXA +aYX +aYX +aYX +bbs +bcw +bfd +bgw +aZE +bjn +bjr +bkt +bmh +boK +bpz +boK +bjr +buC +bvV +blW +aaa +aaa +aaa +aaa +aaa +ajY +akD +ajX +akD +ajX +akD +aoZ +aaa +bCq +bPS +bRd +bPS +bPS +bCq +cbk +bLv +bHE +bLv +aaf +bCq +bHE +bHE +ccZ +bCq +bCq +cfw +cgC +chR +ciS +cfw +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alU +amC +alU +aaH +apQ +apQ +aaH +alU +ali +ali +atO +axm +ayz +ayz +ayz +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aLJ +aLE +aOl +aPA +aQW +aQW +aTD +aQW +aUZ +aXx +aYU +aYU +aYU +bbr +bcu +bfe +bgx +aZE +bjm +bjr +bjr +bmh +boK +bjr +boK +bjr +bjr +bvV +bxu +aaa +aaa +aaa +aaa +aaa +bEJ +bGg +amI +amI +bHx +anM +bEJ +aaa +bLv +bPR +bRc +bSo +bTs +bCq +bVy +bLv +bXv +bLv +bLv +bCq +bHE +bCq +bCq +bCq +ceV +cfw +cgB +chQ +ciR +cfw +aag +aag +aag +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +alX +ali +asC +apQ +aaH +apQ +aoV +aoV +apQ +avY +axo +ayB +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aKu +aLM +aLF +aOs +aPG +aPG +aPG +aPG +aPG +aPA +aPA +aPA +aPA +aPA +aPA +aPA +aWv +bgx +aZE +bjp +bjr +bjr +bmh +boK +bjr +cBp +bjr +buB +bvV +bxu +bxu +bxx +bxu +bxu +bDi +ajX +bGh +bHx +amI +bHx +bLt +bMF +aaa +bCq +bPS +bRf +bSo +bTu +bCq +bVB +bHE +bHE +bYu +bZk +bCq +bHE +bCq +bSq +bCq +bCq +cfw +cgE +chS +cfw +cfw +bCq +clB +bCq +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +ali +amC +ali +asC +aaH +apQ +aoV +aoV +aoV +aoV +avY +axo +ayA +aaf +aBa +aBa +aBa +aBa +aBa +aBa +aaf +aKt +aLL +bDe +aOl +aPF +aQY +aSk +aTE +aPG +aWu +aYa +aZD +aZD +aZD +aZD +aZD +bff +bgx +aZE +bjo +bjr +bjr +bmh +boK +bjr +boK +bjr +bjr +bub +bxu +bvF +bzP +bAS +bxu +aaa +bEJ +bGg +amI +amI +bHx +bLs +bEJ +aaa +bLv +bPT +bRe +bSo +bTt +bCq +bVA +bWw +bXw +bYt +bZj +bCq +bHE +bCq +bHE +cdW +ceW +bCq +cgD +cgH +bHE +cjI +bCq +clA +bCq +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +ali +alU +alU +amC +alU +alU +alU +aaH +apQ +aoV +apQ +apQ +avY +axo +ayA +aaa +aBa +aBT +aDs +aEN +aGb +aBa +aaa +aKt +aLN +aLE +aOl +aPH +aRa +aRa +aTG +aPG +aWw +aYc +aZF +aZF +aZF +aZF +aZF +aZF +bgy +aZE +bjr +bjr +bjr +bmh +bjr +bjr +bjr +bjr +bjr +bvX +bxu +byA +bzR +byd +bxx +aaa +ajZ +akD +ajX +bJc +ajX +akD +apa +aaa +bCq +bPV +bCq +bCq +bTw +bCq +bVD +bWy +bXx +bYw +bZj +bYy +bHE +bTz +bHE +cdY +ceY +bCq +bHE +chU +bHE +bLu +bCq +clB +bCq +aaa +aaa +aaf +aaa +bCq +bCq +bLv +bLv +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +alV +amG +ano +amC +aon +aoW +alU +aqQ +aqQ +aqQ +aqQ +aqQ +avZ +axp +ayC +azH +aBb +aBS +aDr +aEM +aGa +aHF +aJd +aKv +aLN +aLE +aOl +aPF +aQZ +aRa +aTF +aPG +aWv +aYb +aZE +aZE +aZE +aZE +aZE +aZE +aZE +aZE +bjq +bjr +bjr +bmh +bjr +bjr +bjr +bjr +bjr +bjr +bxw +byz +bzQ +byc +bxx +aaa +aaa +bGi +bGi +bJb +bGi +bGi +aoV +aoV +bCq +bPU +bHE +bSp +bTv +bCq +bVC +bWx +cAM +bYv +bZl +bCq +bHE +bCq +cda +cgF +bCq +cqn +cAh +chT +bHE +bHE +ckv +bHE +bCq +bLv +bLv +bLv +bLv +bCq +ciT +cqK +crl +bLv +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +aKY +amC +anp +amC +amC +amC +ank +aqR +aqR +aGh +aqR +aqR +awb +axo +ayA +aaa +aBa +aBV +alu +aEM +aGd +aHG +aJe +aKw +aLP +aMR +aNU +aPJ +aPJ +aPJ +aPJ +aPJ +aVC +aXJ +aYZ +aZp +bgA +bgA +bcF +bfg +bgA +bhW +bjt +biq +bjr +bmh +bjr +bqn +brN +brN +brN +brN +bxx +byC +bzT +byl +bxx +aaf +aaf +bGi +bHz +byE +bKk +bGi +aoV +aoV +bCq +bPW +bCq +bCq +bTy +bCq +bVF +bWA +bXy +bYx +bWz +bCq +bHE +bCq +bQa +cpY +cyL +cqy +cAi +bQa +bHE +bHE +bHE +bHE +bHE +bHE +bHE +bHE +bHE +cpR +bHE +cAQ +crm +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +alW +amH +ano +anL +aoo +aoX +alU +aqQ +aqQ +aqQ +aqQ +aqQ +awa +axq +ayD +azI +aBc +aBU +aDt +aEO +aGc +aHF +aJd +aKb +aLN +aMQ +aNT +aPI +aRb +aRb +aRb +aRb +aWx +aXE +aZE +baS +bbP +bcR +bcE +baS +bex +bhY +bgu +bic +bku +bmh +bjr +aZE +brM +bts +buD +bvY +bxx +byB +bwS +byg +bxx +aaa +aaa +bGi +bHy +byE +bKj +bGi +aoV +aoV +bCq +bHE +bHE +bSq +bTx +bCq +bVE +bWz +bHE +bHE +bLu +bCq +bLu +bCq +cdb +bSs +bCq +bCq +cgG +bCq +bCq +bCq +bCq +bTz +bCq +bLv +bLv +bLv +bLv +bCq +cqv +cqL +bJe +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ali +ali +alU +alU +ali +alU +alU +alU +aaa +aaa +aaa +aaa +aag +avY +axo +ayA +aaa +aBa +aBW +aDv +aEP +aGe +aBa +aaa +aKt +aLN +aMS +aOt +aPK +aPK +aPK +aPK +aPK +aWA +aXM +aZE +cBi +bbP +baS +bbP +baS +beD +aZE +aZE +biA +bmg +bmH +bkJ +aZE +aZE +aZE +aZE +aZE +bxu +byD +bwU +byn +bxu +aaa +bxy +bxy +bxy +bJd +bKm +bxy +apQ +apQ +bCq +bPY +apE +bCq +bCq +bCq +bCq +bCq +bCq +bYy +bCq +bCq +bLv +bCq +bCq +bCq +bCq +bLv +cgH +bLv +aaa +bCq +ckv +bHE +bCq +aaa +aaa +aaf +aaa +bCq +bCq +bCq +bCq +bCq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +avY +axo +ayA +aaf +aBa +aBa +aBa +aBa +aBa +aBa +aaf +aKt +aLN +aMS +aOi +aLE +aPK +aSl +aTH +aPK +aWz +aXK +aZa +bfi +bfi +bbt +bcG +bdE +beA +aZE +bju +biv +bmf +bmt +boN +bqo +brO +btt +buE +bvZ +bxu +bxx +bwT +bym +bxu +bxy +bxy +bGj +bHA +bHA +bKl +bxy +aaH +aaH +bCq +bPX +bRg +bRg +bCq +bHE +bVG +bHE +bHE +bHE +bLv +apQ +aoV +aoV +aoV +aoV +aoV +bLv +cgH +bLv +aaa +bLv +bJf +ccd +bCq +aaa +aaa +aaf +aaa +aaa +aaf +aaf +cig +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajY +akD +alk +akD +akD +alk +akD +akD +aoZ +aaa +aaa +aaa +aaa +aaa +aag +avY +axs +ayF +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aKx +aLN +aMS +aOi +aLE +aRc +aSm +aTJ +aPK +aWB +aYh +aZE +baU +bbP +bcS +bcH +baS +ckQ +aZE +bgz +biT +boU +bmP +buF +bbR +bbR +btu +bbR +bbR +bxy +byF +bwW +bGm +bCo +bDk +bEK +byE +byE +byE +byE +bGi +apQ +apQ +bLv +bQa +bHE +bHE +bCq +bHE +bLv +bLv +bLv +bLv +bLv +aoV +aoV +aoV +aoV +aoV +apQ +bLv +cgH +bLv +aaf +cAj +cjJ +cjJ +cjJ +cjJ +cjJ +cjJ +cjJ +cjJ +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +ajX +akC +alj +alY +amI +anq +anM +aop +aoY +aaa +aaa +aaa +aaf +arP +avd +avZ +axr +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +aLl +aMT +aOu +aPL +aPK +aSm +aTI +aPK +aPz +aYg +aZE +aZE +aZE +aZE +aZE +aZE +bgB +bhX +bgv +biF +bkw +bnE +bny +btv +btv +bjv +btv +buc +bxz +bBa +bwV +byy +bBa +bAb +bzY +bBa +bEQ +bGM +bKn +bGi +aoV +aoV +bLv +bPZ +bHE +bHE +bTz +bHE +bLv +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +bLv +cgH +bLv +aaa +cjJ +ckw +clC +cmy +cnm +cnL +cov +cpj +cpS +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajX +akF +alm +ama +amI +amI +amI +aop +aoY +aaa +aaa +aaa +aaf +arP +ave +awa +axu +ayH +ayH +ayH +ayH +ayH +ayH +aFV +ayH +ayH +aKy +aLn +aMU +aOw +aPN +aPK +aSn +aTK +aPK +aWC +aYg +aZI +baW +baW +baW +baW +bfj +bgC +bia +aZK +bjs +bkx +bmQ +bnA +bpB +bpB +brR +bsV +bwc +bxA +bvI +bwX +byG +bvI +bAm +bBG +bDo +byE +byE +bKp +bGi +apQ +apQ +bLv +bHE +bHE +bSs +bCq +bHE +bLv +aoV +aoV +aoV +cce +apQ +aaH +cnB +aoV +aoV +aoV +bLv +cgH +bLv +aaa +cjJ +cky +clE +cmA +cno +cnN +cox +cpl +cpU +cjJ +aaf +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajX +akE +all +alZ +amJ +anr +amI +aop +aoY +aaa +aaa +arP +arP +arP +avd +avZ +axt +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +aLm +aMS +aOv +aPM +aPQ +aPQ +aPQ +aPQ +aPQ +aYi +aZH +baV +bbQ +bcT +aZK +aZK +aZK +bhZ +aZK +bkM +bfQ +bnG +bnz +bpA +bqp +bkM +bbR +bud +bxy +bvG +bAZ +bGm +bzF +bAc +bGm +byE +cBB +byE +bKo +bxy +aaH +aaH +bCq +bHE +bRh +bSr +bCq +bHE +bLv +apQ +apQ +aoV +aoV +aaH +cjo +aaH +apQ +apQ +apQ +bLv +cgH +bLv +aaf +cjJ +ckx +clD +cmz +cnn +cnM +cow +cpk +cpT +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abc +abc +abc +afu +abc +aaa +aaa +aaa +aaa +aaa +aaa +ajZ +akD +alo +akD +akD +akD +anO +akD +apa +aaa +aaa +arP +asQ +aqR +aqR +avZ +axt +ayG +azK +aBe +aBe +aDj +aER +aFX +aHj +aJa +aKc +aLp +aMV +aOy +aLE +aPQ +aRV +aSW +aVa +aWE +aYi +aZH +baY +bbR +bbR +bdS +bfk +bgD +bfN +bgE +bjv +bkH +bfm +boS +bfm +bfm +bkN +bfm +bwe +bwe +bwd +bwY +byJ +bwe +bAc +bBI +bGn +bGn +bGn +bKq +bxy +apQ +apQ +bCq +bOK +bCq +bCq +bCq +bHE +bLv +aoV +aoV +aoV +aoV +cjn +cmX +aaH +aoV +aoV +aoV +bLv +cgH +bLv +aaa +cjJ +cky +clG +cmB +cnq +cnP +coz +cpn +cjJ +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abc +aea +aeH +aft +abc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiU +aln +aiU +aaa +aiU +anN +aiU +aaa +aaa +aaa +arP +asP +aqR +aqR +awb +axt +ayG +azJ +aBd +aBX +aDi +aEQ +aFW +aHh +aIV +ayG +aLN +aMS +aOx +aPc +aRe +aRT +aTL +aSr +aWD +aYi +aZH +baX +bbR +bbR +bbR +bbR +bbR +boU +bbR +bkM +bfm +bnI +boR +bqs +bqs +bkM +bbR +bwd +bxB +bvL +byI +byH +bwe +bAn +bBH +bxy +bxy +bxy +bxy +bxy +bLv +bLv +bCq +bHE +bLv +aaa +bLv +bHE +bLv +aoV +aoV +aoV +aoV +aoV +aaH +apQ +aoV +aoV +aoV +bLv +cgH +bLv +aaa +cjJ +ckz +clF +cmy +cnp +cnO +coy +cpm +cjJ +aaf +aaf +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abc +abu +abu +abu +abc +abc +aec +aeJ +afw +abc +abc +aaf +aaa +aaf +aaf +aaf +aaf +aiU +alp +aiU +aaa +aiU +alp +aiU +aaf +aaf +aaf +arP +arP +arP +arP +avZ +axt +ayG +azM +aBg +aBZ +aDx +aET +aET +bCx +aHJ +aKd +aLq +aMY +aOA +aPO +aRf +aSc +aSX +aUw +aWG +aYi +aZJ +aZK +bbT +bbR +bbR +bcU +beF +bmi +bfl +bjw +bmk +bbR +boT +bbR +bbR +buI +bbR +bwd +bxD +byL +byK +byT +bwe +bAx +bTE +bCq +bHD +bJe +bCq +bLu +bHE +bHE +bHE +bHE +bLv +aaf +bLv +bUt +bLv +apQ +apQ +aoV +aoV +aoV +aaH +aoV +aoV +apQ +apQ +bLv +cgH +bLv +aaf +cjJ +cjJ +cjJ +cjJ +cjJ +cnR +coB +cjJ +cjJ +aaa +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abb +abt +aca +acz +acX +adC +aeb +aeI +afv +agf +abc +aaf +aaa +aaa +aiT +aiT +aiV +akG +aln +aiU +amK +aiU +anN +aoq +aiV +aiT +aiT +arP +asR +aqR +arP +awc +axt +ayG +azL +aBf +aBY +aDw +aES +aJh +aHv +aJh +aKA +aLN +aMS +aOz +aLE +aPQ +aSa +aSr +aSr +aWF +aYi +aZH +aZK +bbS +bbR +bcJ +bbR +bkM +boU +bbR +bbR +aZK +bnJ +bbR +bqt +cBq +bbR +bbR +bwd +bxC +byK +cBv +byO +bwe +bAo +bTE +bGo +bHC +bHE +bCq +bCq +bLv +bLv +bHE +bLv +bCq +aaa +bLv +bUs +bLv +aoV +aoV +aoV +aoV +aoV +apQ +aoV +aoV +aoV +aoV +bCq +cgH +bCq +aaa +aaf +aaa +aaa +aaf +cjJ +cnQ +coA +cpo +cjJ +aaa +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abw +acc +acB +acZ +adE +aee +aeL +afy +agh +abc +aaf +aaa +aaf +aiT +ajs +akb +akI +akI +amc +aiT +ant +akI +aos +aiU +apR +apR +arP +asT +aqR +avf +awb +axt +ayG +azN +aBe +aBe +aDy +aEU +aGf +aHL +aJi +aKB +aLT +aNp +aOC +aPQ +aPQ +aSt +aTP +aSr +aWF +aYj +aZL +aZK +bbU +bcV +bdV +bfn +beW +bfR +bbR +bqs +bml +bnL +bbR +bbR +bbR +bty +buJ +bwe +bxE +byM +bAd +bBf +bwe +bAJ +bCe +bCq +bHE +bJf +bCq +aaa +aaf +bLv +bHE +bLv +aaa +aaa +bTB +bUv +bES +bES +bES +bES +bGp +bGp +bGp +bGp +bES +bES +bES +car +cgH +bCq +bCq +bCq +bCq +bCq +bCq +cjJ +cnS +coC +cpp +cjJ +aaf +aaf +cig +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abd +abv +acb +acA +acI +adD +aed +aeK +afx +agg +abc +aaf +aaa +aaa +aiU +ajr +aka +akH +alq +amb +aiU +ans +alq +aor +apb +alp +aqS +arP +asS +aqR +arP +awd +axv +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +aHP +aNc +aOB +aPQ +aPQ +aSs +aSs +aSs +aSs +aPQ +aZK +aZK +aZK +aZK +bdU +bfm +beV +bfQ +aZK +aZK +aZK +bnK +bnK +bqu +bqu +bnK +bnK +bwe +bwe +bwe +bwe +bwe +bwe +bAI +bCd +bCq +bCq +bCq +bCq +bLv +bLv +bLv +bOK +bLv +bLv +bLv +bTA +bUu +bVH +bVH +bVH +bVH +bVH +bVH +bVH +bVH +bVH +bVH +bVH +caq +cbw +ccu +ciT +bCq +bSs +ceY +ccw +ccw +cnR +cgT +cjJ +ccw +ccw +ccw +ccw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaH +aai +aai +abg +aby +aby +aby +aby +aby +aeg +aeN +afA +afA +afA +aaf +aaa +aaa +aiU +aju +akd +akK +als +ame +amM +anv +als +aou +aiT +aiT +aiT +arP +arP +arP +arP +awf +axx +ayJ +ayJ +aBi +aqR +aqR +aqR +aqR +aqR +aqR +arP +aLI +aNr +bBo +aJq +aRh +aJq +aJq +aJq +aJq +aJq +aLY +aJq +bbV +bcW +bdW +bfo +bkS +bgn +bfo +bfo +bmn +bfo +boW +bmE +bmE +btz +btz +bwf +btz +btz +btz +bBh +bCr +bAK +bCn +bGq +bGq +bGq +bGq +bLw +bGq +bGq +bGq +bLw +bGq +bGq +bTD +bUx +bVI +bVI +bVI +bVI +bVI +bVI +bVI +bVI +bVI +bVI +bVI +bTA +bEP +cdi +bCq +bCq +bHE +bHE +cmD +cnr +cnU +chD +cpq +cpV +cqw +cqO +crp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aai +aai +aai +aaU +abf +abx +acd +acC +ada +adF +aef +aeM +afz +acd +aai +aai +aai +aai +aiV +ajt +akc +akJ +alr +amd +amL +anu +alq +aot +apc +apS +aqT +arQ +arQ +atX +atX +awe +axw +ayI +azO +aBh +akL +aDz +aEV +aGg +aHx +aqZ +apg +aLx +aNq +aOD +aPe +aJq +aJq +aJq +aJq +aJq +aJq +aLY +aJq +aJq +bHt +aJq +aJq +beX +bgm +aLx +bjx +bmm +bnM +boV +bnM +brT +brT +brT +brT +brT +brT +bAe +bBg +bCq +bCq +bDt +bGp +bGp +bGp +bES +bGp +bGp +bGp +bGp +bGp +bGp +bES +bTC +bUw +bVI +bWB +bWB +bYz +bYz +cag +cbl +bYz +bWB +bWB +bVI +cax +cbx +cdh +ciU +cjK +ckA +ckA +cmC +cmC +cfJ +chB +cpW +cgR +cgR +cqN +cro +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aah +aai +aai +aai +aai +aaI +aaM +aat +aat +aat +ace +aat +aat +adH +aei +aeO +afJ +acd +agL +ahp +ahU +aiB +aiX +ajw +akf +aiX +aiX +aiX +aiX +aiV +anP +aiT +apd +apd +apd +apd +apd +apd +apd +awg +axy +ayL +azQ +aBk +ayL +ayL +ayL +ayW +ayW +ayW +ayW +aLW +aNs +aJq +aLX +aLX +aLX +aLX +aLX +aJq +aYl +aZN +aYl +aYl +aYl +aYl +aYl +bgG +bid +aYl +bBi +aLY +bnN +boY +bqw +aJq +aJq +aYl +aKF +aLX +aJq +aJq +bBi +aJw +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +bCq +bTF +bUw +bVI +bWD +bXA +bYB +bYz +cai +bYz +ccg +cdd +cea +bVI +caz +cby +cdj +cdv +cem +cem +cem +cfe +cfD +cgv +chE +ciN +ciN +cji +ckH +crr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aai +aan +aaw +aaB +aat +aaJ +aat +abh +aat +acd +abK +acY +adG +aeh +aeR +afI +agl +agH +ahm +aho +aho +aiW +ajv +ake +agj +afL +afL +afL +aiX +anz +aov +apd +air +aqU +arR +asU +atY +apd +awg +axy +ayK +azP +aBj +aBO +aDC +ayL +aGo +aHN +aJj +ayW +aLV +aJq +aOE +aJn +aJn +aJn +aJn +aJs +aJq +aYk +aZM +aZM +bbW +bcX +bcX +aZM +aZM +aZM +bjz +bkT +bjz +bjz +boX +bqv +bqv +bqv +bqv +bwg +aJw +aJq +aJq +bBi +aJw +aaa +bEU +bGr +bGr +bGr +bKr +aaa +aaf +aaa +aaa +aaf +aaf +bCq +bTE +bUw +bVI +bWC +bXz +bYA +bZn +cah +bWB +ccf +cdc +cdZ +bVI +cay +ccw +ccw +ccw +ccw +ccw +ccw +ccw +ccw +cfL +coH +cBO +cgR +cqx +cqP +crq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aak +aap +aay +aaD +aat +aat +aat +awN +abA +acd +acd +acd +acd +aek +aeU +afE +adF +agI +ahq +ahV +aiC +agj +ajy +akh +afK +afM +afM +afN +aiX +anz +aov +apf +apU +aqW +aqW +asW +apU +apd +awg +axy +ayN +azP +aAW +aCa +aDB +aDI +azW +azW +azW +ayW +aLX +aJq +aOE +aJn +aaa +aaa +aJn +aJs +aJq +aYn +aZM +aZu +bbY +bcY +bdX +bbX +bgH +bie +bjB +bkW +bmp +bjz +bpa +bqy +cBr +bqy +buK +bqy +aJw +aJq +aJq +bBi +aJw +aaf +bEW +bGt +bHG +bJh +bEW +aaf +aaf +aaa +aaa +bKv +bLB +bES +bMj +bUw +bVI +bWF +bXC +bXC +bZp +cak +bWB +bWB +bWB +cec +bVI +cay +ccw +chY +ciX +cjM +ckB +ckB +ckB +ccw +cnY +coH +cgR +cgR +cqx +cqR +crp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aaj +aao +aax +aaC +aat +aat +adO +aat +abz +acd +acE +add +adF +aej +aeQ +afD +agj +agj +agj +agj +agj +agj +ajx +akg +agj +afL +afL +afL +aiX +anz +aov +ape +apU +aqV +arS +asj +ats +auo +avr +axy +ayM +azs +aAR +aBP +aDA +aEW +aGi +aHB +aEZ +aBt +aJs +aJq +aOE +aJn +aaa +aaa +aJw +aVb +aWH +aYm +aZM +aZq +bbX +bbX +bbX +bfp +aZP +aZP +bjA +cAG +bmo +bmr +boZ +bqx +brU +bmr +bmr +bmr +bmr +byN +aJq +bBj +aJw +aaa +bEV +bGs +cBC +bJg +bKs +aaa +aaf +aaf +aaf +bJQ +bLg +cjL +cjL +bNg +bVI +bWE +bXB +bYC +bZo +caj +bWB +cch +cde +ceb +bVI +cay +ccw +chY +ciW +ciZ +ckB +ckB +ckC +ccw +cnX +coH +cps +cpX +cqz +cqQ +ccw +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aal +aar +aay +aaF +aat +aaO +aaW +aat +abB +acf +abM +acG +adI +aem +aeO +afG +agj +agK +ahs +ahs +aiE +agj +ajA +akj +agj +agj +agj +aiX +aiX +anQ +aov +apf +apU +aqY +arU +asn +atK +auq +avs +axz +ayP +azU +aBo +aCg +azW +aEX +aEZ +aEZ +aEZ +aEX +aJs +aJq +bJx +aJn +aaa +aaa +aTQ +aVd +aWJ +aYp +aZM +aZz +baI +bda +bda +bca +bgJ +aZP +bjD +bkY +bmo +bnP +bpc +bqA +brW +btB +buM +bwi +bmr +aMm +aJq +bBi +bCs +bCs +bEY +bGu +bHI +bJi +bEY +bCs +bCs +bNI +bNI +bRn +bLE +bNI +bNI +bUz +bVI +bWG +bXD +bYz +bYz +cam +bYz +bYz +cdf +ced +bVI +cay +ccw +chZ +ciZ +ciZ +ckC +ckC +ckC +ccw +coa +coJ +clJ +clJ +cig +cig +ccw +ccw +ccw +ccw +ccw +ccw +ccw +csF +ccw +ccw +ccw +ccw +ccw +ccw +cjZ +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aaj +aaq +amB +aaE +aaJ +aaN +aaV +aat +aat +acd +abL +adb +acd +ael +aeO +afF +agj +agJ +ahr +ahr +aiD +agj +ajz +aki +akM +alv +amf +amQ +anw +anz +aov +apd +apV +aqX +arT +asl +atu +apd +awg +axy +ayv +azE +aBn +aCb +aDD +aEY +aGj +aHC +aEZ +aBt +aJs +aJq +aOE +aJn +aaa +aaa +aPR +aVc +aWI +aYo +aZM +aZy +bay +bcZ +bdY +bdF +bgI +aZP +bjC +bkX +bmo +bnO +bpb +bqz +bqq +brS +bsY +bue +bmr +aMn +aJq +bBi +bCs +bDv +bEX +bFa +bHH +bFa +bKt +bLx +bCs +bNH +bOL +bRl +bLC +bSu +bNI +bUz +bVI +bWB +bWB +bYz +bZq +cal +cbm +bYz +bWB +bWB +bVI +cay +ccw +ccw +ciY +ciY +ccw +ccw +ccw +ccw +cnZ +coH +cpt +cpZ +cig +cqS +ccw +crH +crT +crZ +crT +css +ccw +ccw +ccw +csv +crT +ctl +ctv +ctv +ccw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aal +aat +aay +aat +aat +aaJ +aat +aat +abD +acd +acd +acd +acd +aen +aeO +afH +agj +agM +ahu +ahW +aiD +agj +auj +akl +akO +alx +alx +amR +anw +anz +aox +apd +apd +apd +apd +apd +apd +apd +awg +axy +ayQ +azE +aBq +aBr +aDE +aFc +azW +azW +aJf +ayW +aJr +aJq +aOE +aJn +aaa +aPR +aPR +aPR +aWL +aPR +aZM +bbX +bay +bbM +bcN +bdK +bgL +aZP +aZP +aZP +bmo +bnR +bpe +bqB +bqq +btD +buO +bwk +bmr +aLY +cBw +bBk +bCs +bDx +bFa +bFa +bHJ +bFa +bFa +bLz +bCs +bNH +bNJ +bRl +bLF +bNJ +bNI +bUz +bVJ +bWI +bXF +bXF +bZs +cao +cbo +bXF +bXF +cef +bVJ +cay +ccw +cib +cjb +ckH +ckE +clH +cmG +cnt +cob +coL +ckH +ckH +cqA +cqT +cqA +crJ +crU +csb +crU +cst +csx +csG +csx +csu +crU +csb +crU +crU +ccw +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aaj +aas +aaz +aat +aat +aat +aat +aat +abC +acd +acH +adc +acd +aeo +aeS +afH +agj +agN +aht +aht +aid +ail +aiZ +ajF +akN +alw +amg +amR +anw +anR +aow +apg +aqZ +aqZ +aqZ +apW +aqZ +avh +awh +axz +ayO +azE +aBp +aCc +aDF +ayL +aGq +aHO +aJl +ayW +aJq +aJq +aOE +aJn +aaa +aPR +aTR +aVe +aWK +aYq +aZO +aZC +baK +bbC +bbC +bdI +bgK +bgK +bjE +bgK +bmq +bnQ +bpd +bpd +bqr +btC +buN +bwj +bmr +byP +aJq +bBi +bCs +bDw +bEZ +bGv +bHH +bJj +bKu +bLy +bCs +bNJ +bNJ +bKx +bLF +bNJ +bNI +bUA +bVJ +bWH +bXE +bYD +bZr +can +cbn +cci +cdg +cee +bVJ +cay +ccw +cia +cja +cgR +ckD +cig +cmF +cfG +cgw +coK +cpu +cqa +ccw +ccw +ccw +crK +crU +csa +csj +crU +crU +crU +crU +crU +cte +csa +crU +ctC +ccw +ccw +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aam +aav +aav +aav +aaL +aaQ +aaY +aav +abE +acg +acJ +ade +adJ +aep +aeT +afH +agj +ahs +ahs +ahP +aiF +ain +aja +ajG +akQ +agj +agj +amS +anx +anz +aov +aph +aph +aph +arW +aso +auf +avi +awi +axy +ayS +azS +aBs +aCi +aDI +ayL +ayW +ayW +ayW +ayW +aJq +aJq +aOE +aJn +aaa +aPR +aTT +aVg +aWN +aYs +aZQ +bbi +bde +bcd +bcd +bcd +bcd +bcd +bcd +bcd +bms +bnS +bpf +bqC +brZ +btE +bnS +bwl +bxG +byR +brT +bBl +bCs +bDz +bFa +bFa +bHH +bFa +bFa +bFa +bCs +bNL +bNJ +bRl +bLF +bNJ +bNI +bUz +bVJ +bOo +bOD +bQb +bZv +bSd +bXG +bOC +bWt +cBK +bVJ +cay +ccw +cid +cgR +cen +ckG +clJ +cmI +cgR +cgI +chF +ciO +cqc +cqC +cqV +ccw +aoV +aoV +apQ +aoV +aoV +aoV +aoV +aoV +aoV +aoV +apQ +aoV +aoV +crU +ccw +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aai +aau +aaA +aaG +aaK +aaP +aaX +aat +aat +acd +acD +acY +adG +aeq +aeV +acd +agj +agj +agj +agj +agj +agj +ajD +akm +akP +aly +amh +amR +anw +anz +aov +aph +aob +ara +arV +apZ +aph +aph +awg +axA +ayR +azR +aBr +azW +afO +azW +agm +aBt +aaa +aJn +aLY +aLY +aOF +aPR +aPR +aPR +aTS +aVf +aWM +aYr +aZP +bbh +bcc +bdd +bbX +bfr +bgM +bif +aZM +aZM +bmr +bmr +bmr +bmr +bmr +bmr +bmr +bmr +bmr +byQ +aJq +aJq +bCs +bDy +bFb +bGw +bER +bJk +bFa +bLA +bCs +bNK +bQc +bKA +bLF +bSv +bNI +bUB +bVJ +bOl +bOC +bPQ +bQK +bYF +bTI +bUy +bWs +ceg +bVJ +cay +ccw +cic +cBO +cjN +cgR +ceu +cff +cgR +cgx +coM +cpv +cqb +cqB +cqU +cqY +aaH +cAk +cAo +cAp +cAo +cAo +cAp +cAo +cAo +cAp +cAo +cAo +cAv +apQ +cig +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aai +aai +aai +aai +aai +aai +aai +abj +abG +acd +acd +acd +acd +aeP +afC +agk +agF +agP +agP +agP +agP +aiz +ajg +akl +akR +alx +alx +amR +anw +anz +aov +aph +aoc +arc +arY +ata +auh +aph +awg +axA +ayT +azR +azW +azW +aBt +azW +aio +aBt +aaa +aJn +aJq +aJq +aOE +aPT +aRj +aSv +aTV +aVi +aWP +aYu +aYt +bbk +bbk +bbk +bbk +bfs +aZM +aZM +aZM +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aJn +aXf +aJq +byV +bCs +bAM +bFa +bGy +bFc +bJm +bFa +bHO +bCs +bNK +bNK +bKP +bLF +bSy +bNI +bEP +bVJ +bVJ +bOM +bQd +bQP +bSt +bUc +bVb +bWv +cei +bVJ +caB +ccw +cif +cgR +cjP +ckF +ceZ +ckF +ckF +cgK +cjS +cpv +cqe +cqB +cqW +cqY +csP +cAl +aaH +cAq +aaH +aaH +cAq +aaH +aaH +cAq +aaH +aaH +cAl +apQ +cig +ctv +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aai +abi +abF +ach +acK +adf +acd +aer +afB +agi +agD +agO +agO +agO +agO +aiy +ajb +ajF +akN +alw +ami +amR +anw +anz +aov +api +ata +arb +arX +atc +aug +aph +awg +axA +azW +ayU +azW +aCj +ayW +ayW +ayW +ayW +aJn +aJn +aJq +aJq +aOE +aPS +aRi +aSu +aTU +cpC +aWO +aYt +aYx +bbj +bce +bdf +beb +aYv +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aJn +aXf +aJq +byU +bCs +bAL +bFa +bGx +bET +bJl +bHh +bHN +bCs +bNM +bNK +bKF +bLF +bSx +bNI +bEP +bVL +bVJ +bVJ +bVJ +bVJ +bVJ +bVJ +bUC +bWu +bVJ +bVJ +caB +ccw +cie +cdT +cnA +cnA +cev +cfg +cgU +cgJ +chG +cpv +cqd +cqB +cqU +cqY +cqY +cAl +csA +aoV +aoV +csA +aoV +aoV +aoV +aoV +csA +aaH +cAl +apQ +cig +ctR +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaR +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +agn +agR +agn +agR +agn +ajc +ajI +ako +akQ +agj +agj +amS +any +anz +aov +aph +aqb +are +arZ +ata +aui +aph +awg +axA +ayX +azY +azW +azW +afP +aFb +aEZ +afP +aJp +aKE +aMa +aNw +aOE +aPU +aRl +aSx +aTX +aVi +aWR +aYv +aZS +aZR +aZR +bbm +bec +bfu +bgO +bgO +bgO +bmu +bgO +bgO +bgO +bgO +bsb +aaf +aaf +aaf +aJn +aXf +aJq +aJq +bCs +bFa +bFa +bFa +bET +bJn +bHi +bHQ +bCs +bNM +bJu +bKF +bLG +bSz +bNI +bUD +bVM +bVM +bVM +bVM +bVM +cat +bCq +bVd +bWK +bYp +bCq +cay +ccw +cih +cje +cgR +ckJ +clJ +cmL +cgR +csF +ccw +cpy +ccw +ccw +cqY +cqY +cqY +cAl +aoV +aoV +aoV +apQ +aoV +csS +aoV +aoV +aoV +cAu +cAw +apQ +cig +ctv +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaT +aaf +aaZ +abm +abm +acv +adi +adq +aez +aeW +agQ +ahv +ahQ +aiI +aiH +ajB +akm +akP +aly +amj +amR +anw +anz +aov +aph +aph +ard +ard +ard +aph +aph +awj +axA +ayW +ayW +aBt +aBt +ayW +ayW +ayW +ayW +aJo +aJq +aLZ +aNv +aOE +aPS +aRk +aSw +aTW +aVj +aWQ +aYv +aZR +aZR +aZR +aZR +aZR +bft +bgN +bgN +bgN +bmv +bkI +bnT +bpg +bqD +bsa +bgO +buP +bwm +bxH +byS +aJq +aMh +bCs +bCs +bCs +bCs +bFe +bCs +bLD +bCs +bCs +bNI +bNI +bKU +bON +bNI +bNI +bCq +bCq +bCq +bCq +bCq +bCq +cas +bCq +bVc +bWJ +bYn +bZB +caC +ccw +cig +cjd +cgR +ckI +cig +cmK +cBO +ccw +chV +cpx +cqf +cqD +cqX +crs +cqY +cAl +aoV +aoV +apQ +apQ +apQ +apQ +apQ +aoV +aoV +aaH +cAl +aoV +cig +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaT +aaa +aaZ +abH +acl +ajC +acL +adL +aez +agp +agT +ahx +ahS +aiK +ajc +ajI +akl +akT +aww +alx +amR +anw +anz +aov +apk +anw +anw +anw +anw +aVh +avj +awl +axC +ayY +azZ +azZ +azZ +azZ +azZ +aGt +aHQ +aJr +aJq +aMc +aNy +aOE +aPS +aRn +aSz +aTY +aVl +aWT +aYx +aZR +bbm +bbm +bdh +bee +bfv +bgN +bih +big +bii +bgN +bnV +bph +bqF +bsd +btG +buQ +bwn +bxI +bwa +bAg +bBq +bCu +bAO +bFd +bFd +bFj +bJp +bHk +bHR +bIe +bFd +bJz +bRp +cav +bSA +bTJ +bSA +bSA +bWL +bSA +bSA +bZx +bSR +bUl +bVf +bXm +bYE +bCq +ceW +ccw +cij +cjf +cgR +ckK +clJ +cmL +cnw +cgL +chX +cAO +cqh +cqF +cra +crI +cqY +cAl +aoV +aoV +apQ +csH +csR +ctm +apQ +apQ +csA +aaH +cAl +aoV +cig +ctv +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +abY +aaa +aaZ +abn +ack +acF +acF +adK +aeX +ago +agS +ahw +ahR +aiJ +ajc +ajI +akk +akS +alw +amk +amR +anw +anS +aoy +apj +anz +anz +anz +anz +anz +anz +awk +axB +anz +anz +anz +anz +anz +anz +apj +aHP +aJq +aJq +aMb +aNx +aOE +aPS +aRm +aSy +aTX +aVk +aWS +aYw +aZT +cBj +bcf +bdg +bed +bfv +bgN +big +bgN +bkZ +bgN +bnU +bph +bqE +bsc +btF +bph +bsc +btF +bvW +bAf +bBp +aHP +bAN +bQg +bQg +bFh +bGN +bHj +bNN +bNN +bNN +bNN +bNN +cau +cBH +bMG +bLZ +bLZ +bLZ +bLZ +bLZ +bQQ +bSw +cbr +bVe +bXk +bYq +ccw +ccw +ccw +cdk +cja +cgR +ckK +clJ +cmL +cnv +ccw +chW +cpz +cqg +cqE +cqZ +crt +czE +cAm +aoV +aoV +apQ +csC +csQ +ctf +apQ +aoV +aoV +cAu +cAw +aoV +cig +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaT +aaa +aaZ +abJ +ack +acM +adj +adQ +aeZ +agr +agU +ahy +ahX +aiL +ajc +ajI +akq +akQ +agj +agj +amS +anx +anz +aoz +apm +aqd +anA +asa +atd +anA +avk +awk +axE +ayZ +aAa +aBu +aAa +aAa +aAa +aGu +aHR +aJt +aJq +aMe +aNA +aOE +aPV +aRp +aSB +aTZ +aVn +aWV +aYz +aZR +bbm +bbm +bdh +bef +bfv +bgN +bii +big +bih +bgN +bnV +bph +bqF +bsf +btG +buS +bwp +bxK +bwh +bAh +bBs +bzG +bAP +bCp +bDp +bFq +bGO +bHl +bHS +bLI +bLI +bOR +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bYI +bDG +bHP +cbt +bVh +bXo +bYM +cfb +cfF +cfb +cfb +cfb +cfb +cfb +cig +cmN +cnx +cgL +chX +cBQ +cqj +cqH +crb +cru +cqY +cAl +csA +csB +apQ +csI +cAt +czD +apQ +aoV +aoV +aaH +cAl +aoV +cig +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaT +aaa +aaZ +abI +ack +acF +acF +adQ +aeY +amN +agt +agQ +aie +aiL +ajc +ajI +akp +akU +alz +aml +amT +anw +anz +aoz +apl +aqc +aqc +aqc +aqc +aqc +aqc +awm +axD +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +aJs +aJq +aMd +aNz +aOE +aPS +aRo +aSA +aTX +aVm +aWU +aYy +aZR +aZR +aZR +aZR +aZR +bfw +bgN +bgN +bgN +bjy +bmw +bnW +bpi +bqG +bse +bij +buR +bwo +bxJ +bwb +aJq +bBr +bCv +bCv +bCv +bCv +bCv +bJq +bKw +bLH +bRq +bNO +bOQ +bQf +bRq +bRq +bTK +bUE +bUE +bWM +bXJ +bYH +bYH +bYH +bYH +bVg +bXn +bYG +cfb +cfE +cgM +cik +cjg +cjU +ckL +clM +cfz +cgR +ccw +cii +cpB +cqi +cAP +cqG +crv +cqY +cAl +aoV +aoV +apQ +apQ +apQ +apQ +apQ +aoV +aoV +aaH +cAl +aoV +cig +ctv +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +abY +aaa +aaZ +abQ +ack +acN +adk +aet +agq +agt +agV +ahz +aih +aiN +ajc +ajI +akp +akV +alB +amn +amV +anw +anz +aoz +aod +aqf +ahT +ahT +ahT +ahT +ahT +awn +axF +anF +anF +anF +anF +anF +anF +anF +aoa +aJu +aKF +aMf +aNB +aOE +aPW +aRr +aSD +ceh +aVp +aWX +aYB +aZU +aZR +aZR +bbm +beh +bfx +bij +bij +bij +bgR +bij +bij +bij +bij +bsg +aaf +aaf +aaf +aJn +aJq +aJq +bBu +bCv +bAT +bDL +bDq +bCv +bJs +bKy +bLK +bLK +bLK +bOT +bQi +bRs +bSC +bLK +bUG +bVO +bWO +bXK +bYH +bZz +caw +bYH +bVo +bXq +bZe +cfb +cfH +cgO +cim +cgO +ceo +ceq +cfa +cmQ +cgR +csF +ccw +cpy +ccw +ccw +cqY +cqY +cqY +cAl +aoV +aoV +aoV +csJ +aoV +apQ +aoV +aoV +aoV +cAu +cAw +apQ +cig +ctv +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +abY +aaa +aaZ +abN +ack +acF +acF +aes +afa +ags +ags +ahD +aig +aiM +ajc +ajI +akp +akQ +alA +amm +amU +anw +anT +aoA +apn +aqe +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +arf +anF +ahn +aJn +aJn +aJq +aJq +aOE +aPS +aRq +aSC +aUa +aVo +aWW +aYA +aYz +bbn +bcg +aZU +beg +aYB +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aJn +aJq +aJq +bBt +bCv +bDH +bFf +bGB +bCv +bJs +bKy +bLJ +bLJ +bNP +bOS +bQh +bRr +bSB +bTL +bUF +bVN +bWN +bLK +bYJ +bRi +bZy +cbu +bVm +bXp +bYO +cfc +cgO +ccj +cBM +cdU +ceo +ceq +clQ +cmQ +cgR +cgN +cil +cpD +cqk +cqB +cqU +cqY +cqY +cAl +csA +aoV +aoV +aoV +aoV +csA +aoV +aoV +csA +aaH +cAl +apQ +cig +ctR +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaT +aaf +aaZ +aci +acm +adg +adg +aeu +alt +agu +agX +ahB +aij +agn +aje +ajJ +akr +akX +alC +alC +amX +anz +anz +aoB +aod +aqe +arf +aqa +atf +arf +aqa +atf +arf +aqa +atf +arf +aqa +atf +arf +anF +ahn +aaa +aJn +aJq +aJq +aOE +aPX +aRs +aSE +aUc +aVm +aWY +aYC +aYA +bbp +bbp +bbp +bbp +bfz +aZV +aZV +aZV +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aJn +aJq +aJq +aXf +bCv +bDK +bFi +bGE +bCv +bJs +bKy +bLM +bLM +bNQ +bOV +bQk +bRt +bSD +bTM +bUH +bVQ +bWN +bXM +bYL +cew +bTh +cdt +bVq +bXI +bZg +bZD +cbq +ccl +cdm +cio +cjY +ckP +ckH +cmR +cgR +cgR +cgR +cpD +cql +cqB +cqU +cqY +csP +cAl +aaH +cAs +aaH +aaH +cAs +aaH +aaH +cAs +aaH +aaH +cAl +apQ +cig +ctv +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaa +adR +abo +aaZ +aaZ +aaZ +acT +adl +aaZ +aaZ +agn +agW +ahE +aii +agn +ajd +ajI +ahY +akW +aiG +amo +amW +anz +anz +aoz +aod +aqe +arf +apY +ate +arf +apY +ath +arf +apY +ath +arf +apY +ate +arf +anF +ahn +aaa +aJn +aLY +aLY +aOG +aPR +aPR +aPR +aUb +aVq +aWM +aYr +aZV +bbo +bch +bdi +bei +bfy +bgS +bik +aZV +aZV +bmx +bmx +bmx +bqH +bsh +bsh +bsh +bsh +bqH +aJq +aJq +aXf +bCv +bDJ +bCt +bGD +bCv +bJs +bKy +bLL +bLL +bNQ +bOU +bQj +bOd +bOd +bRx +bTP +bVP +bWP +bXL +bYK +bRj +bTg +bUm +bVp +bXH +bZf +bZC +cbp +cck +cin +cjj +cjX +ckO +clP +cmQ +cny +cgR +cip +cnx +cql +cqB +cqU +cqY +aaH +cAn +cAo +cAr +cAo +cAo +cAr +cAo +cAo +cAr +cAo +cAo +cAx +apQ +cig +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +abp +abP +aco +acO +abl +abO +abO +afc +afQ +agw +agY +ahA +ahZ +adR +aiQ +ajI +akt +akQ +agj +agj +aiX +anB +anz +aoD +aod +aqe +arf +aqn +ath +arf +auw +ath +arf +ayV +ath +arf +aCd +ath +arf +anF +ahn +aJw +aJw +aMh +aJq +aOE +aJn +aaa +aPR +aUe +aVs +aXa +aYD +aZX +baf +bdk +bdk +bek +bfB +bgU +bdk +bjF +blc +bmz +bnY +bpk +bqJ +bsj +btI +btd +bwr +bqH +aMm +aJq +bBv +cBy +bDM +bCw +bDr +bCy +bGP +bHn +bLN +bLN +bNS +bOX +bQm +bRv +bOd +bTN +bTP +bRA +bWQ +bWQ +bYN +bRm +bTj +caA +cer +ccs +bZu +cfb +cfb +cgS +ciq +cfb +cfb +ckR +clR +cmQ +cgR +cgP +cir +cen +cqc +cqC +crc +ccw +aoV +aoV +aoV +aoV +cBR +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +crU +ccw +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +abo +abO +abO +abO +abO +abO +abO +afb +abo +agv +afU +ahG +aik +cBV +ajf +ajK +aks +akY +alx +amp +aiX +anA +anz +aoC +aod +aqe +arf +asd +atg +arf +asd +awo +arf +asd +aAb +arf +asd +aDK +arf +aoa +ahn +aJv +aKG +aMg +bHt +aOE +aJn +aaa +aPR +aUd +aVr +aWZ +aYq +aZW +aZG +bej +bej +bdj +bfA +bgT +bil +bej +blb +bmy +bnX +bpj +bqI +bsi +btH +btc +bwq +bqH +aJq +aJq +aXf +bCv +bAU +cAL +bFg +bFs +bJt +bKy +bLK +bMK +bNR +bOW +bQl +bRu +bSE +bRx +bUI +bVR +bWQ +bOO +bQe +bRk +bTi +caA +bVr +bXN +bZt +bZE +cbs +ccm +cdn +cej +cep +ces +clN +cfA +ckF +ckF +ckF +coc +cqa +ccw +ccw +ccw +czF +crU +csd +crU +crU +crU +crU +crU +crU +crU +csd +crU +ctD +ccw +ccw +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +abp +abO +acq +acq +acq +acq +aew +afe +afS +agy +aha +ahC +aia +aiP +aiR +ajB +akv +ala +akz +alf +aiX +anA +anz +aoF +apo +aqh +arh +asg +atj +aul +auR +atj +aul +azc +atj +aAX +azc +atj +aFe +aul +aHT +aJy +aJy +aMj +aJq +aOE +aJn +aaa +aPR +aPR +aPR +aXc +aPR +aZV +baq +baQ +baQ +bcQ +bfC +bgV +bim +bjG +aZV +bmB +bnZ +bpl +bqH +bsl +btK +buW +bwt +bqH +aLY +aLY +bBx +bCv +bDL +bFk +bDs +bCv +bJs +bHo +bLK +bMK +bMK +bOY +bQn +bRx +bMK +bMK +bUJ +bVS +bWQ +bXP +cBI +bRS +bTH +caA +bWh +cdt +bZA +cfh +cfM +cco +cdp +cel +cfM +ckT +cgU +cfC +cnA +cnA +cis +ciV +ckH +cqA +cre +cqA +crM +crV +csf +crU +csv +csx +csK +csx +css +crU +csf +crU +crU +ccw +ctv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +abo +abO +acp +acP +acP +acP +aev +afd +afR +agx +agZ +ahI +aim +adR +aiG +ajL +aku +akZ +alE +amq +aiX +anA +anz +aoE +aod +aqg +arg +asf +ati +auk +aux +avt +axL +bbl +azT +auk +auk +aDG +aFd +auk +aHH +aJg +aKo +aLO +aJq +aOE +aJn +aaa +aaa +aPR +aVt +aXb +aYo +aZV +bao +baP +bbZ +bcP +cBo +bbw +bbw +bbw +aZV +bmA +bmx +bmx +bqH +bsk +btJ +buV +bws +bqH +aJq +aJq +byW +bCv +bAV +bCv +bCv +bCv +bJs +bKz +bLK +bML +bNT +bOV +bQj +bRw +bSF +bOd +bTP +bRA +bWQ +bXO +bQq +bRo +bTG +caA +bVK +bYb +bZw +cap +ctR +ccn +cdo +cek +csF +cet +cfd +cfB +cfI +cgQ +cjS +cjN +cqm +cig +crd +ccw +crL +crT +cse +crT +csu +ccw +ccw +ccw +cst +crT +ctn +ctv +ctv +ccw +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +abp +abR +abP +abP +abP +abP +abp +abp +abp +agA +afU +ahF +aip +adR +aiX +ajN +akx +aiX +aiX +aiX +aiX +anC +anU +anC +aod +aqe +arf +arf +arf +arf +auU +avG +awr +awr +azV +aAh +aAh +aFg +aFh +aAh +aAh +aAh +aAh +aLR +aJq +aOE +aJn +aaa +aaa +aTQ +aVd +aXe +aYp +aZV +bbv +bcm +bcm +bem +bfD +bgW +bfD +bjI +aZV +bmC +boa +bpm +bqH +bsn +btL +buY +buY +bqH +aJq +aJq +aXf +bCv +bDP +bCv +bAw +bHV +bJw +bKC +bLK +bMN +bNV +bOV +bQo +bRz +bSH +bOd +bTP +bRA +bWQ +bWQ +bWQ +bWQ +caD +bWQ +ccw +ccw +cey +ccw +ccw +ccw +ccw +ccw +ccw +ccw +ccw +ccw +ccw +ccw +cjS +cjN +cjh +cig +ccw +ccw +ccw +ccw +ccw +ccw +ccw +ccw +csF +ccw +ccw +ccw +ccw +ccw +ccw +cjZ +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +abq +abq +abq +abr +abr +abq +abq +aff +afT +agz +ahb +ahF +clI +abp +ajh +ajM +akw +alb +alG +amr +amY +amY +ajp +aoG +aod +aqe +arf +aqo +asp +arf +auS +avv +awu +awr +aAd +aAh +aCm +aDL +aFf +aGk +aHU +aJz +aAh +aLQ +aJq +aOE +aJn +aaa +aaa +aJw +aVu +aXd +aYE +aZV +bbu +bbw +bbw +bbw +bbw +bbw +bbw +bjH +aZV +bmx +bmx +bmx +bqH +bsm +btL +buX +buX +bqH +aJq +aJq +bBy +bzs +bDO +bFl +bGH +bHU +bJv +bKB +bLK +bMM +bOd +bOV +bQj +bRy +bSG +bOd +bUK +bVT +bWR +bXQ +bOd +bZF +bPc +bOd +ccv +cdw +cex +bOd +cfN +cfN +bLK +apQ +bOh +bOh +bOh +bOh +bOh +ccw +cjS +cjP +ckF +ckF +ckF +cpE +cjR +crW +csg +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +abq +abT +acs +acR +ado +adN +aex +afh +afV +agB +ahd +ahI +clS +abp +ajj +ajP +aky +alc +alI +ams +amZ +amZ +anW +aoH +aod +aqe +arf +asm +blU +atQ +avg +awp +axN +awr +aAg +aAh +aDO +aDQ +aFi +aGl +aBy +aBy +aAh +aMn +aJq +aOE +aJn +aaa +aaa +aJn +aVv +aXg +aYF +aZV +bbw +bcn +bbw +ben +bfE +bgX +bbw +bjJ +bld +bmD +bmD +bmD +bqK +bso +btN +buZ +buZ +bqH +byN +aJq +bBA +bCz +bDQ +bFn +bGJ +bHX +bJy +bKE +bLP +bMP +bIG +bJB +bKV +bRB +bSI +bSI +bUM +bVV +bWS +bSI +bSI +bZG +caE +cbA +ccy +bOd +bOd +bQu +cfO +cgW +cit +cph +ckb +ckV +clU +clU +bOh +ccw +coZ +cgU +cgU +cgU +crw +cjO +ccw +crX +cfK +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +abr +abS +acr +acQ +adn +adM +abq +afg +afU +afU +ahc +ahH +aiq +abp +aji +ajO +akw +ajn +alH +amr +amY +amY +anV +ajo +aod +aqe +arf +ari +asu +aun +auW +avR +axM +awu +aAf +aAh +aCn +aDM +aGx +aAh +aAh +aBy +aAh +aMm +aJq +aOE +aJn +aJn +aJn +aJn +aJs +aXf +aYk +aZV +aZV +aZV +aZV +aZV +aZV +aZV +aZV +aZV +aZV +bmx +bmx +bmx +bqH +bqH +btM +bqH +bqH +bqH +aJq +bHt +bBz +bzs +bzs +bFm +bGI +bHW +cBD +bKD +bLO +bMO +bIF +bOZ +bQp +bRA +bOd +bTO +bUL +bVU +bMK +bXR +bYQ +bXR +bMK +cbz +ccx +cbA +cbA +cfi +bRH +cgV +bMQ +apQ +bQA +ckU +clT +cmU +bOh +ccw +cpa +cjc +cqo +ccw +cjk +cjm +ccw +ccw +cig +aag +aag +aag +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +abr +abV +acu +acS +adp +adP +aey +afj +afX +agC +ahf +ahK +ait +abp +ajl +ajR +akw +ald +alJ +amt +ajp +ajp +anY +ajo +apq +aqe +arf +arf +arf +arf +avm +aws +axP +azb +aAi +aAh +aCn +aDM +aGx +aGm +aHV +aBy +aAh +aJq +aJq +aJq +aJr +aJr +aJr +aJr +aJr +aXh +aYG +aZY +aYG +aYG +bdn +bep +aYG +aYG +aYG +aYG +ble +bmE +bmE +bpn +bqL +bsp +btO +bva +bwu +bwu +bwu +bwu +bBB +aJv +bzs +bFp +bGJ +bHZ +bJA +bKG +bLK +bMR +bIH +bJF +bQr +bRA +bOd +bTP +bOd +bVX +bMK +bMK +bYR +bMK +bMK +cbC +bRA +bTO +cez +cez +cfQ +cgY +ciu +bVu +ckb +ckW +clU +clU +bOh +ccw +ccw +cpI +ccw +ccw +cjl +cjQ +cjV +cig +aaf +aaf +aaf +aaf +aag +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aaf +aaf +aaf +aaf +aaf +abr +abU +act +acu +acu +ato +abq +afi +afW +afW +ahe +ahJ +ais +abp +ajk +ajQ +akw +ajn +alH +amr +amY +amY +anX +ajo +app +aqi +arf +ask +atm +arf +avl +awq +axO +aza +aAh +aAh +aAh +aDS +aGx +aAh +aAh +aDN +aAh +aMo +aNC +aJq +aJq +aJq +aJq +aJq +aJq +aJq +aJq +aLY +aJq +bco +aJq +beo +aJq +aJq +aJq +aJq +aJq +aJq +aJq +aJq +aLY +aJq +bAk +aJq +aJq +aJq +aJq +bAj +aJq +aKG +bzs +bFo +bDu +bFt +bGQ +bHp +bLK +bMQ +bNY +bPa +bMQ +bRC +bMQ +bTP +bUN +bVW +bMK +bXS +bXS +bXS +bMK +cbB +bRA +bTP +bOd +bOd +cfP +cgX +bMQ +apQ +bOh +bOh +bOh +bOh +bOh +cig +cpb +ciZ +cqp +cig +cjT +cgR +crP +cig +aaa +aaa +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +abq +abW +abk +acj +acn +adh +adm +afk +afZ +agE +ahh +ahM +aiv +abp +aiY +ajE +ajH +akn +ale +alD +ana +ana +amu +ajo +aps +aqk +arf +asm +aHw +aup +avn +awv +axX +aze +aAh +aBz +aBz +aDU +aGx +aGn +aHW +aBy +aAh +aJq +aJq +aJq +aJq +aRt +aJq +aJq +aJq +aJq +aJq +aLY +aJq +bcp +aJq +beq +aJq +bgY +aJq +aJq +aJq +bAi +bmS +bmS +bpC +bqN +aNr +aJq +aJq +bxL +byX +aJq +aJq +bCA +bzs +bCC +bDA +bFx +bGW +bKI +bLQ +bMT +bOb +bPd +cBF +bRD +bSK +bTR +bUP +bVZ +bWT +bWa +bYS +bZH +caF +bQt +cBJ +cdy +bOd +bOd +cfR +cha +civ +cph +ckb +ckY +clW +clW +bOh +cig +cig +cpI +cig +cig +crh +crA +crR +crY +csi +csL +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abq +abq +abq +abq +abq +abq +abq +afg +afY +afY +ahg +ahL +aiu +abp +ajm +ajS +ajn +ajT +akA +amr +amY +amY +anV +ajo +apr +aqj +arf +ark +asL +aun +avu +awt +axV +azd +azX +aAZ +aCe +aDT +aGx +aAh +aAh +aBy +aAh +aCr +aCr +aCr +aJC +bYP +aOK +aJC +aOK +aJC +aOK +aJC +aJC +aHP +aHP +aHP +bfF +bfF +bfF +bfF +bfF +bfF +bfF +bfF +bfF +bqM +brV +bof +bwv +bvj +bvj +bvj +bvj +bvj +bvj +bCB +bCP +bvj +bvd +bKH +bLK +bMS +bOa +bPc +bQs +bMZ +bSJ +bTQ +bUO +bVY +bOd +bOd +bOd +bOd +bOd +cbD +bTO +cdx +bOd +bOd +cfP +cgZ +bMQ +apQ +bQA +ckX +clV +cmV +bOh +cig +cpc +cpJ +cqq +cig +cqY +cqY +cqY +cig +csh +csl +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +abo +aeB +afm +agb +agG +ahi +ahN +aix +abp +ajp +ajU +ajn +ajn +ajn +amr +ajp +ajp +ajp +ajo +apt +aqm +arj +arj +arj +arj +avx +awz +axR +avx +aAh +aBA +aBA +aDP +aBx +aGp +aHX +aBy +aAh +aMq +aMr +aOH +aPZ +aRu +aQc +aUf +aQb +aXi +aQc +baa +aJC +bcq +bcq +bcq +bfF +bha +bio +bgF +blf +bmF +bob +bnB +bfF +bqR +brX +bof +bwx +bvj +bwB +bxa +byZ +bzI +bAX +bCF +bDB +bFB +bvd +bKJ +bLR +bMV +bOd +bMZ +bQv +bRF +bSM +bTS +bUQ +bWa +bUO +bVZ +bVZ +bZI +caH +cbF +ccz +cdA +cez +bOe +cfQ +chb +ciu +bVu +ckb +ckZ +clW +clW +bOh +cig +cpd +czM +cpd +cig +aaa +aaa +aaa +aaf +aaf +cso +aaf +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +abo +aeA +afl +aga +abp +ahj +abp +cAN +abp +ajo +ajo +ajo +ajo +ajo +ajo +ajo +ajo +aoa +ajo +apt +aql +apv +arl +asM +atV +avw +awy +axQ +azj +arj +aAh +aAh +aAh +aAh +aAh +aAh +aAh +aAh +aMp +aMr +aOH +aPY +aQc +aQc +aQc +aQc +aQc +aQc +aZZ +aJC +aYV +aYV +aYV +bfF +bgZ +bin +bin +bjK +bkK +bkK +bkK +bpD +bqO +bLX +btf +bui +bvi +bww +bwZ +byY +bzH +bAW +bCE +bFv +bFz +bvd +bKH +bLK +bMU +bOc +bPe +bQu +bRE +bSL +bPe +bOd +bOd +bOd +bXT +bXT +bXT +caG +cbE +bTU +cdz +cez +bUL +cfS +bOd +bMQ +apQ +bOh +bOh +bOh +bOh +bOh +ccw +cpd +czL +cpd +ccw +aaa +aaa +aaa +aaf +aaa +csn +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acw +abp +abp +adR +abp +afo +abp +adR +ahl +ahO +aic +ahT +ahT +ahT +ahT +ahT +ahT +ahT +alL +ahT +anb +ahT +anZ +apu +ahn +asb +asV +aus +aus +awA +axT +azl +aAl +arj +aCq +aDR +aFl +aGD +aHZ +aCr +aKJ +aMr +aMr +aOH +aQb +aRw +aQc +aUg +aQb +aRv +aQc +bac +aJC +aYV +aYV +aYV +bfF +bhc +bip +bgP +bjL +bkL +bmT +bnD +bpM +bqT +bFD +bJG +bJG +bvl +bwE +bxc +bzb +bzK +bBb +cpG +bDC +bId +bvd +bKH +bLK +bMX +bOd +bPg +bQx +bRH +bSO +bTU +bUS +bUS +bUS +bXU +bUS +bUS +bUS +bXU +bRF +bMW +cez +cez +cfQ +chd +ciw +cpP +ckc +clb +clY +clZ +bOh +aaf +cpe +cpM +cqr +aaf +aaa +aaa +aaa +aaf +aaa +csp +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aag +acU +adr +acU +aeC +afn +agc +abp +ahk +aoJ +aib +aif +aif +aif +aif +aif +aif +aif +alK +alM +bkV +anc +anD +aoI +apX +arn +asN +aur +avy +avy +axS +azk +aAk +arj +aCf +aDY +aFj +aGr +aHI +aJk +aMr +aMr +aNt +aOH +aQa +aRv +aQc +aUg +aQb +aRv +aQc +bab +aJC +aYV +aYV +ber +bfF +bhb +bip +bjO +bip +bmG +bip +bnC +bpF +bqS +brY +bwz +bwy +bvj +bza +bxb +bvh +bCD +bAY +bCH +bDR +bIc +bvd +bKH +bLK +bMW +bOe +bPf +bQw +bRG +bSN +bTT +bUR +bWb +bUR +bTT +bUR +bZJ +bUR +bTT +bUR +cdB +bUR +bUR +cfT +chc +bMQ +apQ +bQA +cla +cBP +cmW +bOh +aaf +aaa +czN +aaa +aaf +aaa +aaa +aaa +aaf +aaa +csn +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aag +aag +aag +aaa +aaa +aag +abp +abp +abp +abp +afo +abp +abp +ahn +ahn +aiA +aiA +aiA +ahn +aiA +aiA +aiA +ahn +and +anF +aod +ahn +apx +ahn +arj +asr +asN +aut +avz +aXF +axU +azn +aAn +arj +aCh +aEc +aFk +aGw +aHK +aCr +aKr +aMr +bHF +aOH +aQb +aRv +aSo +aUg +aVx +aRw +aQc +aQc +bbx +aYV +aYV +aYV +bfF +bhd +bis +bjR +bis +bmI +bod +bpt +bfF +bqV +bEe +bBL +bwA +bvj +bAl +bAl +bvh +bzS +bBc +bCJ +buk +bFC +bvd +bKH +bLK +bMZ +bOg +bPi +bQz +bRJ +bSO +bTV +bUT +bWc +bWU +bXV +bYT +bZK +bOd +cbG +ccA +cdC +ceB +cez +cez +chf +cix +cpP +ckd +clc +clZ +clZ +bOh +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaf +cso +aaf +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaf +aaf +aaf +aaf +abp +aeD +afp +agd +abp +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaf +ahn +ahn +anE +aod +aoK +apw +aqp +arj +asq +asN +aut +avz +avz +axU +azm +aAm +arj +aCr +aEb +aCr +aGv +aCr +aCr +aKq +aLS +aNF +aOH +aQb +aRv +aSH +aUg +aVw +aRv +aQc +aQc +aOK +aYV +aYV +bes +bfF +bfF +bir +bjQ +blh +bfF +bfF +bfF +bfF +bqU +bsq +bvj +bvj +bvj +bvj +bvj +bvj +bvj +bvd +bFu +bvj +bvj +bvd +bKH +bLK +bMY +bOf +bPh +bQy +bRI +bSP +bPh +bQy +bRI +bQy +bPh +bQy +bRI +bQy +bPh +bQy +bRI +ceA +bLK +bLK +che +bLK +apQ +bOh +bOh +bOh +bOh +bOh +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +csn +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +adR +aeE +afr +aeE +adR +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaf +ahn +anG +aoe +aoL +apy +aqq +arj +ast +asN +auv +avA +avA +axW +azo +aAp +aBC +aCt +aEA +aCt +aGz +aIb +aCr +aKN +aMv +aNH +aOJ +aQc +aQc +aSG +clX +aQc +aQc +aQc +aQc +bbx +aYV +aYV +bet +bfH +bhf +bhh +bhh +bhh +bmJ +bof +bpu +bqP +bsy +bEe +bvh +bwC +bxN +bze +bAp +bvh +bCG +bBd +bFw +bDD +bFJ +bvd +bKH +bzs +bRK +apQ +bRK +apQ +bVv +apQ +bRK +apQ +bVv +apQ +bRK +apQ +bVv +apQ +bRK +apQ +bVv +apQ +apQ +bLK +chg +bLK +apQ +aoV +aoV +apQ +aoV +aoV +apQ +aoV +aoV +aoV +apQ +aoV +aaa +aaa +aaf +aaa +csp +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeE +afq +aeE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahn +anE +ahn +ahn +ahn +ahn +arj +ass +asX +auu +att +att +att +azf +aAo +aBB +aBB +aBB +aBB +aGy +aIa +aBB +aKM +aMu +aNG +aKM +aKM +aKM +aSp +aQc +aQc +aQc +aQc +bad +bby +aYV +aYV +bet +bfG +bhe +bit +bjS +bli +bli +boe +bli +bpN +bqX +bEe +btg +bDR +bDR +bDR +bDR +bzc +bDR +bDZ +bCK +bFy +bFF +bvd +bKH +bzs +bNa +bOh +bPj +bQA +bPj +bOh +bPj +bQA +bPj +bOh +bPj +bQA +bPj +bOh +bPj +bQA +bPj +bOh +apQ +bLK +che +bLK +aoV +aoV +aoV +apQ +aoV +apQ +apQ +aoV +aoV +aoV +apQ +aoV +aaa +aaa +aaf +aaa +csn +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeF +afs +age +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aag +aag +aaa +aaa +aaf +arj +arj +asZ +aua +avB +awB +axY +azh +arj +arj +aaf +aaa +alP +aGI +aId +aJD +aKP +aMx +aNJ +aOL +aQe +aQe +aQe +aMx +aQe +aQe +aXO +aZb +aJC +aYV +aYV +bet +bfG +bhe +bhh +bjU +blk +blk +boh +biu +bpO +bqY +bss +btg +buk +bvm +bDT +buk +bvh +bzU +bBe +bCS +bDE +bFK +bvd +bKH +bzs +bNa +bOh +bPl +bQB +bRL +bOh +bTX +bUV +bWd +bOh +bXX +bYV +bZL +bOh +cbI +ccC +cdD +bOh +apQ +aoV +aoV +apQ +aoV +aoV +aoV +apQ +apQ +apQ +aoV +aoV +aoV +aoV +aoV +aoV +aaa +aaa +aaf +aaf +cso +aaf +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqr +arm +arm +asY +atZ +auB +auB +atZ +azg +azp +azp +aCu +aaf +alP +aGH +aIc +aJC +aKO +aMw +aNI +aOK +aQd +aRx +aQd +aSY +aVy +aVy +aPY +bae +aJC +bcr +aYV +bet +bfG +bhe +bhh +bjV +blj +bmK +bog +bog +bhh +bsx +bsr +bvh +bwD +bDR +bDR +bAq +bvj +bCQ +bDW +bCP +bvj +bvj +bJC +bKH +bzs +bNa +bOh +bPk +bPm +bPm +bOh +bTW +bUU +bTW +bOh +bXW +bYU +bXW +bOh +cbH +ccB +cbH +bOh +apQ +aoV +aoV +apQ +aoV +aoV +aoV +apQ +apQ +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aaa +aaa +aaf +aaa +csn +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqs +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aCv +aaa +alP +aGK +aIe +aJC +aJC +aJC +aJC +aJC +aQg +aPY +aSq +aQc +aQc +aXj +aYI +aQc +aJC +aYV +bdo +beu +bvk +biu +biu +bjT +blm +bmL +boi +bpw +bhh +bsx +btX +bvj +bwG +bxR +bxR +bvj +bvj +bzW +bDZ +bCT +bGR +bIj +bJC +bKH +bzs +bNa +bOh +bPm +bQC +bPm +bOh +bTW +bUW +bTW +bOh +bXY +bYW +bXW +bOh +cbH +ccD +cbH +bOh +apQ +apQ +apQ +apQ +apQ +aoV +aoV +apQ +aoV +aoV +aoV +aoV +aoV +csz +aoV +aoV +aaa +aaa +aaf +aaa +csp +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqs +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aCv +aaf +alP +aGJ +aIe +aJE +aKQ +aLU +aNu +aJC +aPw +aQc +aQc +aSZ +aQc +aVy +czP +bag +aJC +aYV +aYV +bet +bfJ +bhh +bhh +bgQ +bll +bhh +bhh +bpv +bhh +bsx +btV +bvh +bwF +bxQ +bxQ +bAr +bvj +bzV +bDZ +bzf +bDR +bIi +bJC +bKH +bzs +bNa +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +bOh +apQ +apQ +ciC +bVu +bVu +bVu +bVu +bVu +caJ +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aaa +aaa +aaf +aaa +csn +aaa +aaf +aag +aaa +aaa +aaa +aaa +aaf +aaf +ctZ +ctZ +ctZ +ctZ +ctZ +aaf +aaa +aaf +cvF +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cAU +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqt +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aCv +aaa +alP +aGA +aHS +aJx +aJx +aMi +aNE +aOO +aQi +aRz +aSF +aQc +aQc +aXl +aQc +bai +aJC +aYV +aYV +bet +bfH +bhh +bhh +bhg +bln +bmM +boj +bof +bhh +bsx +btV +bvj +bwI +bxT +bxQ +bAt +bvj +bCM +bDZ +bDR +bDR +bIl +bJC +bKH +bzs +bUr +bVu +bVu +bVu +bVu +bVu +bVu +bVu +bVu +bVu +bVu +bVu +bVu +caJ +apQ +apQ +apQ +apQ +apQ +cfj +cfU +cfj +cfj +ckf +cfj +cfj +bUr +bVu +bVu +bVu +bVu +bVu +bVu +bVu +csw +csw +csw +csw +csM +csw +csw +ctd +csw +csw +csw +csw +ctO +ctZ +ctZ +cuo +cuA +cuM +ctZ +cvk +cvk +cvk +cvk +aaf +aaf +aaf +aaf +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cva +cva +cva +cva +cva +cva +cva +cva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aqs +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aCv +aaf +alP +aGL +aHM +aJm +aKz +cAA +aND +aJC +aPP +aRg +aQc +aTa +aQc +aXk +aQc +bah +aJC +aYV +aYV +bev +bfK +bhi +bhi +bhi +bfK +bfK +bfK +bof +bhh +bsx +btV +bvh +bwH +bxS +bzh +bAs +bvj +bCL +bxO +bDR +bDR +bIk +bJC +bKH +bzs +bzs +bzs +bPn +bPn +bPn +bzs +bzs +bPn +bPn +bPn +bzs +bzs +bPn +caI +bPn +bzs +bzs +bzs +cfj +cfj +cjp +chh +ciy +cke +clg +cfj +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aaa +aaa +aaf +aaa +csn +aag +aag +aag +aag +aaa +aaa +aaa +ctN +ctY +cuh +cun +cuz +cuL +cuY +cvj +cvs +cvD +cvk +cvk +cvk +cvk +cvk +cvk +cvX +cvX +cvX +cvX +cwq +cwq +cva +cva +cva +cva +cva +cva +cva +cva +cva +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqs +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aCv +aaa +alP +aGL +aIe +aJC +aKS +aMC +aJC +aJC +aJI +aJI +aSI +aJI +aVA +aJI +aYK +aJI +aJI +bcs +aYV +aYV +bfK +bhk +bix +bjX +blp +bmO +bhi +bpy +bwz +brg +btZ +bvj +bwI +bxV +bzj +bAv +bvj +bCO +bDR +bDR +bDR +bIn +bJC +bKL +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bUY +bWe +bWe +bWe +bWe +bWe +cdE +bAw +bzs +bAw +caK +cfj +ciB +ckh +chj +ciA +cjr +clh +cfj +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aaa +aaa +aaf +aaa +csn +csD +cta +csD +cua +aaa +aaa +aaa +aaf +ctZ +cui +cuq +cuC +cuO +cuz +cvm +cvt +cvt +cvt +cvL +cvQ +cvX +cvX +cvX +cvX +cva +cva +cva +cva +cva +cva +cva +cva +cvx +cva +cva +cva +cva +cva +cva +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqu +arm +arm +arm +auy +auB +auB +axZ +azp +azp +azp +aCw +aaf +alP +aGL +aIg +aJH +aKR +aMB +aJC +aOP +aJI +aRA +aVz +aVz +aVz +aVz +aYJ +aJI +bbz +aYV +aYV +aYV +bfK +bhj +biw +bhs +bjM +bmN +bok +bpx +bpP +brf +bhh +bvh +bwJ +bxU +bzi +bAu +bvj +bCN +bEa +bFA +bGS +bIm +bJD +bKK +bLS +bNc +bOj +bNc +bNc +bNc +bNc +bTY +bUX +bzs +bWV +bzs +bzs +bZM +cbJ +ceC +cfV +cfW +cfX +chk +chl +ciz +chi +ciz +cjq +ckg +cmb +cpO +cpQ +cpQ +cpQ +cpQ +czJ +apQ +aoV +aaa +aaa +aaf +aaa +csn +csD +csX +ctg +cua +cua +cua +cua +cua +ctZ +ctZ +cup +cuB +cuN +cuZ +cvj +cvj +cvj +cvj +cvj +cvP +cvj +cvj +cvj +cvj +cva +cva +cva +cva +cvp +cwv +cvp +cvr +cvl +cvr +cwv +cvp +cva +cva +cva +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +arj +arj +arj +auA +avD +awC +ayb +arj +alP +alP +aaa +aaa +alP +aGL +aIi +aJI +aJI +aJI +aJI +aJI +aJI +aRC +aSK +aVz +aVz +cAC +aYL +aJI +bbz +aYV +bdq +aYV +bfK +bhl +biy +bjY +bjN +bkO +bmU +bnH +bqQ +bsx +bhh +bvj +bvj +bxR +bxR +bvj +bvj +bCQ +bEd +bof +bof +bof +bJE +bof +bof +bNd +bIJ +bPo +bQE +bRM +bOr +bTZ +bUX +bzs +bAw +bBR +bHZ +bzs +bzs +bzs +ccF +cdG +ceE +cfl +cfZ +cki +cld +cjt +cjr +csq +cmd +cmd +cmd +cmd +cmd +bVw +bVw +bVw +bVw +aaa +aaa +aaf +csD +csO +csD +cta +cti +cua +cua +ctw +ctH +ctQ +cuc +cuj +cuj +cuE +cuQ +cuj +cvk +cvw +cvw +cvG +cvM +cvS +cvZ +cvG +cvw +cvw +cvf +cwh +cwm +cwr +cvp +cwx +cwj +cwu +cAV +cAZ +cvl +cvl +cva +cva +cva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +arj +auz +avC +avC +aya +arj +arA +alP +alP +alP +alP +aGN +aIh +aJI +aKT +aMD +aNM +aOI +aJI +aRy +aSJ +aTM +aVB +aVz +aVz +baj +bbz +aYV +bdp +aYV +bfK +bfK +bfK +bfK +bfK +bfK +bfK +bnF +bqQ +bsx +bhh +bfJ +bhh +bhh +bhh +bhh +bhh +bzX +bBm +bof +bGT +bIo +bof +bIo +bLU +bNd +bII +bOr +bQD +bLY +bMa +bTZ +bUX +bzs +bAw +bXZ +bHZ +bZN +caK +bzs +ccE +cdF +ceD +cfk +cfY +cjr +ckj +cjs +cle +cli +cmc +cmY +cmc +cop +cmd +cmd +cqs +aaa +bVw +aaa +aaa +aaf +csD +csN +csV +ctb +cth +cua +ctr +ctu +ctG +ctP +cub +cuj +cur +cuD +cuP +cvc +cvk +cvu +cvu +cvu +cvu +cvR +cvY +cwb +cvu +cvu +cva +cwg +cwl +cwr +cvl +cww +cwD +cvv +cvv +cAY +cBb +cBd +cva +cva +cva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaf +arj +auB +auB +arj +arj +arj +anf +anf +anf +awD +alP +aGB +aIf +aJA +aKC +aKC +cAB +aON +aQk +aRD +aSM +aVG +aVE +aXm +aVz +bak +bbz +aYV +bdp +aYV +bfL +bhn +biz +biz +biz +bmR +bfL +bol +bqQ +bsx +bst +bfJ +bhh +bhh +bwK +bhh +bhh +bhh +btV +bof +bGV +bIp +bof +bKM +bLW +bNd +bOn +bOr +bOr +bRO +bSQ +bTZ +bUZ +bPv +bPv +bPv +bPv +bPv +caM +cbL +cbL +cdI +ceG +cfj +cgb +chn +ciE +cjv +clj +ckk +cmf +cna +cnC +cor +ciM +cpN +cqt +aaa +bVw +aaa +aaa +aaf +csD +csU +csW +ctc +ctc +cto +ctt +cty +ctJ +ctT +cue +cul +cuu +cuG +cuS +cve +cvo +cvz +cvz +cvI +cvz +cvT +cBS +cwc +cvz +cwd +cwf +cwj +cwo +cwt +cwu +cwA +cAR +cAS +cvv +cBa +cBc +cBe +cva +cva +cva +cBf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +alP +ayf +aBD +aCx +aDV +alP +aGL +aHY +aQj +aQj +aMk +aNK +aOM +aQj +aRB +aSL +aTN +aVD +aVz +cAg +bak +bbz +aYV +bdp +cBm +bfL +bhm +bhm +bhm +cAH +bkP +bmV +boc +bqW +brh +bua +bua +bua +bua +bua +bua +bhh +bhh +btV +bof +bGU +bqQ +bof +bCR +bLV +bNd +bOm +bPp +bQF +bRN +bSS +bUa +bNc +bNc +bOj +bNc +bNc +bZO +caL +cbK +ccG +cdH +ceF +cfj +cga +chm +ciD +cju +clf +csr +cme +cmZ +cme +coq +cmd +cmd +cqs +aaa +bVw +aaa +aaa +aaf +csD +csT +csV +ctb +ctj +ctk +cts +ctx +ctI +ctS +cud +cuk +cus +cuF +cuR +cvd +cvn +cvy +cvy +cvH +cvy +cvy +cvy +cvy +cvy +cvy +cwe +cwi +cwn +cws +cwn +cwz +cwE +cvv +cvv +cvv +cvp +cvl +cva +cva +cva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +alP +aAq +aAq +aCy +aCG +alP +aGL +avI +aJK +aKV +aMl +aMF +aMF +aJI +aRG +aSO +aTO +aVG +aVz +aVz +bak +bbz +aYV +bdp +bdc +bfL +beY +biz +biz +biz +bkR +bfL +boo +bqQ +bhg +bua +bvn +bwL +bxX +bsL +bua +bBJ +bhh +bBn +bof +bDF +bIr +bof +bKN +bHT +bNd +bNd +bNd +bNd +bNd +bSU +bUb +bVa +bWf +bWX +bOP +bNd +bTZ +bUX +bzs +bzs +bzs +bzs +cfj +cfj +cfj +cfj +cjx +cfj +cfj +cmd +cmd +cmd +cos +cmd +czI +bVw +bVw +bVw +aaa +aaa +aaf +csD +csD +csD +csD +cti +ctq +cua +ctA +cuy +ctV +cug +cuj +cuj +cuE +cuU +cuj +cvk +cvw +cvw +cvJ +cvw +cvV +cwa +cvJ +cvw +cvw +cvb +cwk +cwp +cwr +cvp +cwC +cwn +cAT +cAW +cvl +cvl +cvl +cva +cva +cva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aba +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaf +alO +alO +alO +alP +alP +alP +alP +alP +alP +alP +aDW +aFn +aGP +avI +aJI +aJI +aJI +aNO +aOT +aJI +aRF +aSN +aVF +aVF +aVF +aYM +aJI +bbA +aYV +bdr +bdb +bdN +blr +bho +bho +bho +bkQ +bmW +bom +bIq +bri +bsu +bsL +bsL +bvo +bzl +bua +bzd +bhh +btT +bCU +bCR +bqQ +bGX +bCR +bqQ +bRN +bIK +bPq +bLd +bNd +bST +bOr +bOr +bOr +bWW +bYa +bYX +bTZ +caN +cbM +cbM +cdJ +bzs +cfm +cgc +bAw +ciF +cjw +ckl +clk +clk +bAw +bzs +apQ +aaa +apQ +apQ +apQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ctp +cua +ctz +ctK +ctU +cuf +cuf +cuv +cuH +cuT +cvg +cvj +cvj +cvj +cvj +cvj +cvU +cvj +cvj +cvj +cvj +cva +cva +cva +cva +cvp +cwB +cvp +cvr +cvl +cvr +cwB +cvp +cva +cva +cva +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaS +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aag +alO +arp +alO +anf +anf +anf +awD +anf +aoP +alP +aBE +alP +aDX +alP +aGR +avI +aJL +aKX +aJI +aJI +aJI +aJI +aRH +aVz +aVz +aVH +aXn +aYN +aJI +bbz +aYV +aYV +bey +bfL +bhm +biz +biz +biz +bla +bmY +boq +boq +brj +bpE +btk +bum +bvq +bzn +bua +bBL +bhh +bBC +bCV +bDN +bFM +btR +bDN +bIa +bIf +bIL +bOq +bLf +bRP +bSW +bMH +bNi +bOr +bWZ +bYd +bYY +bZP +caO +cbN +ccI +cdL +ceI +cfo +bAw +bAw +bAw +cjz +ceJ +clm +cmg +cnc +cnD +bzs +apQ +apQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cua +ctF +ctM +ctX +cuf +cum +cuw +cuJ +cuW +cvi +cvq +cvC +cvC +cvC +cvN +cvW +cvX +cvX +cvX +cvX +cva +cva +cva +cva +cva +cva +cva +cva +cvA +cva +cva +cva +cva +cva +cva +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +ads +adS +aeG +aaa +ads +adS +aeG +aaa +ads +adS +aeG +aaa +aaS +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aag +aqv +anf +aqv +anf +anf +anf +aEl +anf +alP +alP +alP +alP +alP +alP +aGQ +aIk +aIp +aKW +aMG +aIp +aIp +aJI +aJI +aSP +aUh +aJI +aJI +aJI +aJI +aJI +bcq +bcq +bcq +bfL +bhp +biB +cAE +biB +bkU +bmX +bpE +bpE +bpE +bpE +bti +bul +bvp +bzm +bua +bBK +bwz +bBw +bJG +bDI +bFL +bli +bKO +bHY +bNf +bOp +bPr +bQH +bNd +bSV +bSQ +bNh +bWg +bWY +bYc +bNd +bNd +bzs +bzs +ccH +cdK +ceH +cfn +cgd +ceJ +ccM +cjy +ceJ +cll +ccM +cnb +bHd +ceI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cua +ctE +ctL +ctW +cuf +cum +cuw +cuI +cuV +cvh +cvj +cvB +cvE +cvk +cvk +cvk +cvk +cvk +cvk +cvX +cvX +cvX +cvX +cwq +cwq +cva +cva +cva +cva +cva +cva +cva +cva +cva +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaS +aaf +ads +adT +aeG +aaa +ads +adT +aeG +aaa +ads +adT +aeG +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +alO +alO +alO +anf +auC +alP +anf +anf +alP +arA +blT +alP +atw +alP +aGS +aIm +aIp +aKH +aMI +aIp +aOV +aOX +aOX +aSR +aUi +aVJ +aOX +aYP +bal +bam +aYV +aYV +aYV +bfL +bhq +bhm +bkb +bhm +bla +bmZ +bpH +bra +bsK +bpE +bpE +buq +bvt +bye +bon +bBN +bEi +bEi +bEi +bDU +bFO +bBN +bKR +bMc +bNd +bNd +bNd +bNd +bNd +bSX +bMI +bNk +bNU +bXb +bWi +bYZ +bZR +caQ +bzs +ccK +ccM +ceJ +ceJ +cgf +ceJ +ccM +ccM +ceJ +clo +cmi +cbQ +cnF +cot +csc +csm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cua +cua +cua +cua +cuf +cuf +cux +cuK +cuX +cuf +cvk +cvk +cvk +cvk +aaf +aaf +aaf +aaf +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cva +cva +cva +cva +cva +cva +cva +cva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +ads +adT +aeG +aaf +ads +adT +aeG +aaf +ads +adT +aeG +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alO +aqy +anf +alP +awE +anf +apE +anf +anf +alP +anf +alP +aCE +aIj +aJB +aKD +aMs +aNL +aOQ +aQf +aRE +aSQ +aVI +aVI +aVI +aYO +aRJ +bbB +aYV +aYV +aYV +bfL +bfL +bfL +bfL +bfL +blg +bmZ +bpG +bqZ +brk +bsv +bsv +bun +bvr +bzo +bon +aFa +bCY +bEh +bCW +bDS +bFN +bBN +bKQ +bMb +bNd +bOr +bOt +bOr +bRQ +bOr +bSQ +bNj +bNs +bXa +bYa +bNd +bZQ +caP +cbO +ccJ +cdM +bLS +cfp +cge +cbK +ciG +bLS +ckm +cln +cmh +cnd +cnE +bPn +aoV +aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +cuf +cuf +cuf +cuf +cuf +aaf +aaa +aaf +cvK +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cAX +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +ads +adT +aeG +aaa +ads +adT +aeG +aaa +ads +adT +aeG +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +apC +apC +apC +apC +apC +apC +alP +anf +alP +alP +alP +alP +awD +ayf +aGC +aIl +aIq +aKK +aMy +aIp +aOX +aQm +aRJ +aRJ +aRJ +aVK +aRJ +aRJ +aRJ +bbB +aYV +aYV +aYV +bfO +bfS +biC +bkd +bfS +bKH +bmZ +bpJ +brc +bsL +bug +btl +but +bvw +bzq +bon +bBP +bCZ +bEk +bFG +bCY +bFP +bBN +bKQ +bMb +bNd +bOt +bOr +bOr +bRQ +bOr +bSQ +bWj +bWk +bXc +bYe +bNd +bZS +caR +bzs +ccL +ccM +ceL +ceJ +cgh +ceJ +ceJ +ccM +ceJ +cAe +cmj +cne +bHd +bPn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaf +aaa +ads +adT +aeG +aaa +ads +adT +aeG +aaa +ads +adT +aeG +aaa +aaf +aaa +aaa +aaa +aaa +amw +aof +aof +aof +aof +arq +asv +atv +auD +apC +awF +anf +alP +arA +anf +aCz +asw +aCJ +aGT +aIn +aIp +aKI +aMt +aIp +aOW +aQm +aRJ +aSS +aUj +aRJ +aRJ +aYQ +cBg +bam +aYV +aYV +aYV +aYV +bhr +biC +bkc +bfS +blo +bmZ +bpI +brb +bsL +buf +bvs +bur +bvp +bzp +bon +bBO +bCY +bEj +bCY +bGZ +bFE +bBN +bKS +bMd +bNd +bOs +bOt +bQJ +bRR +bOr +bSQ +bWj +bWj +bWj +bWj +bNd +bzs +bzs +bzs +ccH +bFr +ceK +ceJ +cgg +ccM +ccM +cjA +ceJ +ccM +cdN +bFr +cnG +bzs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaa +aaa +adV +aaa +aaa +aaa +adV +aaa +aaa +aaa +adV +aaa +aaa +aaf +aaa +aaa +amw +amw +amw +aoh +aoN +apA +aof +ars +anf +arx +anf +apC +aoQ +cqM +asw +asw +asw +aCA +anf +aFp +aGW +anf +aIp +aKI +aMA +aIp +aOX +aQm +aRJ +aST +aUk +aRJ +aRJ +aYQ +bam +aYV +aYV +aYV +aYV +beE +bfS +biE +bkf +bfS +bKH +bmZ +bpL +bre +bsN +bre +bvv +bur +bvp +bzr +bon +bBQ +bDa +bEl +bFH +bHb +bIw +bBN +bKT +bMb +bNd +bOt +bPu +bOr +bRQ +bOr +bSQ +bWj +bWk +bXc +bYe +bNd +bZU +caS +cbN +ccN +bHd +bzs +bzs +bKT +bAw +bAw +bFr +ceJ +ccM +ccM +cng +bzs +bzs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaf +abX +acx +acx +adt +adU +adU +adU +adU +adU +adU +adU +adU +adU +adU +adU +adU +alg +alN +amv +ane +amv +aog +aoM +apz +aqw +arr +asw +cpA +auE +apC +awG +auF +alP +alP +alP +alP +alP +aFo +aGV +aIp +aIp +aKL +aMz +aNQ +aOX +aQm +aRJ +aRJ +aRJ +aRJ +aRJ +aYR +ban +aYV +aYV +aYV +bez +bfP +bfS +biD +bke +bfS +bKH +bmZ +bpK +brd +bpK +bpK +bvu +bux +bvy +bon +bon +bBN +bBN +bBN +bBN +bHa +bBN +bBN +bKB +bMb +bNd +bOr +bPt +bOr +bRQ +bSY +bMJ +bNl +bNW +bXd +bPu +bNd +bZT +bMb +bFr +ccM +cdN +bzs +cfq +bKT +bAw +ciH +bHd +bzs +bAw +cmk +cnf +bzs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaa +aaa +adX +aaa +aaa +aaa +adX +aaa +aaa +aaa +adX +aaa +aaa +aaf +aaa +aaa +amw +amw +amw +aoi +aoO +apB +aqx +art +anf +anf +auF +apC +awH +auF +alP +aAr +blT +alP +aaa +aFq +aGX +aIp +aJO +aKU +aME +aNN +aOR +aQh +aRI +aSU +aXo +aXo +aXo +aYO +bap +aYV +aYV +bci +beB +bfS +bfS +bfS +bfS +bfS +bKH +bmZ +bon +bon +bon +bon +bon +buG +bvA +bon +bAw +bzg +bLS +bLS +bLS +cbQ +bLS +bLS +bHB +caU +bNc +bOj +bPw +bNc +bNc +bNc +bNc +bNc +bNc +bNc +bPw +bNc +bLS +caU +cbQ +bhG +bhG +bhG +cbK +cgj +cbK +cbK +chp +bCq +clp +bCq +bCq +bCq +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aba +aaS +acy +aaa +ads +adW +aeG +aaa +ads +adW +aeG +aaa +ads +adW +aeG +aaa +aaf +aaa +aaa +aaa +aaa +amw +aof +aof +aof +aof +anf +aoP +atw +auF +apC +aoP +auF +azr +anf +anf +alP +alP +aFo +aGV +aIp +aJN +aLd +aMN +aNQ +aOZ +aOX +aOX +aOX +aUz +aVM +aOX +aYT +bam +aYV +baR +bcb +bdl +bdO +bPv +bgo +bPv +bPv +blq +bna +bPv +bpQ +bPv +bdO +btm +buy +bvz +bdO +bPv +bna +bPv +bPv +bPv +bDV +bPv +bPv +bHq +bMe +bIg +bIM +bPv +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +caT +cbP +ccO +cdO +cdO +cdO +cnH +czH +czT +czY +bCq +bHE +bHE +clp +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +ads +adW +aeG +aaa +ads +adW +aeG +aaa +ads +adW +aeG +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +apC +aqy +anf +anf +aty +auF +apC +alP +auF +alP +alP +alP +alP +ayf +aFm +aGF +aIq +aIq +aIq +aIq +aIq +aIq +aIq +aIq +aIq +aIq +aIq +aIq +aXS +aIq +aIq +baZ +bck +bdm +bdP +bdP +bdP +bdP +bdP +bdP +bnc +boC +bpV +bdP +bdP +bto +buL +bvB +cbK +bxg +bzk +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bIs +bIN +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bky +bky +bUw +czY +bCq +bLv +bLv +bLv +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +ads +adW +aeG +aaf +ads +adW +aeG +aaf +ads +adW +aeG +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +apC +anf +anf +alP +atx +auF +apC +auD +auF +alP +aAs +anf +alP +aCG +aFr +aGE +aIo +aIo +aIo +aIo +aIo +aIo +aIo +aRK +aIo +aIo +aUx +aVL +aXR +aZc +aZc +baT +bcj +beC +aYV +bfT +biG +bkg +blu +bnb +bop +bor +bpS +bsO +buh +btn +buH +byf +byf +byf +byf +bDb +bEm +bEm +bEm +bDb +bJH +bKW +bMg +bIh +bOx +bPx +bJN +bRT +bEm +bEm +bJN +bRT +bEm +bEm +bJN +bRT +bEm +bEm +bDb +cfr +cho +bDb +aaa +bky +bUw +czY +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaf +ads +adW +aeG +aaa +ads +adW +aeG +aaa +ads +adW +aeG +aaf +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +apC +anf +alP +alP +apE +auG +apC +aoP +auF +apE +anf +anf +alP +aCG +aFt +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aVO +bdp +aYV +aYV +bba +aXq +aYV +aYV +bht +biI +bkh +blw +biI +blw +boE +bpY +bsQ +buh +btx +buU +byf +bzu +bAz +bBT +bDb +bEm +bEm +bEm +bIx +bJJ +bKY +bMi +bNo +bIP +bPA +bJN +bRU +bSZ +bEm +bJN +bRU +bXe +bEm +bJN +bRU +bSZ +bEm +bDb +cgi +chq +ccQ +aaa +bZi +bUw +czY +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +ads +adY +aeG +aaa +ads +adY +aeG +aaa +ads +adY +aeG +aaa +aaS +aaf +aaf +aaf +aaf +aaf +aaf +aaf +apC +anf +anf +asx +anf +auF +alP +alP +auF +alP +alP +alP +aCB +aEB +aFs +bbE +aIr +bav +aLf +aIt +aNS +aPb +aQp +aRN +aIt +aUB +aFu +aVN +bdp +bar +bar +aYV +aXq +aYV +aYV +bfT +biH +bkh +blv +bls +blv +boD +bpY +bsP +buh +btw +buT +byf +bzt +bAy +bBS +bDb +bEm +bEm +cBz +bEm +bJI +bKX +bMh +bIt +bOx +bPz +bJN +bRU +bEm +bEm +bJN +bRU +bEm +bEm +bJN +bRU +bEm +cBz +bDb +cgi +chq +ccQ +aaa +bZi +bUw +czY +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aiS +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apC +alP +alP +alP +anf +auH +avF +awI +ayc +asw +aAu +asw +aCD +aEa +aFv +aGG +aIu +aJQ +bCI +aIt +aIt +aPb +aIt +aRN +aIt +aUB +aFu +aVZ +aXT +aFu +aFu +bcv +aXq +aYV +bfU +bhu +biJ +bhM +bjW +blx +bne +boL +bqb +bsR +buh +buo +bxd +byf +bzw +bAB +bBV +bDb +bEn +bEm +bEm +bEm +bJL +bLa +bMi +bNo +bPy +bPA +bJN +bRW +bTb +bUe +bJN +bWl +bXf +bYg +bJN +bZV +caV +cbS +bDb +cgl +chs +bDb +aaa +bky +bUw +czY +bCq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aba +aaS +aaS +aaf +aaa +aaa +aaf +aaf +aaf +aaf +alO +aqz +aru +alP +anf +anf +avE +anf +anf +awD +aAt +aty +aCC +aDZ +aFu +aFu +aIs +aJP +aLg +aMH +aIt +aYW +aYW +aYW +aYW +aYW +aYW +aVY +aYY +bas +aFu +aYV +cBk +aYV +bfU +bhu +biJ +bhK +bjP +blt +bnd +boG +bqa +bsR +buh +buo +bvb +byh +bzv +bAA +bBU +bDb +bEm +bEm +bEm +bIy +bJK +bKZ +bMi +bIu +bIO +bPB +bLe +bRV +bTa +bUd +bVi +bRV +bTa +bYf +bVi +bRV +bTa +cbR +bDb +cgk +chr +bDb +aaa +bky +cBN +czY +bCq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +alO +anf +anf +asy +anf +anf +alP +alP +anf +alP +alP +alP +aCE +aDZ +aFu +aHc +aIw +aJS +aJS +aMJ +aNP +aOS +aOS +aOS +aOS +aOS +aOS +aWb +aXU +bau +aFu +aYV +aXq +aYV +bfV +bfV +bfV +bkl +blA +blD +bot +bfV +bfV +bfV +bfV +btA +bxd +byf +bzy +bAD +bBX +bDb +bEm +bEm +bEm +bIx +bJM +bLc +bMi +bNo +bOx +bPD +bQM +bMi +bMi +bRZ +bVj +bMi +bMi +bRZ +bZa +bMi +bMi +bRZ +bMi +bMi +chu +ccQ +aaf +bZi +bUw +cAa +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaf +aaf +alO +aqA +anf +alP +atz +anf +alP +awJ +anf +alP +aAv +anf +aCE +aDZ +aFu +aHb +aIv +aJR +aJR +aIt +aIt +aPd +aIt +aRO +aIt +aUC +aVP +aXu +aYW +bat +bbD +aYV +aXq +beE +bfV +bhv +biK +bkk +blz +bly +bos +bpR +bqc +bsS +box +buo +bxd +byf +bzx +bAC +bBW +bDb +bEm +bEm +bEm +bDb +bJH +bLb +bMk +bNn +bIQ +bPC +bQL +cBG +bTc +bUf +bTc +bRX +bTc +bUf +bTc +bRX +bTc +cbT +ccP +ccP +cht +ckn +csk +czQ +czU +czZ +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +alP +alP +alP +alP +alP +anf +anf +alP +anf +anf +apE +anf +anf +aCE +aDZ +aFu +aHd +aIx +aJF +aLh +aIt +aNV +aPd +aIt +aRO +aIt +aIt +aVQ +aXu +aYW +aVQ +aFu +aYV +aXq +bds +bfV +bhx +biM +bkm +blC +blG +bou +bou +biL +cBs +box +buo +bvc +byf +byf +byf +byf +bDb +bDb +bDb +bDb +bDb +bJN +bJN +bMm +bNp +bOx +bMi +bQN +bRZ +bMi +bMi +bVk +bRZ +bMi +bMi +bZb +bRZ +bMi +bMi +cfy +cgn +cjB +ccQ +aaf +bZi +czV +czY +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +alO +apD +aEl +anf +arx +anf +anf +alP +alP +atB +alP +alP +alP +aCF +aDZ +aFw +aFw +aFw +aFw +aFw +aFw +aFw +aPf +aQq +aRP +aIt +aIt +aIt +aWd +aXV +aIt +bbD +aYV +aXq +aYV +bfV +bhw +biL +bhP +blB +blF +bou +bou +biL +bsT +box +btP +bxd +byi +bzz +bAE +bBY +bDc +bEo +bFI +bHe +bIz +bIz +bJN +bMl +bIv +bIR +bPE +bLe +bRY +bTd +bUg +bVi +bWm +bTd +bUg +bVi +bZW +bTd +bUg +bDb +bDb +bDb +bDb +aaa +bky +czV +czY +bCq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +alP +anf +anf +arw +asA +asA +anf +alP +awL +anf +anf +apE +aBF +aCH +aED +aFy +aGO +aIB +aJJ +aKZ +aMW +aFw +aFu +aFu +aFu +aTc +aUD +aVS +aYW +aYW +bax +aFu +aYV +aXq +aYV +bfV +bfV +biO +biL +blB +blF +bou +bpT +bqd +box +box +btS +bxd +byi +bwN +bAG +bCa +bDc +bEo +bIC +bDY +bIB +bIB +bJN +bMo +bNp +bOx +bPH +bJN +bSa +bTe +bUh +bJN +bWn +bXg +bYh +bJN +bZX +caW +cbU +bDb +aaf +aaf +aaa +aaa +bky +czV +czY +bCq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZi +bZi +bZi +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +alO +aoQ +anf +arv +asz +atA +anf +alP +awK +anf +awD +apE +anf +aCk +aEC +aFx +aGM +aIy +aJG +cAz +aMK +aFw +aPg +aQr +aFu +aTb +aIt +aVR +aYW +aYW +aUD +bbD +aYV +aXq +aYV +bfW +bhy +biN +biL +bni +blM +bni +bni +bni +brl +buj +btQ +bve +byj +bwM +bAF +bBZ +bDc +bEp +bCX +bDX +bIA +bIA +bJN +bMn +bNp +bOz +bPG +bJN +bEm +bEm +bRU +bJN +bEm +bEm +bRU +bJN +bEm +bEm +bRU +bDb +aaf +aaa +aaa +aaa +bZi +czV +czY +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZi +btp +cqu +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alP +alP +alP +aqB +arx +anf +anf +anf +alP +awM +ayg +ayg +ayg +ayg +aCl +aEe +aFw +aFw +aFw +aLo +aLb +aFw +aFw +aPi +aQt +aRQ +aIt +aUF +aLg +aYW +aYW +aVQ +aFu +aYV +aXq +aYV +bfX +bhz +biQ +biL +biL +blN +biL +biL +biL +biL +bsw +btU +bxe +bvC +bzD +bxv +bCc +bDc +bEo +bDj +bEc +bIA +bIA +bJN +bMq +bNp +bOx +bPJ +bJN +bEm +bSZ +bRU +bJN +bEm +bXe +bRU +bJN +bEm +bSZ +bRU +bDb +aaf +aaa +aaa +aaa +bZi +czV +czY +bLv +aaf +aaf +aaf +aaf +aaf +bky +bky +bZi +cqu +bZi +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alP +aoP +alP +alP +apE +alP +atB +alP +alP +awx +aye +ayd +aAc +ayd +aCI +aEd +aFw +aHf +aIz +aJM +aLa +aMX +aFw +aPh +aQs +aFu +aTd +aUE +aVT +aYW +aYW +aZd +aFu +aYV +aXq +aYV +bfX +bhy +biP +bko +blE +bnj +bov +bpU +brq +bsW +buj +bvE +bxd +byk +bzC +bAH +bCb +bDc +bEo +bDf +bEb +bIC +bGY +bJN +bMp +bNp +bOx +bPI +bJN +bEm +bEm +bUi +bJN +bEm +bEm +bUi +bJN +bEm +bEm +bUi +bDb +aaf +aaf +aaa +aaa +bZi +czV +czY +bLv +aaa +aaa +aaa +aaf +aaf +bky +cwy +cmn +cmn +bZi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +alP +alP +alP +alP +alP +anf +anf +anf +anf +anf +anf +aty +anf +awx +avI +asA +apE +arx +aCo +aEf +aFw +aGU +aIC +aJU +aLe +aMX +aFw +aCR +aCR +aCR +aCR +aCR +aCR +aWe +aWe +aCR +aCR +bcs +aXq +aYV +bfX +bfV +bfV +bfV +bfV +bfV +box +bpW +brs +box +box +buo +bxd +byk +byk +byk +byk +bDc +bDc +bJR +bEg +bDc +bDc +bLe +bMr +bNr +bIT +bJN +bJN +bJN +bJN +bJN +bJN +bJN +bJN +bDb +bDb +bDb +bDb +bDb +bDb +bky +bky +bky +bky +bky +czX +cAc +bCq +bky +bky +bky +bky +bky +bky +cmn +cmn +cmn +bZi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alO +amx +anf +anf +anf +anf +alP +alP +alP +asB +asB +asB +avo +awx +avH +asB +asB +asB +aCK +aEf +aFw +aHg +aIA +aJT +aLc +aMX +aFw +aPj +aFz +aRR +aTe +aUG +aFz +aRS +aXW +baz +aCR +bcx +aXq +aYV +bfY +bhA +biR +bkq +bjZ +bvx +boz +boM +bzE +bsX +bsz +btW +bxf +bzE +bzE +bzE +bzE +bDd +bEq +bDl +bEf +bFQ +bHc +bHK +bIb +bID +bOA +bPK +bQO +bSb +bOu +bUj +bVl +bWo +bXh +bQZ +bTl +bZY +caX +bTl +bQZ +cdQ +btp +bky +czG +czR +czW +cAb +cko +clq +cmq +ciI +cnJ +cri +bYr +cmn +cBT +cBU +bZi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alP +alP +alP +alP +alP +anf +alP +aqD +arz +asB +atD +auJ +asB +awQ +avK +azt +aAy +asB +aCN +aEf +aFw +aGY +aII +aJW +aMX +aMX +aNW +aPl +aQv +aPl +aTg +aUI +aTg +aRS +aZf +aFz +bbF +aYV +aXq +aYV +bfX +bhB +bgp +bhU +bhU +blX +bow +boO +bhU +bsZ +cdX +ceX +bvg +bvD +bvD +cBx +bzB +bAa +bBE +bDm +bEr +bFR +bHf +bHM +bFR +bIE +bJr +bJO +bWr +bQX +bQX +bUk +bVn +bWq +bXj +bYj +bZc +bTl +bTl +bTl +bQZ +bNB +ceM +ccU +cgo +czS +blO +cAd +bky +bDh +cBL +btp +btp +cvO +bky +bky +bky +bky +bky +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +alP +anf +alP +aqC +ary +asB +atC +auI +auI +awP +avJ +awO +awO +asB +aCM +aEg +aFw +aHi +aHi +aJV +aFw +aFw +aFw +aPk +aQu +aPk +aTf +aUH +aTf +aRS +aZf +baA +bbF +aYV +aXq +aYV +bfZ +bhA +biS +bkr +blH +bnm +boy +bpX +brt +brm +bsA +bvH +bvf +brt +bwO +bxF +bzA +bzZ +bBD +bBD +bBD +bBD +bBD +bHL +bBD +bBD +bJo +bPK +bQX +bWr +bQX +bQX +bWr +bWp +bXi +bYi +bTl +bTl +caY +cbV +bQZ +blQ +brG +cfs +cgm +bns +bky +bky +bky +bky +bky +bky +btp +csy +cko +cAf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +alP +anf +alP +alP +alP +asB +atE +auI +auI +awT +avM +azv +aAA +asB +aCE +aEi +aFw +aHl +aID +aID +aFw +aMM +aFz +aFz +aQw +aRS +aRS +aRS +aRS +aRS +aZf +aRS +bbF +aYV +aXq +aYV +bga +bgc +bgc +bgc +bgc +bgc +boB +boB +boB +btb +buo +bvJ +bvJ +bvJ +bwQ +bxW +bvK +bvK +bEt +bDn +bEz +bFS +bJT +bLh +bMs +bMs +bMs +bPN +bQS +bSf +bWr +bWr +bQX +bWr +bXl +caZ +cba +bTl +cbc +bTl +bQZ +cdR +ceO +bky +cgm +chw +ciK +cjC +ckp +cls +cmr +bky +btp +cmo +bky +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +alP +anf +apE +blT +anf +asB +asB +asB +avL +awR +cAy +azu +aAz +asB +aCO +aEh +aFz +aHk +aFz +aFz +aTe +aML +aFz +aFz +aQw +cdl +aRS +aRS +aRS +aRS +aZf +aRS +bbF +aYV +aXq +aYV +bfX +bhC +biU +bks +blI +bnn +boA +bpZ +boB +bta +buo +bvJ +bCk +byo +aDH +bxP +bCf +bvK +bEs +bGc +bHm +bGc +bEs +bEs +aaf +aaf +aaf +bPN +bQR +bSe +bMf +bNe +bNm +bNX +bTf +bQZ +bTl +bTl +cbb +bTl +bQZ +cdR +ceN +bky +cgp +chv +ciJ +cbf +cbf +clr +bnt +bky +btp +cou +bZi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +alP +aoQ +alP +aqE +arA +asB +atG +auL +avN +axa +auI +azw +aAA +asB +aCQ +aEk +aFB +aHn +aFB +aFB +aFB +aLr +aFB +aPn +aQy +aPn +aTi +aUK +aVU +aWg +aZf +baA +bbF +aYV +aXq +aYV +bfX +bhD +biV +biW +blK +bnp +bng +boQ +brx +bro +buo +bvJ +bxj +byq +bwR +bxY +bCh +bvK +bEv +bFU +bFU +bFU +bJV +bEC +bMu +bMu +bMu +bEC +bQU +bQU +bTl +bQU +bXr +bWr +bOw +bQZ +bQZ +bQZ +cka +bQZ +bQZ +bQZ +bQZ +bQZ +cgr +chx +bky +bky +bky +clt +bnt +bky +btp +bMB +bZi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +alP +alP +alP +alP +alP +asB +atF +auK +auJ +awS +auI +awO +awO +asB +aCP +aEj +aFA +aHm +aEj +aEj +aEj +aEj +aEj +aPm +aQx +aPm +aTh +aUJ +aTh +aXz +aZg +aFz +bbF +aYV +bdv +aYV +bgb +bhC +biU +biW +blJ +bno +bnf +boP +bqf +brn +bsC +bvK +bxi +byp +bzJ +bxY +bCg +bvK +bEu +bFU +bFU +bFU +bJU +bEC +bMt +bNt +bNt +bEC +bQT +bSg +bTk +bSh +bXr +bQX +bOv +bYk +bYk +bZZ +cjW +bZZ +ccR +cdS +ceP +bQZ +cgq +chx +bky +aaa +bky +cgr +cms +bky +btp +bNA +bky +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +asB +atH +auM +avO +awU +ayj +azx +aAB +asB +aCR +aEm +aCR +aHp +aIF +aHp +aIF +aCR +aNY +aCR +aQA +aCR +aTj +aFz +aVV +aXB +aZh +baB +aCR +bcq +bdx +bcq +bgc +bgc +biX +bhV +bka +blZ +bnk +bpo +bqk +brp +bsD +bvK +bxl +bys +bzM +bya +bCj +bvK +bEx +bFU +bFU +bGl +bJX +bEC +bMw +cBE +bOE +bEC +bQV +bSi +bTm +bUn +bXr +bQX +bOv +bYm +bYm +bZZ +ckN +bZZ +ccR +cdS +ceP +bQZ +cgt +chx +bZi +aaa +bZi +clt +bnt +btp +btp +bky +bky +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +asB +asB +asB +asB +asB +asB +asB +asB +asB +aCR +bfb +aCR +aHo +aIE +aKe +aIE +aCR +aNX +aPo +aQz +aCR +aCR +aCR +aCR +aXy +aZe +aCR +aCR +bcy +bdw +beG +bgc +bhE +biW +bkv +blL +biW +bnh +biW +brx +bte +bup +bvK +cBu +byr +bzL +bxZ +bCi +bvK +bEw +bFU +bFU +bGk +bJW +bEC +bMv +bNu +bMv +bEC +bQT +bSh +bTl +bTl +bXr +bNZ +bOy +bZd +bYl +caa +ckM +cbW +ccS +ccS +ceQ +cft +cgs +chy +bZi +aaa +bZi +clt +bns +bky +bky +bky +aaa +aaa +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aba +aaS +aaS +aaS +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +atS +apQ +aoV +aoV +atS +apQ +apQ +apQ +atS +aCR +aEn +aCR +aHq +aHq +aHq +aHq +aCR +aCR +aCR +aCR +aCR +aTl +aUL +aVW +aXD +aZj +baD +bbG +aTk +bdy +beI +bgc +bhF +biW +bib +bki +bma +bnl +bpq +boB +bth +bus +bvK +bxm +byu +bzN +byb +aGs +bvK +bBF +bFU +bEL +bGz +bJZ +bEC +bMx +bNw +bOF +bEC +bQW +bSj +bTn +bUo +bNq +bOk +bOB +bPs +bYo +cab +cbd +cbX +ccT +bSc +bSc +cfu +cgu +chA +bky +aaa +bky +clt +bns +aaf +aaf +aaf +aaf +aaf +aaS +aaa +aaf +aaa +acy +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +atS +aoV +aoV +aoV +atS +aoV +aoV +apQ +atS +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aMZ +aNZ +aPp +aQB +aNa +aTk +aPq +aPq +aXC +aZi +baC +aPq +aPq +bdy +beH +bgc +bgc +bgc +bgc +bgc +bgc +bgc +bpp +bgc +brr +bsE +bvK +bvK +byt +byt +byt +byt +byt +bEy +bFU +bFT +bFU +bJY +bEC +bMv +bNv +bMv +bEC +bPN +bPK +bPN +bPN +bPK +bPN +bPK +bPb +bQG +bPN +bPN +bPN +bQZ +bQZ +bQZ +bQZ +bky +chz +bky +bky +bky +clt +bns +aaa +aaa +aaa +aaa +aaa +aaS +aaa +crj +crB +crS +aaa +crj +crB +crS +aaa +crj +crB +crS +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +atS +aoV +aoV +aoV +aaH +aoV +aoV +apQ +atS +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aMZ +aOb +aPr +aQC +aRU +aQC +aQC +aQC +czO +aZl +baE +bbH +bcA +bdz +beJ +bge +bhH +biY +biY +biY +bmd +bnr +bpr +bgc +btj +buu +bvM +bxo +bqe +bzO +bzO +bzO +bqe +bEB +bFW +bFT +bFU +bFU +bLi +bMz +bNy +bOH +bEs +bQY +bQX +bTo +bUp +bUp +bUp +bXs +bPL +bQI +bPN +bWr +cbZ +bQZ +cmo +bky +bDh +bky +chC +ciL +btp +btp +clv +cmt +aaa +aaa +aaa +aaa +aaa +aba +aaf +crj +crC +crS +aaa +crj +crC +crS +aaa +crj +crC +crS +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +avT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +atS +aoV +aoV +aoV +aaH +aoV +aoV +aoV +atS +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aMZ +aOa +aVX +aTm +aRL +aTm +aTm +aTm +aWh +aZk +aTm +aTm +bcz +aTm +aTm +bgd +bhG +bhG +bhG +blO +bmc +bnq +bgc +bgc +bru +bsF +btY +bxn +bqe +bzO +bzO +bzO +bqe +bEA +bFV +bFT +bGA +bHg +bFU +bMy +bNx +bOG +bEs +bQX +bSk +bQX +bUp +bUp +bUp +bXr +bPF +bWr +bWr +bWr +cbY +bQZ +btp +bky +bky +bky +ccp +cbf +cbf +cbf +clu +cmt +aaa +aaa +aaa +aaa +aaa +aaf +aaa +crj +crC +crS +aaf +crj +crC +crS +aaf +crj +crC +crS +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aoV +aoV +aoV +atS +aoV +aoV +aoV +atS +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aNa +aOd +aOU +aPq +aNa +aPq +aPq +aPq +aOU +aPq +aPq +aPq +bcC +cBl +aPq +bgg +aNa +aaa +bky +blQ +bme +bnx +bqe +brA +brw +buw +bvO +bxq +byv +bzO +bAR +bzO +bqe +bED +bFX +bFT +bGF +bKa +bFU +bMA +bNz +bOI +bEs +bRa +bQX +bTp +bUp +bVs +bUp +bXt +bPM +bZh +bPN +cbe +cbY +bQZ +cAK +ceS +cae +bky +ccq +cdq +cjE +ckr +clw +cmu +aaf +aaf +aaf +aaf +aaf +aaf +aaf +crj +crC +crS +aaa +crj +crC +crS +aaa +crj +crC +crS +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +atS +aoV +aoV +aoV +atS +aoV +aoV +aoV +apQ +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aNa +aOc +aPs +aPq +aNa +aPq +aPs +aPs +aXG +aZm +aPs +aPq +bcB +aPq +aPs +bgf +aNa +aaf +bky +blP +bns +boF +bqe +brz +brv +cBt +bvN +bxp +byv +bzO +bAQ +bCl +bqe +bEC +bEC +bEM +bGC +bEC +bEC +bEC +bEC +bEC +bEC +bQZ +bQZ +bQZ +bQZ +bQZ +bQZ +bQZ +bUp +bQZ +bQZ +bQZ +bQZ +bQZ +btp +ceR +btp +cbv +ccq +bns +cjD +cjD +cjD +cjD +cnj +aaa +aaa +aaa +aaa +aaf +aaa +crj +crC +crS +aaa +crj +crC +crS +aaa +crj +crC +crS +aaa +aaf +aaS +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +atS +aoV +aoV +aoV +atS +aoV +aoV +aoV +aoV +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aNa +aNa +aNa +aQF +aNa +aTn +aNa +aNa +aNa +aNa +aNa +aTo +aNa +bdA +aNa +aNa +aNa +aaa +bky +blR +bns +boF +bqe +brC +brv +buv +bvO +bxr +byv +bzO +bzO +bzO +bqe +bEF +bky +bEO +bGK +bKc +bky +bMB +bNA +btp +btp +bRb +bDh +bPN +bUq +bVt +bVt +bUp +bUp +bUp +bPN +bDh +bqg +bky +bDh +bDh +ckS +bky +ccq +cds +cjD +ckt +cly +cmw +cnj +cnj +cnj +aaa +aaa +aaf +aaa +aaa +crD +aaa +aaa +aaa +crD +aaa +aaa +aaa +csZ +aaa +aaa +aaa +aaf +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apQ +aoV +aoV +aoV +atS +aoV +aoV +aoV +aoV +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaf +aaf +aNa +aQE +aNa +aQE +aNa +aaa +aaf +aaa +aNa +aQE +aNa +aQE +aNa +aaf +aaf +aaf +bky +blP +bns +boF +bqe +brB +brv +bsG +bvP +bxn +bqe +bzO +bzO +bzO +bqe +bEE +bFY +bEN +bGG +bKb +bFY +buz +buz +buz +buz +buz +bSl +bTq +bTq +bTq +bTq +bTq +bTq +bTq +bTq +cbf +cbf +ccU +ccU +ccU +ccU +ccU +ccr +cdr +cjF +cks +clx +cmv +cnk +cnK +cnk +cpi +cpi +cpi +cqJ +crk +crk +crk +crk +crk +crk +crk +csE +cpi +csY +cpi +cpi +cpi +ctB +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apQ +aoV +aoV +aoV +apQ +aoV +aoV +aoV +aoV +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaf +aaa +aNa +aQE +aNa +aQE +aNa +aaf +aaf +aaf +aNa +aQE +aNa +aQE +aNa +aaa +aaf +aaa +aaf +aaa +bns +boF +bqe +brD +brP +bsI +bvO +bxs +byw +bzO +bzO +bzO +bqe +bEG +bGa +bHs +bGL +bKd +bhG +bMC +blO +blO +bPO +blO +bSm +bTr +bTr +bTr +bTr +bXu +bTr +bTr +bTr +cbg +bTr +bTr +bXu +bTr +cbg +bTr +cct +cdu +cjG +cku +clz +cmx +cnj +cnj +cnj +aaa +aaa +aaf +aaa +aaa +crF +aaa +aaa +aaa +crF +aaa +aaa +aaa +csZ +aaa +aaa +aaa +aaf +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoV +aoV +aoV +aoV +apQ +aoV +aoV +aoV +aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aNa +aQF +aRW +aTo +aNa +aaa +aaa +aaa +aNa +aTo +aRW +bdA +aNa +aaa +aaa +aaa +aaf +aaa +bns +boF +bqe +bqe +bry +bsH +bqe +bqe +bqe +bqe +bqe +bqe +bqe +bEG +bFZ +bHr +bIS +bEs +bEs +bEs +bky +bky +btp +bky +bky +bky +bky +bky +btp +bky +bky +bky +bky +bky +bky +bky +bky +btp +bky +bky +bky +bky +cjD +cjD +cjD +cjD +cnj +aaa +aaa +aaa +aaa +aaf +aaa +crj +crE +crS +aaa +crj +crE +crS +aaa +crj +crE +crS +aaa +aaf +aaS +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cry +cwI +cwI +cxg +cxl +cxn +cwI +crx +crx +crx +cwI +cxK +cxl +cxK +cwI +cwI +cxW +aaa +aaf +aaf +bns +boH +biY +brF +brQ +bsM +buz +buz +buz +buz +buz +buz +buz +bEI +bFZ +bHu +bIV +bKf +bLk +bEs +bNC +btp +btp +bky +aaa +aaa +aaf +bky +btp +btp +bYr +btp +cad +cbi +bky +ccW +cdV +btp +bky +cgy +ccV +bky +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +crj +crE +crS +aaa +crj +crE +crS +aaa +crj +crE +crS +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cry +cwI +cwI +cwT +cwY +cxd +cxe +cwU +cwL +cxk +cxk +cxk +cxk +cxk +cwL +cwU +cxQ +cxQ +cxU +cwV +cxW +aaf +aaa +bnu +bhG +bhG +brE +bhG +bsJ +bhG +bhG +bhG +bhG +bhG +brE +bhG +bEH +bGb +cBA +bIU +bKe +bLj +bEs +bNB +btp +bPP +bky +aaa +aaa +aaf +bky +bky +bky +bky +btp +cac +cbh +bky +ccV +btp +btp +cfv +cBL +btp +bky +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +crj +crE +crS +aaf +crj +crE +crS +aaf +crj +crE +crS +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cry +crO +cwK +cwP +cwU +cwY +cxe +cxh +cwU +cxo +cwL +cwL +cwL +cwL +cwL +cxL +cwU +cxQ +cxQ +cxU +cxX +cxZ +aaf +aaf +aaf +bky +bqh +brH +btq +btq +bvQ +bxt +bvQ +btq +btq +bCm +bDh +bEs +bGd +bHv +bIW +bKe +bLm +bEs +bky +bky +bky +bky +aaa +aaa +aaf +aaa +aaf +bky +bYs +btp +cae +btp +btp +btp +btp +ceT +bky +btp +chH +bky +aaf +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +crj +crE +crS +aaa +crj +crE +crS +aaa +crj +crE +crS +aaf +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crx +crN +cwJ +cwO +cwU +cwY +cxe +cxh +cwU +cwL +cxq +cxq +cxq +cxq +cxq +cwL +cxM +cxQ +cxQ +cxV +cxX +cxZ +aaf +aaa +aaa +bky +bqg +brG +btp +btp +brG +btp +brG +btp +btp +brG +bDg +bEs +bGc +bGc +bGc +bEs +bLl +bEs +aaf +aaa +aaf +atS +aaa +aaa +aaf +aaa +aaf +bky +bky +bZi +bZi +bZi +bky +bky +bky +blP +bky +bky +bky +bky +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aba +aaa +crj +crG +crS +aaa +crj +crG +crS +aaa +crj +crG +crS +aaa +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +crx +cwF +cwL +cwR +cwV +crx +cxf +crx +cxm +cwL +cxr +cxr +cxr +cxr +cxr +cwL +cwU +cxR +cxQ +cxV +cxX +cxZ +aaf +aaf +aaf +bky +bky +brI +cAK +btp +bvR +btp +byx +btp +btp +brI +bky +bky +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aag +aaf +aaa +aaa +aaa +aaf +aaf +bky +ceU +bky +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaS +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aba +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crx +crQ +cwL +cwQ +cwU +cwZ +cwL +cxi +cxj +cwL +cwL +cwL +cwL +cwL +cwL +cwL +cxN +cwI +cwI +cwI +cxX +cxZ +aaf +aaa +aaa +aaa +bky +bky +bky +bky +bky +bky +bky +bky +bky +bky +bky +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aag +aaf +aaa +aaa +aaa +aaa +aaf +bky +blP +bky +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crx +cwF +cwL +cwL +cwX +cwL +cwL +cxk +cxj +cwL +cxq +cxq +cxq +cxq +cxq +cwL +crx +cxc +cxa +cxc +cxX +cxZ +aaf +aaf +aaa +aaa +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaf +aag +aag +aag +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crx +cwG +cwM +cwM +cwW +cxa +cwL +cxj +cxj +cwL +cxr +cxr +cxr +cxr +cxr +cwL +cxO +cxa +cxa +cxa +cxX +cxZ +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crz +cwH +cwN +cwS +cwU +cxc +cwL +cwL +cwL +cwL +cwL +cwL +cwL +cwL +cwL +cwL +crx +cxa +cxa +cxa +cxX +cxZ +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crz +cwI +cwI +cwT +cxb +cxa +cxa +cxa +cxp +cxs +cxs +cxs +cxs +cxs +cxp +crx +cxS +cxT +cxS +cwV +cxY +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crz +crx +cwI +crx +cwI +cwI +cwI +crx +crx +crx +cwI +cwI +cxP +crx +cwI +crx +cxY +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bGf +bLo +bGf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bIX +bGf +bLn +bGf +bIX +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bGf +bGf +bKh +bLo +bMD +bGf +bGf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +bGe +bGe +bIY +bKg +bKg +bKg +bND +bGe +bGe +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +bGf +bHw +bJa +bKg +bLp +bKg +bNF +bOJ +bGf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +bGe +bGe +bIZ +bKg +bKg +bKg +bNE +bGe +bGe +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bGf +bGf +bKi +bLr +bME +bNG +bNG +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bIX +bGf +bLq +bGf +bIX +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +bGf +bGe +bGf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} From 6dcae2cd7fc5d13cc7a393c9c3a4f0ccb4128581 Mon Sep 17 00:00:00 2001 From: KyrahAbattoir Date: Sat, 5 Mar 2016 14:20:13 +0100 Subject: [PATCH 07/77] -Moved vents/scrubbers where possible to have better area coverage. -Reflowed some of the pipework to be simpler/less "pipe under wall". -Added fire alarms/air alarms/firelocks to better partition the central hallway. -Fixed air alarm frequencies in medbay. -Fixed vent frequency for main air supply and server room. -Fixed frequencies around engineering. --- _maps/map_files/MiniStation/MiniStation.dmm | 3192 ++++++++++--------- 1 file changed, 1630 insertions(+), 1562 deletions(-) diff --git a/_maps/map_files/MiniStation/MiniStation.dmm b/_maps/map_files/MiniStation/MiniStation.dmm index a3a62d17751..91282b11bc9 100644 --- a/_maps/map_files/MiniStation/MiniStation.dmm +++ b/_maps/map_files/MiniStation/MiniStation.dmm @@ -1057,26 +1057,11 @@ }, /area/hallway/primary/central) "cB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - frequency = 1440; - on = 1 - }, -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/obj/item/toy/beach_ball/holoball, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/obj/machinery/camera/autoname, +/obj/machinery/newscaster{ + pixel_y = 32 }, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "cC" = ( /obj/structure/closet/secure_closet/security, @@ -1273,30 +1258,15 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cY" = ( -/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" - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -1508,13 +1478,10 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "du" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - frequency = 1440; - pixel_y = 23 - }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "red"; + dir = 4 }, /area/hallway/primary/central) "dv" = ( @@ -1715,75 +1682,98 @@ /turf/simulated/wall, /area/quartermaster/storage) "dS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 }, -/turf/simulated/wall, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel, +/area/security/brig) "dT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/wall, -/area/quartermaster/storage) -"dU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"dV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"dU" = ( +/obj/structure/closet/secure_closet/miner, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" + dir = 4; + icon_state = "brown" }, -/area/hallway/primary/central) -"dW" = ( -/obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/area/quartermaster/storage) +"dV" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 }, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) +"dW" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/device/multitool, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/item/clothing/head/soft, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "dX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/camera/autoname, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) "dY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/pen/red, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"dZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"dZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/primary/central) +/area/quartermaster/storage) "ea" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ @@ -1841,11 +1831,12 @@ /turf/simulated/floor/plasteel, /area/security/brig) "eg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 }, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/quartermaster/storage) "eh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2011,133 +2002,86 @@ }, /area/quartermaster/storage) "ew" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/machinery/computer/cargo, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" }, -/turf/simulated/floor/plasteel, /area/quartermaster/storage) "ex" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "ey" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"ez" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) +"ez" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "eA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/machinery/autolathe, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "eB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/storage) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - pixel_y = 2; - supply_display = 1 - }, -/turf/simulated/wall, -/area/quartermaster/storage) -"eD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9; + pixel_y = 0 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"eE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"eC" = ( +/obj/structure/chair{ dir = 4 }, -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 +/obj/effect/landmark/start{ + name = "Cargo Technician" }, -/obj/item/device/multitool, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" }, -/obj/item/clothing/head/soft, +/area/quartermaster/storage) +"eD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"eE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "eF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/camera/autoname, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "eG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/machinery/photocopier, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cautioncorner"; dir = 4 }, -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/pen/red, -/turf/simulated/floor/plasteel, /area/quartermaster/storage) "eH" = ( /obj/structure/rack, @@ -2152,9 +2096,13 @@ }, /area/security/brig) "eI" = ( -/turf/simulated/floor/plasteel{ - icon_state = "bot" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 }, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "eJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2183,9 +2131,15 @@ }, /area/hallway/primary/central) "eL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) "eM" = ( /obj/structure/cable{ d1 = 1; @@ -2362,34 +2316,56 @@ }, /area/quartermaster/storage) "fa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/security/brig) "fb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "fc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 120; + frequency = 1450; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/medical/research{ + name = "Research Division" + }) "fd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 140; + frequency = 1450; + on = 1; + pressure_checks = 0 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/medical/research{ + name = "Research Division" + }) +"fe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"fe" = ( -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/storage) "ff" = ( /obj/machinery/firealarm{ dir = 8; @@ -2399,12 +2375,10 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "fg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/computer/cargo, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/turf/simulated/floor/plasteel, /area/quartermaster/storage) "fh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -2429,21 +2403,19 @@ /turf/simulated/floor/plasteel, /area/security/brig) "fj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"fk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel{ - icon_state = "red"; +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"fk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "fl" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -2507,18 +2479,16 @@ }, /area/security/brig) "fq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) "fr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2597,24 +2567,29 @@ }, /area/quartermaster/storage) "fy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "fz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/central) "fA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/central) "fB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2636,35 +2611,39 @@ /turf/simulated/wall, /area/quartermaster/storage) "fD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/autolathe, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/central) "fE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/central) "fF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair{ dir = 4 }, /obj/effect/landmark/start{ - name = "Cargo Technician" + name = "Security Officer" }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "yellow" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel, +/area/security/brig) "fG" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ @@ -2696,27 +2675,35 @@ /turf/simulated/floor/plating, /area/security/brig) "fL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 +/obj/structure/table, +/obj/item/weapon/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) "fM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) "fN" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/turf/simulated/floor/plasteel{ - icon_state = "cautioncorner"; +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel, +/area/security/brig) "fO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -2813,13 +2800,12 @@ name = "Research Division" }) "fV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "31" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/security/brig) "fW" = ( /obj/effect/spawner/structure/window/reinforced, /turf/simulated/floor/plating, @@ -2828,28 +2814,40 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "fY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"fZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 +/obj/machinery/door_timer{ + dir = 4; + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32; + pixel_y = 0 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"ga" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"fZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"ga" = ( +/obj/structure/closet/crate, +/obj/item/weapon/ore/slag, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) "gb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ @@ -2893,17 +2891,20 @@ /turf/simulated/floor/plasteel, /area/security/brig) "gg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +/obj/structure/chair{ + dir = 4 }, -/obj/structure/chair, /obj/effect/landmark/start{ name = "Security Officer" }, /turf/simulated/floor/plasteel, /area/security/brig) "gh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/security/brig) "gi" = ( @@ -2937,53 +2938,50 @@ /turf/simulated/floor/plasteel, /area/security/brig) "gk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/simulated/floor/plasteel, +/area/security/brig) +"gl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/obj/machinery/door_timer{ - dir = 4; - id = "Cell 2"; - name = "Cell 2"; - pixel_x = 32; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "red"; dir = 4 }, /area/security/brig) -"gl" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/security/brig) "gm" = ( -/obj/machinery/vending/security, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"gn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; on = 1 }, /turf/simulated/floor/plasteel, -/area/security/brig) -"gn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/security/brig) +/area/hallway/primary/central) "go" = ( /turf/simulated/wall/r_wall, /area/medical/research{ @@ -3074,23 +3072,11 @@ }) "gx" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + dir = 1; + on = 1 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/security/brig) "gy" = ( /obj/structure/closet/crate, /obj/machinery/camera/autoname{ @@ -3102,21 +3088,14 @@ }, /area/quartermaster/storage) "gz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/security/brig) "gA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; @@ -3132,20 +3111,19 @@ }, /area/quartermaster/storage) "gC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"gD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/closet/crate, -/obj/item/weapon/ore/slag, +/obj/item/weapon/ore/glass, /turf/simulated/floor/plasteel{ icon_state = "bot" }, /area/quartermaster/storage) +"gD" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) "gE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -3160,42 +3138,41 @@ /turf/simulated/floor/plasteel, /area/security/brig) "gG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, +/obj/machinery/vending/security, /turf/simulated/floor/plasteel, /area/security/brig) "gH" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 }, -/obj/item/weapon/storage/box/trackimp, /turf/simulated/floor/plasteel, /area/security/brig) "gI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "red"; + dir = 4 }, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/weapon/pen, -/turf/simulated/floor/plasteel, /area/security/brig) "gJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ +/obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; + frequency = 1448; on = 1 }, +/obj/machinery/airalarm{ + dir = 4; + frequency = 1448; + pixel_x = -24 + }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -3408,18 +3385,37 @@ }, /area/quartermaster/storage) "hb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/simulated/floor/plasteel{ - icon_state = "bot" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1448; + on = 1 }, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/security/brig) "hc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/crate, -/turf/simulated/floor/plasteel{ - icon_state = "bot" +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + frequency = 1446; + on = 1 }, -/area/quartermaster/storage) +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/obj/item/toy/beach_ball/holoball, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" + }, +/area/hallway/primary/central) "hd" = ( /obj/machinery/atmospherics/pipe/simple{ dir = 2 @@ -3451,55 +3447,43 @@ /turf/simulated/floor/plasteel, /area/security/brig) "hg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + frequency = 1446; + pixel_y = 23 }, -/obj/structure/chair{ - dir = 4 +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/area/hallway/primary/central) "hh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Central Access" }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/hallway/primary/central) "hi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/storage/lockbox/loyalty, -/turf/simulated/floor/plasteel, -/area/security/brig) -"hj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 +/obj/machinery/door/airlock/glass{ + name = "Central Access" }, -/area/security/brig) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"hj" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "hk" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -3652,9 +3636,8 @@ /turf/simulated/floor/plating, /area/medical/medbay) "hy" = ( +/obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/crate, -/obj/item/weapon/ore/glass, /turf/simulated/floor/plasteel{ icon_state = "bot" }, @@ -3706,27 +3689,39 @@ /turf/simulated/floor/plasteel, /area/security/brig) "hF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/simulated/floor/plasteel, -/area/security/brig) +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) "hG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1446; + on = 1 }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" + }, +/area/hallway/primary/central) "hH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/machinery/airalarm{ + frequency = 1445; + pixel_y = 23 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/effect/landmark/start{ + name = "Assistant" }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/hallway/primary/central) "hI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -3958,16 +3953,11 @@ /turf/simulated/floor/plasteel, /area/security/brig) "ii" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - frequency = 1440; - on = 1 - }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "ij" = ( /obj/machinery/light, @@ -3975,49 +3965,71 @@ /turf/simulated/floor/plasteel, /area/security/brig) "ik" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "il" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/plasteel, -/area/security/brig) -"im" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/area/security/brig) -"in" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 +/obj/machinery/airalarm{ + frequency = 1440; + pixel_y = 23 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) +"im" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"in" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) "io" = ( /turf/simulated/floor/plasteel{ icon_state = "grimy" }, /area/security/brig) "ip" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 +/obj/machinery/camera/autoname, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) "iq" = ( /obj/machinery/newscaster{ pixel_x = -32; @@ -4269,38 +4281,40 @@ }, /area/hallway/primary/central) "iM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Central Access" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) "iN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/quartermaster/storage) "iO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/effect/landmark/start{ + name = "Assistant" }, -/obj/machinery/door/airlock/glass{ - name = "Central Access" +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1445; + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "iP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/effect/landmark/start{ + name = "Assistant" }, -/turf/simulated/wall, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1445; + on = 1 + }, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "iQ" = ( /obj/machinery/portable_atmospherics/pump, @@ -4442,14 +4456,19 @@ /turf/simulated/floor/plasteel/shuttle, /area/shuttle/arrival) "je" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/machinery/light/small, -/turf/simulated/floor/plasteel{ - icon_state = "bot" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + frequency = 1441; + on = 1 }, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "jf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -4518,20 +4537,10 @@ }, /area/hallway/primary/central) "jn" = ( -/obj/machinery/airalarm{ - frequency = 1442; - pixel_y = 23 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "jo" = ( /obj/machinery/portable_atmospherics/scrubber, @@ -4705,44 +4714,25 @@ name = "Research Division" }) "jF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "jG" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; + dir = 1; + frequency = 1440; on = 1 }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "jH" = ( -/obj/machinery/camera/autoname, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitehall" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1440; + on = 1 }, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "jI" = ( /obj/machinery/atmospherics/pipe/simple{ dir = 5 @@ -4811,11 +4801,15 @@ name = "Research Division" }) "jN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, -/turf/simulated/wall, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) "jO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/wall, @@ -4866,13 +4860,12 @@ }, /area/janitor) "jU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ +/obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; on = 1 }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whitehall" + icon_state = "white" }, /area/medical/research{ name = "Research Division" @@ -4937,25 +4930,37 @@ name = "Research Division" }) "jZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + frequency = 1447; + on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 }, -/area/medical/research{ - name = "Research Division" - }) +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" + }, +/area/hallway/primary/central) "ka" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + frequency = 1447; + pixel_y = 23 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" }, -/area/medical/research{ - name = "Research Division" - }) +/area/hallway/primary/central) "kb" = ( /obj/machinery/light{ dir = 1 @@ -5084,20 +5089,14 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "kr" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1442; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"ks" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"ks" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "kt" = ( @@ -5117,7 +5116,10 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "kv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "kw" = ( @@ -5211,7 +5213,7 @@ }) "kF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 9; @@ -5411,15 +5413,13 @@ }, /area/hallway/primary/central) "ld" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole{ - pixel_y = 0 - }, /turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 6 + dir = 9; + icon_state = "whitehall" }, -/area/hallway/primary/central) +/area/medical/research{ + name = "Research Division" + }) "le" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, @@ -5483,12 +5483,17 @@ }, /area/hallway/secondary/exit) "ll" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1447; on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" + }, +/area/hallway/primary/central) "lm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5528,12 +5533,8 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "ls" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/secondary/exit) "lt" = ( /obj/structure/cable{ d1 = 2; @@ -5758,6 +5759,10 @@ /turf/simulated/floor/plating, /area/hallway/secondary/exit) "lK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "lL" = ( @@ -5826,11 +5831,12 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "lU" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "recycler" +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 }, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "lV" = ( /obj/machinery/mineral/stacking_machine{ @@ -5900,14 +5906,13 @@ /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) "mc" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - frequency = 1442; - on = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "md" = ( @@ -6009,7 +6014,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; external_pressure_bound = 0; - frequency = 1441; + frequency = 1450; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; @@ -6113,12 +6118,15 @@ }, /area/hallway/primary/central) "mx" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "recycler" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 22; + pixel_y = 0 }, -/turf/simulated/floor/plating, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "my" = ( /obj/machinery/conveyor_switch/oneway{ id = "recycler"; @@ -6603,23 +6611,20 @@ name = "Research Division" }) "nq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 +/obj/machinery/airalarm{ + dir = 8; + frequency = 1441; + icon_state = "alarm0"; + pixel_x = 24 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "nr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "ns" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -6676,21 +6681,7 @@ frequency = 1441; on = 1 }, -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" - }, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "ny" = ( /obj/structure/cable{ @@ -6702,15 +6693,13 @@ /turf/simulated/floor/plating, /area/hallway/secondary/exit) "nz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - frequency = 1441; - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/turf/simulated/floor/plasteel{ + icon_state = "white" }, -/area/hallway/primary/central) +/area/medical/medbay) "nA" = ( /turf/simulated/wall, /area/janitor) @@ -6933,12 +6922,14 @@ }, /area/janitor) "oa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "ob" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7343,13 +7334,10 @@ /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) "oQ" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 +/turf/simulated/floor/plasteel{ + icon_state = "white" }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "oR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/wall/r_wall, @@ -7454,8 +7442,9 @@ }, /area/medical/medbay) "pd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -7472,10 +7461,12 @@ }, /area/medical/medbay) "pf" = ( -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "pg" = ( /obj/structure/table, /obj/item/weapon/surgical_drapes, @@ -7519,12 +7510,18 @@ }, /area/hallway/secondary/exit) "pm" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; + dir = 8; on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) "pn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -7578,13 +7575,11 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "ps" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner"; + dir = 8 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "pt" = ( /obj/structure/cable{ d1 = 4; @@ -7758,12 +7753,9 @@ }, /area/shuttle/syndicate) "pL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, +/obj/structure/closet/emcloset, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/secondary/exit) "pM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -7886,27 +7878,18 @@ }, /area/medical/medbay) "qa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) +/obj/structure/closet/crate/bin, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1442; + on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -7998,6 +7981,17 @@ }, /area/medical/medbay) "qm" = ( +/obj/machinery/camera/autoname{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"qn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8006,20 +8000,14 @@ icon_state = "white" }, /area/medical/medbay) -"qn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner"; - dir = 8 - }, -/area/medical/medbay) "qo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/simulated/wall, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, /area/medical/medbay) "qp" = ( /obj/structure/chair/comfy/beige{ @@ -8060,17 +8048,24 @@ }, /area/hallway/secondary/exit) "qt" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) -"qu" = ( /turf/simulated/floor/plasteel{ - dir = 4; + icon_state = "white" + }, +/area/medical/medbay) +"qu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; icon_state = "whiteblue" }, /area/medical/medbay) @@ -8099,9 +8094,13 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "qy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/machinery/airalarm{ + frequency = 1440; + pixel_y = 23 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -8117,12 +8116,12 @@ /turf/simulated/floor/plating, /area/medical/medbay) "qA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/hallway/primary/central) "qB" = ( /obj/machinery/door/airlock{ name = "Public Toilets" @@ -8139,9 +8138,15 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "qD" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + frequency = 1442; + pixel_y = 23 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -8188,14 +8193,21 @@ /turf/simulated/floor/plating, /area/engine/engineering) "qK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera/autoname{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 }, -/area/medical/medbay) +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qL" = ( /obj/structure/cable{ d1 = 4; @@ -8225,19 +8237,30 @@ name = "\improper Job Assignment" }) "qN" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, -/area/medical/medbay) +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ - icon_state = "white" + dir = 1; + icon_state = "warning" }, -/area/medical/medbay) +/area/hallway/primary/central) "qP" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer, /obj/machinery/airalarm{ @@ -8256,12 +8279,11 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "qR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner"; dir = 4 }, -/obj/machinery/camera/autoname, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/medical/medbay) "qS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/machinery/light{ @@ -8300,17 +8322,14 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "qX" = ( -/obj/machinery/airalarm{ - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 +/turf/simulated/floor/plasteel{ + icon_state = "L3"; + dir = 4 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/secondary/exit) "qY" = ( /obj/machinery/light{ dir = 1 @@ -8324,20 +8343,9 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "qZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "ra" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -8469,24 +8477,26 @@ /turf/simulated/floor/plating/airless, /area/engine/engineering) "rn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellow"; - dir = 8 - }, -/area/medical/medbay) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "ro" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1442; on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner"; - dir = 4 - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "rp" = ( /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/plasteel{ @@ -8547,14 +8557,13 @@ }, /area/hallway/secondary/exit) "rw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1442; + on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "L3"; - dir = 4 - }, -/area/hallway/secondary/exit) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "rx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8610,15 +8619,25 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "rD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/simulated/floor/plasteel, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L4"; + dir = 4 + }, /area/hallway/secondary/exit) "rE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1440; + on = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/secondary/exit) "rF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -8710,17 +8729,9 @@ /area/hallway/secondary/exit) "rO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plasteel{ - icon_state = "L4"; - dir = 4 - }, -/area/hallway/secondary/exit) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "rP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -8796,12 +8807,15 @@ }, /area/tcommsat/computer) "rV" = ( -/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "rW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -8914,28 +8928,13 @@ }, /area/medical/medbay) "si" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - frequency = 1440; - on = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/obj/machinery/camera/autoname, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellowcorner"; - dir = 2 - }, -/area/medical/medbay) +/obj/machinery/light, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "sj" = ( /obj/structure/bed/roller, /obj/item/device/radio/intercom{ @@ -8956,8 +8955,10 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "sl" = ( -/obj/machinery/airalarm{ - pixel_y = 23 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + frequency = 1440; + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -8995,18 +8996,23 @@ name = "\improper Job Assignment" }) "ss" = ( -/obj/machinery/door/airlock/glass{ - name = "Central Access" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + frequency = 1442; + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "st" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/glass{ - name = "Central Access" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1441; + on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "su" = ( /turf/simulated/wall, /area/crew_quarters/bar) @@ -9023,11 +9029,17 @@ }, /area/crew_quarters/bar) "sx" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellow"; - dir = 8 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/area/medical/medbay) +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central) "sy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9036,12 +9048,28 @@ /turf/simulated/floor/plating, /area/engine/engineering) "sz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/pill_bottle/epinephrine{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/weapon/storage/pill_bottle/epinephrine{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" + icon_state = "white" }, /area/medical/medbay) "sA" = ( @@ -9056,11 +9084,23 @@ }, /area/crew_quarters/bar) "sB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/camera/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowcorner"; + dir = 2 + }, +/area/medical/medbay) "sC" = ( /obj/structure/sign/chemistry, /turf/simulated/wall, @@ -9118,31 +9158,13 @@ }, /area/engine/engineering) "sI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - frequency = 1440; - on = 1 +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/pill_bottle/epinephrine{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/weapon/storage/pill_bottle/epinephrine{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -9303,9 +9325,30 @@ name = "\improper Job Assignment" }) "sX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/vending/wallmed{ + pixel_y = -28 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"sY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/heads{ + name = "\improper Job Assignment" + }) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9314,19 +9357,6 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central) -"sY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/hallway/primary/central) -"sZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "ta" = ( /obj/machinery/vending/cigarette{ pixel_x = 0; @@ -9382,15 +9412,13 @@ }, /area/medical/medbay) "tg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + frequency = 1443; + on = 1 }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "th" = ( /obj/structure/closet/crate/bin, /obj/structure/noticeboard{ @@ -9437,22 +9465,19 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "tn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "to" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - frequency = 1441; - on = 1 +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Chemist" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" + dir = 4; + icon_state = "whiteyellow" }, /area/medical/medbay) "tp" = ( @@ -9506,32 +9531,39 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "tu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow"; + dir = 8 + }, +/area/medical/medbay) +"tv" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"tw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/machinery/light, /turf/simulated/floor/plasteel, /area/crew_quarters/heads{ name = "\improper Job Assignment" }) -"tv" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"tw" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) "tx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9652,38 +9684,38 @@ name = "\improper Job Assignment" }) "tK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads{ name = "\improper Job Assignment" }) "tL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads{ - name = "\improper Job Assignment" - }) -"tM" = ( -/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/extinguisher_cabinet{ + pixel_x = -27; pixel_y = 0 }, -/turf/simulated/floor/plating, -/area/hallway/primary/central) +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1440; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"tM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + frequency = 1440; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/medbay) "tN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9691,14 +9723,12 @@ /turf/simulated/wall, /area/hallway/primary/central) "tO" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plating, +/area/medical/medbay) "tP" = ( /obj/structure/transit_tube{ icon_state = "N-S" @@ -9826,14 +9856,10 @@ }, /area/medical/medbay) "ud" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Chemist" - }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" + icon_state = "whiteyellow"; + dir = 8 }, /area/medical/medbay) "ue" = ( @@ -9859,15 +9885,7 @@ }, /area/crew_quarters/bar) "ug" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -9919,19 +9937,32 @@ name = "\improper Job Assignment" }) "uo" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1442; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"up" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/heads{ - name = "\improper Job Assignment" - }) -"up" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads{ @@ -9975,15 +10006,11 @@ name = "\improper Job Assignment" }) "uu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central) +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/crew_quarters/heads{ + name = "\improper Job Assignment" + }) "uv" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ @@ -10055,16 +10082,21 @@ }, /area/hallway/primary/central) "uE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay) "uF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteyellow" @@ -10087,10 +10119,8 @@ /turf/simulated/floor/plating, /area/shuttle/syndicate) "uJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - frequency = 1442; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner"; @@ -10115,12 +10145,9 @@ }, /area/medical/medbay) "uM" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -10251,44 +10278,36 @@ }, /area/hallway/primary/central) "vc" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - frequency = 1441; - on = 1 - }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" - }, -/area/hallway/primary/central) -"vd" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9; + pixel_y = 0 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay) +"vd" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) "ve" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ - icon_state = "white" + dir = 1; + icon_state = "whiteyellowcorner" }, /area/medical/medbay) "vf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1444; + on = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "vg" = ( /obj/structure/cable{ d1 = 1; @@ -10328,29 +10347,31 @@ }, /area/medical/medbay) "vk" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = 2; - pixel_y = 6 +/obj/machinery/camera/autoname{ + dir = 8 }, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = -2; - pixel_y = 4 +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/airalarm{ - frequency = 1441; - pixel_y = 23 +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + frequency = 1444; + on = 1 }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "vl" = ( -/obj/structure/chair, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/machinery/airalarm{ + dir = 4; + frequency = 1444; + pixel_x = -24 }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "vm" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; @@ -10482,10 +10503,18 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "vF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1441; - on = 1 +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/airalarm{ + frequency = 1445; + pixel_y = 23 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -10511,15 +10540,12 @@ }, /area/medical/medbay) "vJ" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "vK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10866,23 +10892,13 @@ /turf/simulated/floor/plating/airless, /area/shuttle/arrival) "wy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" }, -/turf/simulated/floor/engine{ - name = "air floor"; - nitrogen = 10580; - oxygen = 2644 - }, -/area/engine/engineering) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "wz" = ( /obj/effect/landmark{ name = "Observer-Start" @@ -10908,12 +10924,15 @@ name = "\improper Job Assignment" }) "wB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1445; + on = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "wC" = ( /obj/structure/cable{ d1 = 4; @@ -11452,11 +11471,15 @@ }, /area/hallway/primary/central) "xO" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "yellow" +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + frequency = 1445; + on = 1 }, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "xP" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; @@ -11676,11 +11699,15 @@ /turf/simulated/wall, /area/hallway/primary/central) "yo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + frequency = 1443; + icon_state = "alarm0"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "yellow" }, /area/hallway/primary/central) @@ -11832,37 +11859,33 @@ /area/engine/engineering) "yD" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/simulated/wall, -/area/hallway/primary/central) -"yE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "yellow" }, /area/hallway/primary/central) +"yE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/hallway/primary/central) "yF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "yellow" }, /area/hallway/primary/central) "yG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" }, -/turf/simulated/wall, /area/hallway/primary/central) "yH" = ( /obj/structure/window/reinforced{ @@ -12632,8 +12655,8 @@ /area/tcommsat/computer) "Al" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1441; + dir = 8; + frequency = 1443; on = 1 }, /turf/simulated/floor/plasteel, @@ -12689,23 +12712,23 @@ }, /area/engine/engineering) "Au" = ( -/obj/machinery/camera/autoname{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1444; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, -/obj/machinery/light/small{ - dir = 4 +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 }, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - frequency = 1441; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/engine/engineering) "Av" = ( /obj/structure/cable{ d1 = 4; @@ -12727,13 +12750,13 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "Ax" = ( -/obj/machinery/airalarm{ - dir = 4; - frequency = 1441; - pixel_x = -24 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1443; + on = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/engine/engineering) "Ay" = ( /obj/machinery/airalarm{ frequency = 1440; @@ -13054,7 +13077,7 @@ /area/engine/engineering) "Bl" = ( /obj/machinery/airalarm{ - frequency = 1441; + frequency = 1443; pixel_y = 23 }, /turf/simulated/floor/plasteel, @@ -16135,14 +16158,59 @@ /area/shuttle/transport) "IJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - frequency = 1441; + frequency = 1443; on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"IN" = ( +/obj/machinery/light{ + dir = 1 }, -/area/medical/medbay) +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"IM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"IL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"IK" = ( +/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" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) (1,1,1) = {" aa @@ -41992,7 +42060,7 @@ kf am kf sk -lK +ls ty lJ uO @@ -42235,20 +42303,20 @@ Hp HF fW kN -ll -lK -lK -lK -lK -lK -lK -lK -oa -qt +ls +ls +ls +ls +ls +ls +ls +ls +ls +pL kf eX kf -sl +ls li fW fW @@ -42492,21 +42560,21 @@ Hp HF fW kN -lm -lK -lK -lK -lK -lK -lK -lK -pM -lK lK +ls +ls +ls +ls +ls +ls +ls +pf +ls +ls ru -lK -lK -lK +ls +ls +ls lk uj fW @@ -42750,8 +42818,8 @@ HF kf kO lm -lK -lK +ls +ls mR nv nv @@ -42762,9 +42830,9 @@ nv nv rv rN -lK -lK -lK +ls +ls +ls uk fW sP @@ -43017,11 +43085,11 @@ mp pO mp mp -rw -rO -mp -qy -lK +qX +rD +ls +ls +ls ul fW sP @@ -43265,7 +43333,7 @@ kf kQ lo lM -mq +mx mT nw nW @@ -43276,8 +43344,8 @@ mq qQ rx rP -mq -qA +sl +ls tA um fW @@ -43533,7 +43601,7 @@ qp pM ry rQ -lK +ls lj fW fW @@ -43764,16 +43832,16 @@ bQ cN cS cS -ew -fa cS -cS -cS -cS -cS -cS -cS -ew +dZ +ex +fb +fb +fb +fb +fb +fb +fb dR ki kR @@ -43790,8 +43858,8 @@ qp pM rz rR -lK -lK +ls +ls ty lJ uO @@ -44021,17 +44089,17 @@ cu cO cS dO -ex -fb -fy -fb -fb -hb -fb -hb -fb -je -dS +cS +cS +ey +cS +fe +fZ +eE +fZ +eE +hy +iN kj kS lr @@ -44047,8 +44115,8 @@ pk pM rA rS -lK -lK +ls +ls fW fW of @@ -44278,17 +44346,17 @@ bQ cO cS cS +cS +cS ey -fc -fz -fc -fc -gD -fc -hy -fc -hc -jN +cS +fg +ga +cS +gC +cS +hF +bq kk kT bN @@ -44304,8 +44372,8 @@ qv pM rB rT -lK -lK +ls +ls kf kf am @@ -44535,11 +44603,11 @@ cv cP cS cS -ez -cS -fA cS cS +ey +cS +fg gy cS ic @@ -44558,7 +44626,7 @@ nA nA nA nA -qR +qy lm rC nv @@ -44792,11 +44860,11 @@ bQ cO cS dP -ez -cS -fA cS cS +ey +cS +fg bq bq bq @@ -44817,7 +44885,7 @@ pT nA pM lm -lK +ls sm sr qM @@ -45049,11 +45117,11 @@ cw cQ dq cS -ez cS -fA cS -gC +ey +cS +fj bq bN bN @@ -45074,7 +45142,7 @@ pU oe qS lm -lK +ls sn sr qL @@ -45306,11 +45374,11 @@ bq cR cS dO -eA -fd -fA -cS cS +eg +ez +eE +fk bq bN bx @@ -45330,13 +45398,13 @@ po po oT pO -rD -lK +qZ +rE sn nt tE -uo -uo +tw +up vt bS bS @@ -45563,19 +45631,19 @@ bK cS cS dQ -eB -fe +dU +dU fB cS -cS +fg bq bN bx -cB -ii +hc +hG bx -nx -vc +jZ +ll bx bx mu @@ -45588,11 +45656,11 @@ pW nA pM lm -lK +ls sn nt tF -un +tK un sr wb @@ -45820,18 +45888,18 @@ bq bq ds bq -eC +bJ bq fC ft -ft +fq bq bN bx -du +hg ji bx -nz +ka ji bx lR @@ -45845,12 +45913,12 @@ oe oe qT lm -lK +ls so sR tG -up -tu +tK +uu sr wc bx @@ -46077,11 +46145,11 @@ bx bN bN bq -eD +dV ff -fD -cS -cS +eA +eF +fg bq bN bx @@ -46100,9 +46168,9 @@ bx bN bN bx -ks -rE -eL +qA +rn +rO sp sS tH @@ -46334,11 +46402,11 @@ bx bN dt bq -eE -cS -fA +dW cS +ey cS +fg bq bN bx @@ -46359,7 +46427,7 @@ bS qx qU rF -ga +rV sq sT tI @@ -46389,7 +46457,7 @@ Bp sH za za -Bi +Ax Ck Cu yB @@ -46591,17 +46659,17 @@ bx bN iE dR -eF +dX fb -fE -fa +eB cS +fg bq bN bx iI iF -kr +iO jl kZ bx @@ -46616,7 +46684,7 @@ bN bx fX cX -fX +fz sr sU tJ @@ -46847,12 +46915,12 @@ bx cx cT dv -dS +bq +dY +ew +eC eG -fg -fF -fN -cS +fk bq bN bx @@ -46873,10 +46941,10 @@ dt bx qV cX -fX +fz sr sV -tK +sY ut uW sq @@ -47104,12 +47172,12 @@ bx bN cU dw -dT +bq bQ bQ fG bQ -fV +fy bq bN bx @@ -47129,11 +47197,11 @@ pr lv bx fX -cX -rV +ro +rW sr sW -tL +sr sr sr sr @@ -47361,18 +47429,18 @@ bO bO cV dx -dU -eI -eI +IM +IM +IM fH fX -fX +fz bx bN id iL kn -mc +iP oo lc bx @@ -47387,14 +47455,14 @@ lu bx qW rG -fj +cZ qx -sX -tM -uu -uu -uu -uu +sx +sZ +sZ +sZ +sZ +sZ wF nD bT @@ -47618,17 +47686,17 @@ cf bN cU dy -dV +IN el el fI fX -fX +fz bx bx bx bx -jn +hH jm og AR @@ -47642,12 +47710,12 @@ oL bN cx bx -qX +lY fX fX bx -sY -tN +on +bx bx bx bx @@ -47875,12 +47943,12 @@ ah bx cW dw -dW +cB eK eK fJ fX -fX +fz bx hB ie @@ -47903,8 +47971,8 @@ lY fX fX bx -dw -tN +bx +bx uv uX bx @@ -47916,7 +47984,7 @@ bx tN yn yy -yD +yE yX zj zx @@ -48132,50 +48200,50 @@ bo cy cX dz -dX -eL -eL -eL -fY -eL -eL -eL -eL -iM +cY +cY +cY +cY +cY +fA +cY +gm +cY +hh kp -ik -ks -fX -ls -lY -fX -fX -fX -fX +cY +kr +cY +lU +mc +cY +cY +cY +nr fX fX fX fX lY -pm -eL -iM -sZ -tO -fX +fX +fX +hh +fX +iT fX fX fX fX fX +vJ fX xN -ks -yo -lY -yE -ik -fX +fz +yD +mc +yF +cY +nr zy zX vL @@ -48387,28 +48455,28 @@ bP ch bW cz -cY +IK dA -dY +cZ eM -fj -fq -fZ -fj -fj -fj -fj -iN +cZ +cZ +cZ +fD +cZ +gn +cZ +hi dA -fj -dY -fj -fj +je +fD +cZ +cZ lZ fX fX fX -fX +nx fX fX fX @@ -48416,9 +48484,9 @@ fX lY fX fX -ss +hj fX -ks +tg fX fX fX @@ -48427,12 +48495,12 @@ fX fX fX fX -ks +fz jq lY fX fX -fX +Al zz vh AV @@ -48644,51 +48712,51 @@ bE cg bC cA -cZ +IL dB -dZ +du eN -fk -fL -ga -ga +du +eD +eI +fE he -ga -ga -iO +eD +eD +hj jp -in +jn ks fX fX lY -fX +nq fX fX fX oM -ps +fX pX fX lY -ip -ga -st -ga -sB fX fX +hj fX -fX -fX -iU -fX -xO +tn +eD +eD +eD +eD +eD +wy +eD +yo ks yp lY -yF -in +yG +fX fX zA zX @@ -48912,9 +48980,9 @@ cj cj hC if -iP -jp -ga +bx +ii +jF kv bx bx @@ -48944,7 +49012,7 @@ su yh yq yz -yG +jO yY zk zB @@ -49172,7 +49240,7 @@ cj cj jq fX -ks +fz bx cT ma @@ -49184,7 +49252,7 @@ bS nN bN bx -lY +qD fX fX sv @@ -49429,7 +49497,7 @@ ig cj jq fX -ks +fz bx cU mb @@ -49698,8 +49766,8 @@ mb pu cx bx -lY -fX +qK +rw fX su tc @@ -49936,10 +50004,10 @@ eS fn de ge -gG -hg -hF -gl +fF +gg +de +gD cj jq fX @@ -49955,7 +50023,7 @@ oN oN pY mb -lY +qN fX fX su @@ -50193,14 +50261,14 @@ eS de de gf -gH -hh -de +fL +gh +gx ij cj jq fX -ks +fz bx cU mb @@ -50212,9 +50280,9 @@ ib pv jW ke -qZ -eL -eL +qO +cY +cY qi tT tT @@ -50445,19 +50513,19 @@ ck cC dd dF -de +dS eS de de -gg -gI -hi -hG -gm +eL +fN +gk +de +gG cj jq fX -ks +fz bx cU mb @@ -50501,7 +50569,7 @@ Bx tx za za -Bm +IJ Cm Cy yB @@ -50702,19 +50770,19 @@ ck cD de de -eg +dT eT fo fo -gh -de -gF -ge -il +fa +fV +fo +fo +gH cj -jq -fX -ks +dz +jG +fz bx cU mb @@ -50727,8 +50795,8 @@ ns jX kg rb -ga -rW +eD +rV qj tU tU @@ -50964,14 +51032,14 @@ eU fp fO gi -gk -hj -hH -im +fY +gl +gz +gI cj jq fX -ks +fz bx cU mb @@ -50985,7 +51053,7 @@ qc mb rc fX -ks +fz su th tW @@ -51228,7 +51296,7 @@ fh cj jr fX -ks +fz bx cU mb @@ -51242,7 +51310,7 @@ qd qB rd fX -ks +fz su su tV @@ -51483,9 +51551,9 @@ fr de ge cj -jq +ik fX -ks +fz bx cU mb @@ -51499,7 +51567,7 @@ qe bx re fX -ks +fz su sM se @@ -51742,7 +51810,7 @@ gj cj jq fX -ks +fz bx cU bN @@ -51756,7 +51824,7 @@ bx bx jq fX -ks +fz su sA tY @@ -51997,7 +52065,7 @@ cj cj cj cj -jq +il fX kt bx @@ -52252,11 +52320,11 @@ ck gK hl hK -gn +gJ fK js fX -ks +fz bx lu bN @@ -52271,14 +52339,14 @@ bx jr fX rX -ga +eD xv -ga -ga +eD +eD yN -ga -Al -Ax +eD +vf +vl id bN bN @@ -52513,7 +52581,7 @@ io hz jt fX -ks +fz bx lv bN @@ -52524,11 +52592,11 @@ wo lR pA bx -oQ +qa jq fX -ks -pL +fz +fX el fX uB @@ -52766,11 +52834,11 @@ ck gL hm hL -gJ +hb fM ju -ga -kv +eD +ks go go go @@ -52781,11 +52849,11 @@ nP oS nP nP -qD +qb rf fX rX -sB +ss tl fX uC @@ -53027,7 +53095,7 @@ ck ck jq fX -ks +fz go lw md @@ -53041,7 +53109,7 @@ nP qE jq fX -ks +fz fX tm fX @@ -53282,30 +53350,30 @@ ho hN iq iT -dz -ik -ks +jq +fX +fz go lw me me go nR -nq -nr -pf +nz +oa +oQ nP hC dz -eL -wB -eL +cY +kr +cY yv yL -eL +cY zb zQ -Au +vk wO bx aa @@ -53316,7 +53384,7 @@ aa aa zc zo -wy +Au zo zc aa @@ -53540,8 +53608,8 @@ fX fX fX jq -ip -kv +jH +ks go lw me @@ -53549,13 +53617,13 @@ me go nS or -oV +oQ pC nP nP jq fX -ks +fz bx bx bx @@ -53806,13 +53874,13 @@ mf go nT or -oV -pf +oQ +oQ qf qF -jq -fX -ku +ii +jF +si bx am aa @@ -54063,8 +54131,8 @@ ly go go or -oV -pf +pd +oQ qg nP rg @@ -54330,8 +54398,8 @@ rZ qw hx ua +tL uE -vd uU hx aa @@ -54582,13 +54650,13 @@ pE kC pZ ri -pf -pf +oQ +oQ qw qz ub -pf -pf +oQ +or ti hx aa @@ -54845,7 +54913,7 @@ nP nP uc sd -pf +or sN hx am @@ -55099,10 +55167,10 @@ rk rK sb nP -sI -pa -pa -ve +sz +oQ +oQ +or vI hx am @@ -55353,14 +55421,14 @@ pG le hx rl -pf +oQ sc nP -si -ud +sB +to +tM uF -vf -vJ +vd nP nP hx @@ -55615,9 +55683,9 @@ hx nP tq rL -hx +tO tf -qo +nP nP wP xm @@ -55864,21 +55932,21 @@ kx oy oZ pD -ql -qK +pD +qm pD pD ql sE tr -rn -sx +tu +ud te -tg +ve oG wQ -vF -pf +wB +oQ ya hx aa @@ -56110,7 +56178,7 @@ hW ix bU jE -cp +iR kF bU lE @@ -56121,21 +56189,21 @@ kx oz pa pH -qm +pH +qn pa +pa +qn pH pa -qm -pH -pa -oX pa +qn vi -oV +oQ ts wR -pf -pf +oQ +oQ yb hx aa @@ -56366,9 +56434,9 @@ ht cp iy bU -jF -jZ -kF +im +cp +ld bU lF kG @@ -56378,22 +56446,22 @@ kx oA pb or -qa -qu -ro +pm +qo +qR rM oU sG qG +tv ug -sz vj -tn +pD oO wS -IJ -pf -pf +xO +oQ +oQ hx aa aa @@ -56624,8 +56692,8 @@ cp iz bU jE -ht -kF +cp +ld bU lG mi @@ -56635,8 +56703,8 @@ kx nP nP ou -qo -qb +nP +qt nP nP nP @@ -56647,7 +56715,7 @@ sD kL nP nP -vk +vF xp xH xl @@ -56880,9 +56948,9 @@ hw hX iA bU -jG -ht -jU +in +cp +ld bU lH lC @@ -56892,13 +56960,13 @@ kx oB pc pI -qn -qN +ps +qu rp nP sf rH -to +qu nP tp uJ @@ -57137,8 +57205,8 @@ bU bU bU bU -jH -ht +ip +cp kH bU gt @@ -57147,18 +57215,18 @@ mM mj kx oq -pd +nz pJ -oZ -qO +oQ +oV rq nP sg sJ -pf +oV nP uK -pf +or vO nP am @@ -57388,14 +57456,14 @@ bV bV bV bU -gx +fc gW bV cp cp cp -cp -ka +iM +jN kI lf gw @@ -57412,10 +57480,10 @@ rr nP sh sK -tv +sI nP uL -vl +uM vP nP am @@ -57652,7 +57720,7 @@ iB iB iW jI -cp +ht cp lg bU @@ -57661,18 +57729,18 @@ mO ml go oE -pf -pf -pf -pf +oQ +oQ +oQ +oQ rs nP qP sL -tw +sX nP tD -pf +or vQ nP aa @@ -57902,14 +57970,14 @@ aa aa am bU -gz +fd gY bV hQ iC cp jJ -cp +jU cp es bU @@ -57919,17 +57987,17 @@ no go oF pg -pf +oQ qr -pf +oQ rt nP sj -pf -pf +st +rZ nP -uM -pf +uo +vc vR nP aa From 21e2ce4e25d5cd79805bdf6ba8208f5d565fa4bb Mon Sep 17 00:00:00 2001 From: Menshin <> Date: Sun, 6 Mar 2016 10:23:37 +0100 Subject: [PATCH 08/77] Cleaning of the Particule Accelerator code --- .../particle_accelerator/particle.dm | 24 +- .../particle_accelerator.dm | 408 +++++------------- .../particle_accelerator/particle_chamber.dm | 10 - .../particle_accelerator/particle_control.dm | 274 +++++++----- .../particle_accelerator/particle_emitter.dm | 30 +- .../particle_accelerator/particle_power.dm | 10 - tgstation.dme | 2 - 7 files changed, 293 insertions(+), 465 deletions(-) delete mode 100644 code/modules/power/singularity/particle_accelerator/particle_chamber.dm delete mode 100644 code/modules/power/singularity/particle_accelerator/particle_power.dm diff --git a/code/modules/power/singularity/particle_accelerator/particle.dm b/code/modules/power/singularity/particle_accelerator/particle.dm index 889d9a3189b..8bbc0d6e7bb 100644 --- a/code/modules/power/singularity/particle_accelerator/particle.dm +++ b/code/modules/power/singularity/particle_accelerator/particle.dm @@ -1,10 +1,8 @@ -//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 - /obj/effect/accelerated_particle name = "Accelerated Particles" desc = "Small things moving very fast." icon = 'icons/obj/machines/particle_accelerator.dmi' - icon_state = "particle"//Need a new icon for this + icon_state = "particle" anchored = 1 density = 1 var/movement_range = 10 @@ -24,14 +22,10 @@ /obj/effect/accelerated_particle/New(loc, dir = 2) - src.loc = loc src.dir = dir - if(movement_range > 20) - movement_range = 20 spawn(0) move(1) - return /obj/effect/accelerated_particle/Bump(atom/A) @@ -40,35 +34,27 @@ toxmob(A) if((istype(A,/obj/machinery/the_singularitygen))||(istype(A,/obj/singularity/))) A:energy += energy - return /obj/effect/accelerated_particle/Bumped(atom/A) if(ismob(A)) Bump(A) - return /obj/effect/accelerated_particle/ex_act(severity, target) - loc = null - return - - + qdel(src) /obj/effect/accelerated_particle/proc/toxmob(mob/living/M) M.rad_act(energy*6) M.updatehealth() - return /obj/effect/accelerated_particle/proc/move(lag) - if(loc == null) - return if(!step(src,dir)) - src.loc = get_step(src,dir) + loc = get_step(src,dir) movement_range-- - if(movement_range <= 0) - loc = null + if(movement_range == 0) + qdel(src) else sleep(lag) move(lag) diff --git a/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm b/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm index c9f6d832c5e..55190370271 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm @@ -1,61 +1,23 @@ -//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 +/*Composed of 7 parts : -/*Composed of 7 parts -3 Particle emitters -proc -emit_particle() + 3 Particle Emitters + 1 Power Box + 1 Fuel Chamber + 1 End Cap + 1 Control computer -1 power box -the only part of this thing that uses power, can hack to mess with the pa/make it better + Setup map -1 fuel chamber -contains procs for mixing gas and whatever other fuel it uses -mix_gas() - -1 gas holder WIP -acts like a tank valve on the ground that you wrench gas tanks onto -proc -extract_gas() -return_gas() -attach_tank() -remove_tank() -get_available_mix() - -1 End Cap - -1 Control computer -interface for the pa, acts like a computer with an html menu for diff parts and a status report -all other parts contain only a ref to this -a /machine/, tells the others to do work -contains ref for all parts -proc -process() -check_build() - -Setup map - |EC| -CC|FC| - |PB| -PE|PE|PE - - -Icon Addemdum -Icon system is much more robust, and the icons are all variable based. -Each part has a reference string, powered, strength, and contruction values. -Using this the update_icon() proc is simplified a bit (using for absolutely was problematic with naming), -so the icon_state comes out be: -"[reference][strength]", with a switch controlling construction_states and ensuring that it doesn't -power on while being contructed, and all these variables are set by the computer through it's scan list -Essential order of the icons: -Standard - [reference] -Wrenched - [reference] -Wired - [reference]w -Closed - [reference]c -Powered - [reference]p[strength] -Strength being set by the computer and a null strength (Computer is powered off or inactive) returns a 'null', counting as empty -So, hopefully this is helpful if any more icons are to be added/changed/wondering what the hell is going on here + |EC| + CC|FC| + |PB| + PE|PE|PE */ +#define PA_CONSTRUCTION_UNSECURED 0 +#define PA_CONSTRUCTION_UNWIRED 1 +#define PA_CONSTRUCTION_PANEL_OPEN 2 +#define PA_CONSTRUCTION_COMPLETE 3 /obj/structure/particle_accelerator name = "Particle Accelerator" @@ -65,33 +27,32 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin anchored = 0 density = 1 var/obj/machinery/particle_accelerator/control_box/master = null - var/construction_state = 0 + var/construction_state = PA_CONSTRUCTION_UNSECURED var/reference = null var/powered = 0 var/strength = null - var/desc_holder = null /obj/structure/particle_accelerator/examine(mob/user) ..() + + switch(construction_state) + if(PA_CONSTRUCTION_UNSECURED) + user << "Looks like it's not attached to the flooring" + if(PA_CONSTRUCTION_UNWIRED) + user << "It is missing some cables" + if(PA_CONSTRUCTION_PANEL_OPEN) + user << "The panel is open" + user << "Alt-click to rotate it clockwise." /obj/structure/particle_accelerator/Destroy() - construction_state = 0 + construction_state = PA_CONSTRUCTION_UNSECURED if(master) - master.part_scan() + master.connected_parts -= src + master.assembled = 0 + master = null return ..() -/obj/structure/particle_accelerator/end_cap - name = "Alpha Particle Generation Array" - desc_holder = "This is where Alpha particles are generated from \[REDACTED\]" - icon_state = "end_cap" - reference = "end_cap" - -/obj/structure/particle_accelerator/update_icon() - ..() - return - - /obj/structure/particle_accelerator/verb/rotate() set name = "Rotate Clockwise" set category = "Object" @@ -99,10 +60,10 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin if(usr.stat || !usr.canmove || usr.restrained()) return - if (src.anchored) + if (anchored) usr << "It is fastened to the floor!" return 0 - src.dir = turn(src.dir, 270) + dir = turn(dir, -90) return 1 /obj/structure/particle_accelerator/AltClick(mob/user) @@ -122,32 +83,63 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin if(usr.stat || !usr.canmove || usr.restrained()) return - if (src.anchored) + if (anchored) usr << "It is fastened to the floor!" return 0 - src.dir = turn(src.dir, 90) + dir = turn(dir, 90) return 1 -/obj/structure/particle_accelerator/examine(mob/user) - switch(src.construction_state) - if(0) - src.desc = text("A [name], looks like it's not attached to the flooring") - if(1) - src.desc = text("A [name], it is missing some cables") - if(2) - src.desc = text("A [name], the panel is open") - if(3) - src.desc = text("The [name] is assembled") - if(powered) - src.desc = src.desc_holder - ..() - - /obj/structure/particle_accelerator/attackby(obj/item/W, mob/user, params) - user.changeNext_move(CLICK_CD_MELEE) - if(istool(W)) - if(src.process_tool_hit(W,user)) - return + var/did_something = FALSE + + switch(construction_state) + if(PA_CONSTRUCTION_UNSECURED) + if(istype(W, /obj/item/weapon/wrench) && !isinspace()) + playsound(loc, 'sound/items/Ratchet.ogg', 75, 1) + anchored = 1 + user.visible_message("[user.name] secures the [name] to the floor.", \ + "You secure the external bolts.") + construction_state = PA_CONSTRUCTION_UNWIRED + did_something = TRUE + if(PA_CONSTRUCTION_UNWIRED) + if(istype(W, /obj/item/weapon/wrench)) + playsound(loc, 'sound/items/Ratchet.ogg', 75, 1) + anchored = 0 + user.visible_message("[user.name] detaches the [name] from the floor.", \ + "You remove the external bolts.") + construction_state = PA_CONSTRUCTION_UNSECURED + did_something = TRUE + else if(istype(W, /obj/item/stack/cable_coil)) + var/obj/item/stack/cable_coil/CC = W + if(CC.use(1)) + user.visible_message("[user.name] adds wires to the [name].", \ + "You add some wires.") + construction_state = PA_CONSTRUCTION_PANEL_OPEN + did_something = TRUE + if(PA_CONSTRUCTION_PANEL_OPEN) + if(istype(W, /obj/item/weapon/wirecutters))//TODO:Shock user if its on? + user.visible_message("[user.name] removes some wires from the [name].", \ + "You remove some wires.") + construction_state = PA_CONSTRUCTION_UNWIRED + did_something = TRUE + else if(istype(W, /obj/item/weapon/screwdriver)) + user.visible_message("[user.name] closes the [name]'s access panel.", \ + "You close the access panel.") + construction_state = PA_CONSTRUCTION_COMPLETE + did_something = TRUE + if(PA_CONSTRUCTION_COMPLETE) + if(istype(W, /obj/item/weapon/screwdriver)) + user.visible_message("[user.name] opens the [name]'s access panel.", \ + "You open the access panel.") + construction_state = PA_CONSTRUCTION_PANEL_OPEN + did_something = TRUE + + if(did_something) + user.changeNext_move(CLICK_CD_MELEE) + update_state() + update_icon() + return + ..() @@ -160,16 +152,15 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin /obj/structure/particle_accelerator/blob_act() if(prob(50)) qdel(src) - return /obj/structure/particle_accelerator/update_icon() switch(construction_state) - if(0,1) + if(PA_CONSTRUCTION_UNSECURED,PA_CONSTRUCTION_UNWIRED) icon_state="[reference]" - if(2) + if(PA_CONSTRUCTION_PANEL_OPEN) icon_state="[reference]w" - if(3) + if(PA_CONSTRUCTION_COMPLETE) if(powered) icon_state="[reference]p[strength]" else @@ -179,217 +170,34 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin /obj/structure/particle_accelerator/proc/update_state() if(master) master.update_state() - return 0 - - -/obj/structure/particle_accelerator/proc/report_ready(obj/O) - if(O && (O == master)) - if(construction_state >= 3) - return 1 - return 0 - - -/obj/structure/particle_accelerator/proc/report_master() - if(master) - return master - return 0 - /obj/structure/particle_accelerator/proc/connect_master(obj/O) - if(O && istype(O,/obj/machinery/particle_accelerator/control_box)) - if(O.dir == src.dir) - master = O - return 1 - return 0 - - -/obj/structure/particle_accelerator/proc/process_tool_hit(obj/O, mob/user) - if(!(O) || !(user)) - return 0 - if(!ismob(user) || !isobj(O)) - return 0 - var/temp_state = src.construction_state - - switch(src.construction_state)//TODO:Might be more interesting to have it need several parts rather than a single list of steps - if(0) - if(istype(O, /obj/item/weapon/wrench) && !isinspace()) - playsound(src.loc, 'sound/items/Ratchet.ogg', 75, 1) - src.anchored = 1 - user.visible_message("[user.name] secures the [src.name] to the floor.", \ - "You secure the external bolts.") - temp_state++ - if(1) - if(istype(O, /obj/item/weapon/wrench)) - playsound(src.loc, 'sound/items/Ratchet.ogg', 75, 1) - src.anchored = 0 - user.visible_message("[user.name] detaches the [src.name] from the floor.", \ - "You remove the external bolts.") - temp_state-- - else if(istype(O, /obj/item/stack/cable_coil)) - var/obj/item/stack/cable_coil/C = O - if(C.use(1)) - user.visible_message("[user.name] adds wires to the [src.name].", \ - "You add some wires.") - temp_state++ - else - user << "You need one length of cable to wire the [src.name]!" - return - if(2) - if(istype(O, /obj/item/weapon/wirecutters))//TODO:Shock user if its on? - user.visible_message("[user.name] removes some wires from the [src.name].", \ - "You remove some wires.") - temp_state-- - else if(istype(O, /obj/item/weapon/screwdriver)) - user.visible_message("[user.name] closes the [src.name]'s access panel.", \ - "You close the access panel.") - temp_state++ - if(3) - if(istype(O, /obj/item/weapon/screwdriver)) - user.visible_message("[user.name] opens the [src.name]'s access panel.", \ - "You open the access panel.") - temp_state-- - if(temp_state == src.construction_state)//Nothing changed - return 0 - else - src.construction_state = temp_state - if(src.construction_state < 3)//Was taken apart, update state - update_state() - update_icon() + if(O.dir == dir) + master = O return 1 return 0 +/////////// +// PARTS // +/////////// -/obj/machinery/particle_accelerator - name = "Particle Accelerator" - desc = "Part of a Particle Accelerator." +/obj/structure/particle_accelerator/end_cap + name = "Alpha Particle Generation Array" + desc = "This is where Alpha particles are generated from \[REDACTED\]" + icon_state = "end_cap" + reference = "end_cap" + +/obj/structure/particle_accelerator/power_box + name = "Particle Focusing EM Lens" + desc = "This uses electromagnetic waves to focus the Alpha-Particles." icon = 'icons/obj/machines/particle_accelerator.dmi' - icon_state = "none" - anchored = 0 - density = 1 - use_power = 0 - idle_power_usage = 0 - active_power_usage = 0 - var/construction_state = 0 - var/active = 0 - var/reference = null - var/powered = null - var/strength = 0 - var/desc_holder = null + icon_state = "power_box" + reference = "power_box" - -/obj/machinery/particle_accelerator/verb/rotate() - set name = "Rotate Clockwise" - set category = "Object" - set src in oview(1) - - if(usr.stat || !usr.canmove || usr.restrained()) - return - if (src.anchored) - usr << "It is fastened to the floor!" - return 0 - src.dir = turn(src.dir, 270) - return 1 - -/obj/machinery/particle_accelerator/verb/rotateccw() - set name = "Rotate Counter-Clockwise" - set category = "Object" - set src in oview(1) - - if(usr.stat || !usr.canmove || usr.restrained()) - return - if (src.anchored) - usr << "It is fastened to the floor!" - return 0 - src.dir = turn(src.dir, 90) - return 1 - -/obj/machinery/particle_accelerator/update_icon() - return - -/obj/machinery/particle_accelerator/examine(mob/user) - switch(src.construction_state) - if(0) - src.desc = text("A [name], looks like it's not attached to the flooring") - if(1) - src.desc = text("A [name], it is missing some cables") - if(2) - src.desc = text("A [name], the panel is open") - if(3) - src.desc = text("The [name] is assembled") - if(powered) - src.desc = src.desc_holder - ..() - - -/obj/machinery/particle_accelerator/attackby(obj/item/W, mob/user, params) - if(istool(W)) - if(src.process_tool_hit(W,user)) - return - ..() - return - -/obj/machinery/particle_accelerator/blob_act() - if(prob(50)) - qdel(src) - return - - -/obj/machinery/particle_accelerator/proc/update_state() - return 0 - - -/obj/machinery/particle_accelerator/proc/process_tool_hit(obj/O, mob/user) - if(!(O) || !(user)) - return 0 - if(!ismob(user) || !isobj(O)) - return 0 - var/temp_state = src.construction_state - switch(src.construction_state)//TODO:Might be more interesting to have it need several parts rather than a single list of steps - if(0) - if(istype(O, /obj/item/weapon/wrench)) - playsound(src.loc, 'sound/items/Ratchet.ogg', 75, 1) - src.anchored = 1 - user.visible_message("[user.name] secures the [src.name] to the floor.", \ - "You secure the external bolts.") - temp_state++ - if(1) - if(istype(O, /obj/item/weapon/wrench)) - playsound(src.loc, 'sound/items/Ratchet.ogg', 75, 1) - src.anchored = 0 - user.visible_message("[user.name] detaches the [src.name] from the floor.", \ - "You remove the external bolts.") - temp_state-- - else if(istype(O, /obj/item/stack/cable_coil)) - if(O:use(1)) - user.visible_message("[user.name] adds wires to the [src.name].", \ - "You add some wires.") - temp_state++ - if(2) - if(istype(O, /obj/item/weapon/wirecutters))//TODO:Shock user if its on? - user.visible_message("[user.name] removes some wires from the [src.name].", \ - "You remove some wires.") - temp_state-- - else if(istype(O, /obj/item/weapon/screwdriver)) - user.visible_message("[user.name] closes the [src.name]'s access panel.", \ - "You close the access panel.") - temp_state++ - if(3) - if(istype(O, /obj/item/weapon/screwdriver)) - user.visible_message("[user.name] opens the [src.name]'s access panel.", \ - "You open the access panel.") - temp_state-- - active = 0 - if(temp_state == src.construction_state)//Nothing changed - return 0 - else - if(src.construction_state < 3)//Was taken apart, update state - update_state() - if(use_power) - use_power = 0 - src.construction_state = temp_state - if(src.construction_state >= 3) - use_power = 1 - update_icon() - return 1 - return 0 +/obj/structure/particle_accelerator/fuel_chamber + name = "EM Acceleration Chamber" + desc = "This is where the Alpha particles are accelerated to radical speeds." + icon = 'icons/obj/machines/particle_accelerator.dmi' + icon_state = "fuel_chamber" + reference = "fuel_chamber" diff --git a/code/modules/power/singularity/particle_accelerator/particle_chamber.dm b/code/modules/power/singularity/particle_accelerator/particle_chamber.dm deleted file mode 100644 index 8d8e23e9964..00000000000 --- a/code/modules/power/singularity/particle_accelerator/particle_chamber.dm +++ /dev/null @@ -1,10 +0,0 @@ -/obj/structure/particle_accelerator/fuel_chamber - name = "EM Acceleration Chamber" - desc_holder = "This is where the Alpha particles are accelerated to radical speeds." - icon = 'icons/obj/machines/particle_accelerator.dmi' - icon_state = "fuel_chamber" - reference = "fuel_chamber" - -/obj/structure/particle_accelerator/fuel_chamber/update_icon() - ..() - return \ No newline at end of file diff --git a/code/modules/power/singularity/particle_accelerator/particle_control.dm b/code/modules/power/singularity/particle_accelerator/particle_control.dm index 0d70ae0410f..887b816efe6 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_control.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_control.dm @@ -1,24 +1,24 @@ -//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 + /obj/machinery/particle_accelerator/control_box name = "Particle Accelerator Control Console" desc = "This controls the density of the particles." icon = 'icons/obj/machines/particle_accelerator.dmi' icon_state = "control_box" - reference = "control_box" anchored = 0 density = 1 use_power = 0 idle_power_usage = 500 active_power_usage = 10000 - construction_state = 0 - active = 0 dir = 1 var/strength_upper_limit = 2 var/interface_control = 1 var/list/obj/structure/particle_accelerator/connected_parts var/assembled = 0 - var/parts = null + var/construction_state = PA_CONSTRUCTION_UNSECURED + var/active = 0 + var/strength = 0 + var/powered = 0 /obj/machinery/particle_accelerator/control_box/New() wires = new /datum/wires/particle_accelerator/control_box(src) @@ -28,54 +28,54 @@ /obj/machinery/particle_accelerator/control_box/Destroy() if(active) toggle_power() + for(var/CP in connected_parts) + var/obj/structure/particle_accelerator/part = CP + part.master = null + connected_parts.Cut() qdel(wires) wires = null return ..() /obj/machinery/particle_accelerator/control_box/attack_hand(mob/user) - if(construction_state >= 3) + if(construction_state == PA_CONSTRUCTION_COMPLETE) interact(user) - else if(construction_state == 2) // Wires exposed + else if(construction_state == PA_CONSTRUCTION_PANEL_OPEN) wires.interact(user) -/obj/machinery/particle_accelerator/control_box/update_state() - if(construction_state < 3) +/obj/machinery/particle_accelerator/control_box/proc/update_state() + if(construction_state < PA_CONSTRUCTION_COMPLETE) use_power = 0 assembled = 0 active = 0 - for(var/obj/structure/particle_accelerator/part in connected_parts) + for(var/CP in connected_parts) + var/obj/structure/particle_accelerator/part = CP part.strength = null part.powered = 0 part.update_icon() - connected_parts = list() + connected_parts.Cut() return if(!part_scan()) use_power = 1 active = 0 - connected_parts = list() - - return + connected_parts.Cut() /obj/machinery/particle_accelerator/control_box/update_icon() if(active) - icon_state = "[reference]p1" + icon_state = "control_boxp1" else if(use_power) if(assembled) - icon_state = "[reference]p" + icon_state = "control_boxp" else - icon_state = "u[reference]p" + icon_state = "ucontrol_boxp" else switch(construction_state) - if(0) - icon_state = "[reference]" - if(1) - icon_state = "[reference]" - if(2) - icon_state = "[reference]w" + if(PA_CONSTRUCTION_UNSECURED, PA_CONSTRUCTION_UNWIRED) + icon_state = "control_box" + if(PA_CONSTRUCTION_PANEL_OPEN) + icon_state = "control_boxw" else - icon_state = "[reference]c" - return + icon_state = "control_boxc" /obj/machinery/particle_accelerator/control_box/Topic(href, href_list) if(..()) @@ -85,16 +85,16 @@ usr << "ERROR: Request timed out. Check wire contacts." return - if( href_list["close"] ) + if(href_list["close"]) usr << browse(null, "window=pacontrol") usr.unset_machine() return if(href_list["togglep"]) if(!wires.is_cut(WIRE_POWER)) - src.toggle_power() + toggle_power() else if(href_list["scan"]) - src.part_scan() + part_scan() else if(href_list["strengthup"]) if(!wires.is_cut(WIRE_STRENGTH)) @@ -104,125 +104,119 @@ if(!wires.is_cut(WIRE_STRENGTH)) remove_strength() - src.updateDialog() - src.update_icon() - return - + updateDialog() + update_icon() /obj/machinery/particle_accelerator/control_box/proc/strength_change() - for(var/obj/structure/particle_accelerator/part in connected_parts) + for(var/CP in connected_parts) + var/obj/structure/particle_accelerator/part = CP part.strength = strength part.update_icon() /obj/machinery/particle_accelerator/control_box/proc/add_strength(s) - if(assembled) + if(assembled && (strength < strength_upper_limit)) strength++ - if(strength > strength_upper_limit) - strength = strength_upper_limit - else - message_admins("PA Control Computer increased to [strength] by [key_name_admin(usr)](?) (FLW) in ([x],[y],[z] - JMP)",0,1) - log_game("PA Control Computer increased to [strength] by [key_name(usr)] in ([x],[y],[z])") - investigate_log("increased to [strength] by [key_name(usr)]","singulo") strength_change() + message_admins("PA Control Computer increased to [strength] by [key_name_admin(usr)](?) (FLW) in ([x],[y],[z] - JMP)",0,1) + log_game("PA Control Computer increased to [strength] by [key_name(usr)] in ([x],[y],[z])") + investigate_log("increased to [strength] by [key_name(usr)]","singulo") + + /obj/machinery/particle_accelerator/control_box/proc/remove_strength(s) - if(assembled) + if(assembled && (strength > 0)) strength-- - if(strength < 0) - strength = 0 - else - message_admins("PA Control Computer decreased to [strength] by [key_name_admin(usr)](?) (FLW) in ([x],[y],[z] - JMP)",0,1) - log_game("PA Control Computer decreased to [strength] by [key_name(usr)] in ([x],[y],[z])") - investigate_log("decreased to [strength] by [key_name(usr)]","singulo") strength_change() + message_admins("PA Control Computer decreased to [strength] by [key_name_admin(usr)](?) (FLW) in ([x],[y],[z] - JMP)",0,1) + log_game("PA Control Computer decreased to [strength] by [key_name(usr)] in ([x],[y],[z])") + investigate_log("decreased to [strength] by [key_name(usr)]","singulo") + + /obj/machinery/particle_accelerator/control_box/power_change() ..() if(stat & NOPOWER) active = 0 use_power = 0 - else if(!stat && construction_state <= 3) + else if(!stat && construction_state == PA_CONSTRUCTION_COMPLETE) use_power = 1 - return - /obj/machinery/particle_accelerator/control_box/process() - if(src.active) + if(active) //a part is missing! - if( length(connected_parts) < 6 ) + if(connected_parts.len < 6) investigate_log("lost a connected part; It powered down.","singulo") - src.toggle_power() + toggle_power() + update_icon() return //emit some particles for(var/obj/structure/particle_accelerator/particle_emitter/PE in connected_parts) - if(PE) - PE.emit_particle(src.strength) - return - + PE.emit_particle(strength) /obj/machinery/particle_accelerator/control_box/proc/part_scan() - for(var/obj/structure/particle_accelerator/fuel_chamber/F in orange(1,src)) - src.dir = F.dir - connected_parts = list() - var/tally = 0 var/ldir = turn(dir,-90) var/rdir = turn(dir,90) var/odir = turn(dir,180) - var/turf/T = src.loc - T = get_step(T,rdir) - if(check_part(T,/obj/structure/particle_accelerator/fuel_chamber)) - tally++ - T = get_step(T,odir) - if(check_part(T,/obj/structure/particle_accelerator/end_cap)) - tally++ - T = get_step(T,dir) - T = get_step(T,dir) - if(check_part(T,/obj/structure/particle_accelerator/power_box)) - tally++ - T = get_step(T,dir) - if(check_part(T,/obj/structure/particle_accelerator/particle_emitter/center)) - tally++ - T = get_step(T,ldir) - if(check_part(T,/obj/structure/particle_accelerator/particle_emitter/left)) - tally++ - T = get_step(T,rdir) - T = get_step(T,rdir) - if(check_part(T,/obj/structure/particle_accelerator/particle_emitter/right)) - tally++ - if(tally >= 6) - assembled = 1 - return 1 - else - assembled = 0 + var/turf/T = loc + + assembled = 0 + + var/obj/structure/particle_accelerator/fuel_chamber/F = locate() in orange(1,src) + if(!F) return 0 + dir = F.dir + connected_parts.Cut() + + T = get_step(T,rdir) + if(!check_part(T,/obj/structure/particle_accelerator/fuel_chamber)) + return 0 + T = get_step(T,odir) + if(!check_part(T,/obj/structure/particle_accelerator/end_cap)) + return 0 + T = get_step(T,dir) + T = get_step(T,dir) + if(!check_part(T,/obj/structure/particle_accelerator/power_box)) + return 0 + T = get_step(T,dir) + if(!check_part(T,/obj/structure/particle_accelerator/particle_emitter/center)) + return 0 + T = get_step(T,ldir) + if(!check_part(T,/obj/structure/particle_accelerator/particle_emitter/left)) + return 0 + T = get_step(T,rdir) + T = get_step(T,rdir) + if(!check_part(T,/obj/structure/particle_accelerator/particle_emitter/right)) + return 0 + + assembled = 1 + return 1 /obj/machinery/particle_accelerator/control_box/proc/check_part(turf/T, type) - if(!(T)||!(type)) - return 0 var/obj/structure/particle_accelerator/PA = locate(/obj/structure/particle_accelerator) in T - if(istype(PA, type)) + if(istype(PA, type) && (PA.construction_state == PA_CONSTRUCTION_COMPLETE)) if(PA.connect_master(src)) - if(PA.report_ready(src)) - src.connected_parts.Add(PA) - return 1 + connected_parts.Add(PA) + return 1 return 0 /obj/machinery/particle_accelerator/control_box/proc/toggle_power() - src.active = !src.active + active = !active investigate_log("turned [active?"ON":"OFF"] by [usr ? key_name(usr) : "outside forces"]","singulo") message_admins("PA Control Computer turned [active ?"ON":"OFF"] by [usr ? key_name_admin(usr) : "outside forces"](?) (FLW) in ([x],[y],[z] - JMP)",0,1) log_game("PA Control Computer turned [active ?"ON":"OFF"] by [usr ? "[key_name(usr)]" : "outside forces"] in ([x],[y],[z])") - if(src.active) - src.use_power = 2 - for(var/obj/structure/particle_accelerator/part in connected_parts) - part.strength = src.strength + if(active) + use_power = 2 + for(var/CP in connected_parts) + var/obj/structure/particle_accelerator/part = CP + part.strength = strength part.powered = 1 part.update_icon() else - src.use_power = 1 - for(var/obj/structure/particle_accelerator/part in connected_parts) + use_power = 1 + for(var/CP in connected_parts) + var/obj/structure/particle_accelerator/part = CP part.strength = null part.powered = 0 part.update_icon() @@ -251,13 +245,85 @@ else dat += "Off
" dat += "Toggle Power

" - dat += "Particle Strength: [src.strength] " + dat += "Particle Strength: [strength] " dat += "--|++

" //user << browse(dat, "window=pacontrol;size=420x500") //onclose(user, "pacontrol") - var/datum/browser/popup = new(user, "pacontrol", name, 420, 500) + var/datum/browser/popup = new(user, "pacontrol", name, 420, 300) popup.set_content(dat) - popup.set_title_image(user.browse_rsc_icon(src.icon, src.icon_state)) + popup.set_title_image(user.browse_rsc_icon(icon, icon_state)) popup.open() - return \ No newline at end of file + +/obj/machinery/particle_accelerator/control_box/examine(mob/user) + ..() + switch(construction_state) + if(PA_CONSTRUCTION_UNSECURED) + user << "Looks like it's not attached to the flooring" + if(PA_CONSTRUCTION_UNWIRED) + user << "It is missing some cables" + if(PA_CONSTRUCTION_PANEL_OPEN) + user << "The panel is open" + + +/obj/machinery/particle_accelerator/control_box/attackby(obj/item/W, mob/user, params) + var/did_something = FALSE + + switch(construction_state) + if(PA_CONSTRUCTION_UNSECURED) + if(istype(W, /obj/item/weapon/wrench) && !isinspace()) + playsound(loc, 'sound/items/Ratchet.ogg', 75, 1) + anchored = 1 + user.visible_message("[user.name] secures the [name] to the floor.", \ + "You secure the external bolts.") + construction_state = PA_CONSTRUCTION_UNWIRED + did_something = TRUE + if(PA_CONSTRUCTION_UNWIRED) + if(istype(W, /obj/item/weapon/wrench)) + playsound(loc, 'sound/items/Ratchet.ogg', 75, 1) + anchored = 0 + user.visible_message("[user.name] detaches the [name] from the floor.", \ + "You remove the external bolts.") + construction_state = PA_CONSTRUCTION_UNSECURED + did_something = TRUE + else if(istype(W, /obj/item/stack/cable_coil)) + var/obj/item/stack/cable_coil/CC = W + if(CC.use(1)) + user.visible_message("[user.name] adds wires to the [name].", \ + "You add some wires.") + construction_state = PA_CONSTRUCTION_PANEL_OPEN + did_something = TRUE + if(PA_CONSTRUCTION_PANEL_OPEN) + if(istype(W, /obj/item/weapon/wirecutters))//TODO:Shock user if its on? + user.visible_message("[user.name] removes some wires from the [name].", \ + "You remove some wires.") + construction_state = PA_CONSTRUCTION_UNWIRED + did_something = TRUE + else if(istype(W, /obj/item/weapon/screwdriver)) + user.visible_message("[user.name] closes the [name]'s access panel.", \ + "You close the access panel.") + construction_state = PA_CONSTRUCTION_COMPLETE + did_something = TRUE + if(PA_CONSTRUCTION_COMPLETE) + if(istype(W, /obj/item/weapon/screwdriver)) + user.visible_message("[user.name] opens the [name]'s access panel.", \ + "You open the access panel.") + construction_state = PA_CONSTRUCTION_PANEL_OPEN + did_something = TRUE + + if(did_something) + user.changeNext_move(CLICK_CD_MELEE) + update_state() + update_icon() + return + + ..() + +/obj/machinery/particle_accelerator/control_box/blob_act() + if(prob(50)) + qdel(src) + +#undef PA_CONSTRUCTION_UNSECURED +#undef PA_CONSTRUCTION_UNWIRED +#undef PA_CONSTRUCTION_PANEL_OPEN +#undef PA_CONSTRUCTION_COMPLETE diff --git a/code/modules/power/singularity/particle_accelerator/particle_emitter.dm b/code/modules/power/singularity/particle_accelerator/particle_emitter.dm index caaae583787..7c6ca75d305 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_emitter.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_emitter.dm @@ -1,8 +1,6 @@ -//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 - /obj/structure/particle_accelerator/particle_emitter name = "EM Containment Grid" - desc_holder = "This launchs the Alpha particles, might not want to stand near this end." + desc = "This launchs the Alpha particles, might not want to stand near this end." icon = 'icons/obj/machines/particle_accelerator.dmi' icon_state = "none" var/fire_delay = 50 @@ -20,32 +18,24 @@ icon_state = "emitter_right" reference = "emitter_right" -/obj/structure/particle_accelerator/particle_emitter/update_icon() - ..() - return - /obj/structure/particle_accelerator/particle_emitter/proc/set_delay(delay) - if(delay && delay >= 0) - src.fire_delay = delay + if(delay >= 0) + fire_delay = delay return 1 return 0 - /obj/structure/particle_accelerator/particle_emitter/proc/emit_particle(strength = 0) - if((src.last_shot + src.fire_delay) <= world.time) - src.last_shot = world.time - var/obj/effect/accelerated_particle/A = null + if((last_shot + fire_delay) <= world.time) + last_shot = world.time var/turf/T = get_step(src,dir) switch(strength) if(0) - A = new/obj/effect/accelerated_particle/weak(T, dir) + new/obj/effect/accelerated_particle/weak(T, dir) if(1) - A = new/obj/effect/accelerated_particle(T, dir) + new/obj/effect/accelerated_particle(T, dir) if(2) - A = new/obj/effect/accelerated_particle/strong(T, dir) + new/obj/effect/accelerated_particle/strong(T, dir) if(3) - A = new/obj/effect/accelerated_particle/powerful(T, dir) - if(A) - A.dir = src.dir - return 1 + new/obj/effect/accelerated_particle/powerful(T, dir) + return 1 return 0 diff --git a/code/modules/power/singularity/particle_accelerator/particle_power.dm b/code/modules/power/singularity/particle_accelerator/particle_power.dm deleted file mode 100644 index e6deff37ddf..00000000000 --- a/code/modules/power/singularity/particle_accelerator/particle_power.dm +++ /dev/null @@ -1,10 +0,0 @@ -/obj/structure/particle_accelerator/power_box - name = "Particle Focusing EM Lens" - desc_holder = "This uses electromagnetic waves to focus the Alpha-Particles." - icon = 'icons/obj/machines/particle_accelerator.dmi' - icon_state = "power_box" - reference = "power_box" - -/obj/structure/particle_accelerator/power_box/update_icon() - ..() - return diff --git a/tgstation.dme b/tgstation.dme index 4a0d37630c2..7e9bbff2cfa 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1415,10 +1415,8 @@ #include "code\modules\power\singularity\singularity.dm" #include "code\modules\power\singularity\particle_accelerator\particle.dm" #include "code\modules\power\singularity\particle_accelerator\particle_accelerator.dm" -#include "code\modules\power\singularity\particle_accelerator\particle_chamber.dm" #include "code\modules\power\singularity\particle_accelerator\particle_control.dm" #include "code\modules\power\singularity\particle_accelerator\particle_emitter.dm" -#include "code\modules\power\singularity\particle_accelerator\particle_power.dm" #include "code\modules\power\supermatter\supermatter.dm" #include "code\modules\power\tesla\coil.dm" #include "code\modules\power\tesla\energy_ball.dm" From 3c77fbf3d82cd4b2141b510d119cac6c8c5e57a3 Mon Sep 17 00:00:00 2001 From: KazeEspada Date: Sun, 6 Mar 2016 13:17:30 -0700 Subject: [PATCH 09/77] Cabin Fixes --- _maps/RandomZLevels/Cabin.dmm | 10 +++++----- code/modules/awaymissions/mission_code/Cabin.dm | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/_maps/RandomZLevels/Cabin.dmm b/_maps/RandomZLevels/Cabin.dmm index 3c344b5b1b9..bd301106c1e 100644 --- a/_maps/RandomZLevels/Cabin.dmm +++ b/_maps/RandomZLevels/Cabin.dmm @@ -21,8 +21,8 @@ "au" = (/obj/structure/dresser,/turf/simulated/floor/wood,/area/awaymission/cabin) "av" = (/obj/machinery/power/apc{dir = 1; name = "cabin APC"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/cabin) "aw" = (/obj/machinery/power/smes/magical,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) -"ax" = (/obj/structure/closet/toolcloset,/obj/item/device/lightreplacer,/turf/simulated/floor/plating,/area/awaymission/cabin) -"ay" = (/obj/structure{desc = "Generates power from lava!"; dir = 1; icon = 'icons/obj/atmospherics/pipes/simple.dmi'; icon_state = "compressor"; name = "geothermal generator"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"ax" = (/obj/structure/closet/toolcloset,/obj/item/device/lightreplacer,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/awaymission/cabin) +"ay" = (/obj/structure{density = 1; desc = "Generates power from lava!"; dir = 1; icon = 'icons/obj/atmospherics/pipes/simple.dmi'; icon_state = "compressor"; name = "geothermal generator"},/turf/simulated/floor/plating,/area/awaymission/cabin) "az" = (/turf/simulated/floor/carpet,/area/awaymission/cabin) "aA" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/wood,/area/awaymission/cabin) "aB" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) @@ -30,7 +30,7 @@ "aD" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/awaymission/cabin) "aE" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/cabin) "aF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/cabin) -"aG" = (/obj/structure{desc = "Generates power from lava!"; dir = 2; icon = 'icons/obj/atmospherics/pipes/simple.dmi'; icon_state = "turbine"; name = "geothermal generator"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"aG" = (/obj/structure{density = 1; desc = "Generates power from lava!"; dir = 2; icon = 'icons/obj/atmospherics/pipes/simple.dmi'; icon_state = "turbine"; name = "geothermal generator"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) "aH" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/cabin) "aI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/cabin) "aJ" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) @@ -86,7 +86,7 @@ "bH" = (/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "bI" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/eastright,/obj/structure/window{icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "bJ" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"bK" = (/obj/machinery/light/small,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/cabin) +"bK" = (/obj/machinery/light/small,/obj/structure/table/wood,/obj/item/weapon/orion_ship,/turf/simulated/floor/wood,/area/awaymission/cabin) "bL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/patriot,/turf/simulated/floor/wood,/area/awaymission/cabin) "bM" = (/obj/machinery/vending/clothing,/turf/simulated/floor/wood,/area/awaymission/cabin) "bN" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor/wood,/area/awaymission/cabin) @@ -150,7 +150,7 @@ "cT" = (/obj/vehicle/atv,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cV" = (/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) -"cW" = (/obj/structure/closet,/obj/item/key,/obj/item/key,/obj/item/key,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) +"cW" = (/obj/structure/closet,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cX" = (/obj/machinery/light,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cY" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/asteroid/snow/temperate,/area/awaymission/snowforest) "cZ" = (/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) diff --git a/code/modules/awaymissions/mission_code/Cabin.dm b/code/modules/awaymissions/mission_code/Cabin.dm index 2912a33f15e..ef69e7ca254 100644 --- a/code/modules/awaymissions/mission_code/Cabin.dm +++ b/code/modules/awaymissions/mission_code/Cabin.dm @@ -123,7 +123,7 @@ spawnableAtoms[i] = 1 /datum/mapGeneratorModule/snow/bunnies - spawnableAtoms = list(/mob/living/simple_animal/chicken/rabbit/normal = 1) + spawnableAtoms = list(/mob/living/simple_animal/chicken/rabbit/normal = 0.1) /datum/mapGeneratorModule/snow/randIceRocks spawnableAtoms = list(/obj/structure/flora/rock/icy = 5, /obj/structure/flora/rock/pile/icy = 5) From be5c516a466f49ae75ea3bb68cc7c9b26e895ec5 Mon Sep 17 00:00:00 2001 From: KyrahAbattoir Date: Mon, 7 Mar 2016 02:31:21 +0100 Subject: [PATCH 10/77] Ministation Passed through new mapmerge --- _maps/map_files/MiniStation/MiniStation.dmm | 3092 +++++++++---------- 1 file changed, 1533 insertions(+), 1559 deletions(-) diff --git a/_maps/map_files/MiniStation/MiniStation.dmm b/_maps/map_files/MiniStation/MiniStation.dmm index 91282b11bc9..042dfea3c25 100644 --- a/_maps/map_files/MiniStation/MiniStation.dmm +++ b/_maps/map_files/MiniStation/MiniStation.dmm @@ -1057,11 +1057,26 @@ }, /area/hallway/primary/central) "cB" = ( -/obj/machinery/camera/autoname, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + frequency = 1446; + on = 1 + }, +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/obj/item/toy/beach_ball/holoball, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" }, -/turf/simulated/floor/plasteel, /area/hallway/primary/central) "cC" = ( /obj/structure/closet/secure_closet/security, @@ -1258,15 +1273,36 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/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" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "cZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -1478,10 +1514,13 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "du" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + frequency = 1446; + pixel_y = 23 + }, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" }, /area/hallway/primary/central) "dv" = ( @@ -1682,98 +1721,64 @@ /turf/simulated/wall, /area/quartermaster/storage) "dS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/quartermaster/storage) "dT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/security/brig) -"dU" = ( -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/storage) -"dV" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"dW" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/device/multitool, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/obj/item/clothing/head/soft, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"dX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/camera/autoname, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"dY" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/pen/red, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"dZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 2; on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) +"dU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"dV" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"dW" = ( +/obj/machinery/camera/autoname, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"dY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"dZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "ea" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ @@ -1831,12 +1836,11 @@ /turf/simulated/floor/plasteel, /area/security/brig) "eg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/security/brig) "eh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2002,86 +2006,124 @@ }, /area/quartermaster/storage) "ew" = ( -/obj/machinery/computer/cargo, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" }, -/area/quartermaster/storage) -"ex" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) -"ey" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"ex" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"ey" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel, /area/quartermaster/storage) "ez" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "eA" = ( -/obj/machinery/autolathe, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"eB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"eC" = ( -/obj/structure/chair{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/quartermaster/storage) -"eD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"eE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"eF" = ( +/area/security/brig) +"eB" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 1; on = 1 }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"eG" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cautioncorner"; +/area/security/brig) +"eC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"eD" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"eE" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/device/multitool, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/item/clothing/head/soft, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"eF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/camera/autoname, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"eG" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/pen/red, +/turf/simulated/floor/plasteel, /area/quartermaster/storage) "eH" = ( /obj/structure/rack, @@ -2096,13 +2138,9 @@ }, /area/security/brig) "eI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/turf/simulated/floor/plasteel{ + icon_state = "bot" }, -/turf/simulated/floor/plasteel, /area/hallway/primary/central) "eJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2131,15 +2169,9 @@ }, /area/hallway/primary/central) "eL" = ( -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/hallway/primary/central) "eM" = ( /obj/structure/cable{ d1 = 1; @@ -2316,56 +2348,34 @@ }, /area/quartermaster/storage) "fa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/quartermaster/storage) "fb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "fc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 120; - frequency = 1450; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/medical/research{ - name = "Research Division" - }) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) "fd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ +/obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 2; - external_pressure_bound = 140; - frequency = 1450; - on = 1; - pressure_checks = 0 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/medical/research{ - name = "Research Division" - }) -"fe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 + on = 1 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) +"fe" = ( +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/quartermaster/storage) "ff" = ( /obj/machinery/firealarm{ dir = 8; @@ -2375,10 +2385,11 @@ /turf/simulated/floor/plasteel, /area/quartermaster/storage) "fg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/computer/cargo, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" }, -/turf/simulated/floor/plasteel, /area/quartermaster/storage) "fh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -2403,19 +2414,21 @@ /turf/simulated/floor/plasteel, /area/security/brig) "fj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"fk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "red"; dir = 4 }, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) -"fk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/central) "fl" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -2479,16 +2492,15 @@ }, /area/security/brig) "fq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, /turf/simulated/floor/plasteel, -/area/quartermaster/storage) +/area/hallway/primary/central) "fr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2567,29 +2579,24 @@ }, /area/quartermaster/storage) "fy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "fz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) "fA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) "fB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2611,39 +2618,35 @@ /turf/simulated/wall, /area/quartermaster/storage) "fD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; +/obj/machinery/autolathe, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"fE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9; pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"fE" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) "fF" = ( /obj/structure/chair{ dir = 4 }, /obj/effect/landmark/start{ - name = "Security Officer" + name = "Cargo Technician" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/area/quartermaster/storage) "fG" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ @@ -2675,35 +2678,27 @@ /turf/simulated/floor/plating, /area/security/brig) "fL" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/trackimp, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/hallway/primary/central) "fM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) "fN" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/obj/machinery/photocopier, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 }, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/simulated/floor/plasteel{ + icon_state = "cautioncorner"; dir = 4 }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/area/quartermaster/storage) "fO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -2800,12 +2795,16 @@ name = "Research Division" }) "fV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/quartermaster/storage) "fW" = ( /obj/effect/spawner/structure/window/reinforced, /turf/simulated/floor/plating, @@ -2814,40 +2813,28 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "fY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"fZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/obj/machinery/door_timer{ - dir = 4; - id = "Cell 2"; - name = "Cell 2"; - pixel_x = 32; - pixel_y = 0 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"fZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "ga" = ( -/obj/structure/closet/crate, -/obj/item/weapon/ore/slag, -/turf/simulated/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "gb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ @@ -2891,20 +2878,17 @@ /turf/simulated/floor/plasteel, /area/security/brig) "gg" = ( -/obj/structure/chair{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Security Officer" +/obj/machinery/airalarm{ + frequency = 1440; + pixel_y = 23 }, /turf/simulated/floor/plasteel, -/area/security/brig) +/area/hallway/primary/central) "gh" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel, /area/security/brig) "gi" = ( @@ -2938,50 +2922,53 @@ /turf/simulated/floor/plasteel, /area/security/brig) "gk" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/storage/lockbox/loyalty, -/turf/simulated/floor/plasteel, -/area/security/brig) -"gl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/obj/machinery/door_timer{ + dir = 4; + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "red"; dir = 4 }, /area/security/brig) -"gm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +"gl" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera/autoname{ + dir = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) +"gm" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/plasteel, +/area/security/brig) "gn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; + dir = 2; + frequency = 1448; on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/airalarm{ + dir = 4; + frequency = 1448; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/security/brig) "go" = ( /turf/simulated/wall/r_wall, /area/medical/research{ @@ -3072,11 +3059,24 @@ }) "gx" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 + dir = 2; + external_pressure_bound = 120; + frequency = 1450; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/medical/research{ + name = "Research Division" + }) "gy" = ( /obj/structure/closet/crate, /obj/machinery/camera/autoname{ @@ -3088,14 +3088,22 @@ }, /area/quartermaster/storage) "gz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 140; + frequency = 1450; + on = 1; + pressure_checks = 0 }, -/turf/simulated/floor/plasteel, -/area/security/brig) +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/medical/research{ + name = "Research Division" + }) "gA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; @@ -3111,19 +3119,22 @@ }, /area/quartermaster/storage) "gC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"gD" = ( /obj/structure/closet/crate, -/obj/item/weapon/ore/glass, +/obj/item/weapon/ore/slag, /turf/simulated/floor/plasteel{ icon_state = "bot" }, /area/quartermaster/storage) -"gD" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/security/brig) "gE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -3138,41 +3149,48 @@ /turf/simulated/floor/plasteel, /area/security/brig) "gG" = ( -/obj/machinery/vending/security, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/security/brig) "gH" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/obj/structure/table, +/obj/item/weapon/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/simulated/floor/plasteel, /area/security/brig) "gI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red"; +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/turf/simulated/floor/plasteel, /area/security/brig) "gJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ +/obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 2; frequency = 1448; on = 1 }, -/obj/machinery/airalarm{ - dir = 4; - frequency = 1448; - pixel_x = -24 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -3385,37 +3403,17 @@ }, /area/quartermaster/storage) "hb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - frequency = 1448; - on = 1 - }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ - icon_state = "grimy" + icon_state = "bot" }, -/area/security/brig) +/area/quartermaster/storage) "hc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - frequency = 1446; - on = 1 +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel{ + icon_state = "bot" }, -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/obj/item/toy/beach_ball/holoball, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" - }, -/area/hallway/primary/central) +/area/quartermaster/storage) "hd" = ( /obj/machinery/atmospherics/pipe/simple{ dir = 2 @@ -3447,43 +3445,48 @@ /turf/simulated/floor/plasteel, /area/security/brig) "hg" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - frequency = 1446; - pixel_y = 23 +/obj/structure/chair{ + dir = 4 }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/obj/effect/landmark/start{ + name = "Security Officer" }, -/area/hallway/primary/central) -"hh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) +"hh" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/security/brig) "hi" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/simulated/floor/plasteel, +/area/security/brig) +"hj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/obj/machinery/door/airlock/glass{ - name = "Central Access" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"hj" = ( -/obj/machinery/door/airlock/glass{ - name = "Central Access" +/turf/simulated/floor/plasteel{ + icon_state = "red"; + dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) "hk" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -3636,8 +3639,8 @@ /turf/simulated/floor/plating, /area/medical/medbay) "hy" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/crate, +/obj/item/weapon/ore/glass, /turf/simulated/floor/plasteel{ icon_state = "bot" }, @@ -3689,39 +3692,32 @@ /turf/simulated/floor/plasteel, /area/security/brig) "hF" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/plasteel{ - icon_state = "bot" +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/area/quartermaster/storage) -"hG" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, /obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - frequency = 1446; + dir = 4; + frequency = 1441; on = 1 }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" - }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"hG" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "hH" = ( -/obj/machinery/airalarm{ - frequency = 1445; - pixel_y = 23 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel, +/area/security/brig) "hI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -3953,11 +3949,16 @@ /turf/simulated/floor/plasteel, /area/security/brig) "ii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1446; + on = 1 + }, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, /area/hallway/primary/central) "ij" = ( /obj/machinery/light, @@ -3965,50 +3966,40 @@ /turf/simulated/floor/plasteel, /area/security/brig) "ik" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1440; + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "il" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1440; - pixel_y = 23 +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) "im" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitehall" + icon_state = "red"; + dir = 4 }, -/area/medical/research{ - name = "Research Division" - }) +/area/security/brig) "in" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitehall" + icon_state = "white" }, /area/medical/research{ name = "Research Division" @@ -4019,17 +4010,13 @@ }, /area/security/brig) "ip" = ( -/obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1440; + on = 1 }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "iq" = ( /obj/machinery/newscaster{ pixel_x = -32; @@ -4281,8 +4268,37 @@ }, /area/hallway/primary/central) "iM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"iN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"iO" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"iP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -4290,32 +4306,6 @@ /area/medical/research{ name = "Research Division" }) -"iN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/wall, -/area/quartermaster/storage) -"iO" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1445; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"iP" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - frequency = 1445; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) "iQ" = ( /obj/machinery/portable_atmospherics/pump, /obj/machinery/atmospherics/components/unary/portables_connector/visible, @@ -4456,19 +4446,12 @@ /turf/simulated/floor/plasteel/shuttle, /area/shuttle/arrival) "je" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "bot" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - frequency = 1441; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/quartermaster/storage) "jf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -4537,10 +4520,20 @@ }, /area/hallway/primary/central) "jn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/machinery/airalarm{ + frequency = 1445; + pixel_y = 23 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, /area/hallway/primary/central) "jo" = ( /obj/machinery/portable_atmospherics/scrubber, @@ -4714,25 +4707,46 @@ name = "Research Division" }) "jF" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"jG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1440; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"jH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ +/obj/machinery/firealarm{ dir = 2; - frequency = 1440; - on = 1 + pixel_y = 24 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"jG" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"jH" = ( +/obj/machinery/camera/autoname, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) "jI" = ( /obj/machinery/atmospherics/pipe/simple{ dir = 5 @@ -4801,15 +4815,12 @@ name = "Research Division" }) "jN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "jO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/wall, @@ -4860,12 +4871,9 @@ }, /area/janitor) "jU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, /turf/simulated/floor/plasteel{ - icon_state = "white" + dir = 9; + icon_state = "whitehall" }, /area/medical/research{ name = "Research Division" @@ -4930,37 +4938,25 @@ name = "Research Division" }) "jZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - frequency = 1447; - on = 1 - }, -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, /area/hallway/primary/central) "ka" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - frequency = 1447; - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" +/turf/simulated/floor/plasteel{ + icon_state = "white" }, -/area/hallway/primary/central) +/area/medical/research{ + name = "Research Division" + }) "kb" = ( /obj/machinery/light{ dir = 1 @@ -5089,14 +5085,20 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "kr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1445; + on = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "ks" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "kt" = ( @@ -5116,10 +5118,7 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "kv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "kw" = ( @@ -5413,13 +5412,15 @@ }, /area/hallway/primary/central) "ld" = ( -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whitehall" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 22; + pixel_y = 0 }, -/area/medical/research{ - name = "Research Division" - }) +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "le" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, @@ -5483,17 +5484,12 @@ }, /area/hallway/secondary/exit) "ll" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - frequency = 1447; +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; on = 1 }, -/turf/simulated/floor/carpet{ - icon_state = "carpetnoconnect" - }, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "lm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5533,8 +5529,13 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "ls" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/hallway/primary/central) "lt" = ( /obj/structure/cable{ d1 = 2; @@ -5759,10 +5760,6 @@ /turf/simulated/floor/plating, /area/hallway/secondary/exit) "lK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "lL" = ( @@ -5831,11 +5828,12 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "lU" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 +/obj/machinery/airalarm{ + dir = 8; + frequency = 1441; + icon_state = "alarm0"; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "lV" = ( @@ -5906,13 +5904,14 @@ /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) "mc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1445; + on = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "md" = ( @@ -6118,15 +6117,11 @@ }, /area/hallway/primary/central) "mx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 22; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/hallway/primary/central) "my" = ( /obj/machinery/conveyor_switch/oneway{ id = "recycler"; @@ -6611,20 +6606,22 @@ name = "Research Division" }) "nq" = ( -/obj/machinery/airalarm{ +/obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; frequency = 1441; - icon_state = "alarm0"; - pixel_x = 24 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "nr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "ns" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -6678,10 +6675,24 @@ "nx" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ dir = 8; - frequency = 1441; + frequency = 1447; on = 1 }, -/turf/simulated/floor/plasteel, +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" + }, /area/hallway/primary/central) "ny" = ( /obj/structure/cable{ @@ -6693,13 +6704,15 @@ /turf/simulated/floor/plating, /area/hallway/secondary/exit) "nz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + frequency = 1447; + pixel_y = 23 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" }, -/area/medical/medbay) +/area/hallway/primary/central) "nA" = ( /turf/simulated/wall, /area/janitor) @@ -6922,14 +6935,12 @@ }, /area/janitor) "oa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "ob" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7334,10 +7345,9 @@ /turf/simulated/floor/plasteel, /area/ai_monitored/storage/eva) "oQ" = ( -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/obj/structure/closet/crate/bin, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "oR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/wall/r_wall, @@ -7442,9 +7452,8 @@ }, /area/medical/medbay) "pd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -7461,12 +7470,10 @@ }, /area/medical/medbay) "pf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 +/turf/simulated/floor/plasteel{ + icon_state = "white" }, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/medical/medbay) "pg" = ( /obj/structure/table, /obj/item/weapon/surgical_drapes, @@ -7510,16 +7517,12 @@ }, /area/hallway/secondary/exit) "pm" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; + dir = 1; on = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" + icon_state = "white" }, /area/medical/medbay) "pn" = ( @@ -7575,11 +7578,12 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "ps" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner"; - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/area/medical/medbay) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "pt" = ( /obj/structure/cable{ d1 = 4; @@ -7753,9 +7757,18 @@ }, /area/shuttle/syndicate) "pL" = ( -/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + frequency = 1442; + pixel_y = 23 + }, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/hallway/primary/central) "pM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -7878,18 +7891,31 @@ }, /area/medical/medbay) "qa" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"qb" = ( -/obj/structure/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - frequency = 1442; + dir = 8; on = 1 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"qb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "qc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -7981,34 +8007,39 @@ }, /area/medical/medbay) "qm" = ( -/obj/machinery/camera/autoname{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /turf/simulated/floor/plasteel{ - icon_state = "white" + icon_state = "whitebluecorner"; + dir = 8 }, /area/medical/medbay) "qo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qp" = ( /obj/structure/chair/comfy/beige{ dir = 1; @@ -8048,24 +8079,15 @@ }, /area/hallway/secondary/exit) "qt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "qu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "whiteblue" }, /area/medical/medbay) @@ -8094,16 +8116,19 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "qy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 }, -/obj/machinery/camera/autoname, -/obj/machinery/airalarm{ - frequency = 1440; - pixel_y = 23 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + frequency = 1442; + on = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/hallway/primary/central) "qz" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ @@ -8116,10 +8141,11 @@ /turf/simulated/floor/plating, /area/medical/medbay) "qA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1442; + on = 1 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "qB" = ( @@ -8138,15 +8164,11 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "qD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/airalarm{ +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; frequency = 1442; - pixel_y = 23 + on = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -8193,21 +8215,16 @@ /turf/simulated/floor/plating, /area/engine/engineering) "qK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 +/obj/machinery/camera/autoname{ + dir = 4 }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/turf/simulated/floor/plasteel{ + icon_state = "white" }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "qL" = ( /obj/structure/cable{ d1 = 4; @@ -8237,30 +8254,22 @@ name = "\improper Job Assignment" }) "qN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"qO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "warning" + dir = 8; + icon_state = "whiteblue" }, -/area/hallway/primary/central) +/area/medical/medbay) +"qO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + frequency = 1440; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "qP" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer, /obj/machinery/airalarm{ @@ -8279,11 +8288,16 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "qR" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner"; +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/area/medical/medbay) +/obj/machinery/camera/autoname, +/obj/machinery/airalarm{ + frequency = 1440; + pixel_y = 23 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) "qS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/machinery/light{ @@ -8322,14 +8336,10 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "qX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - icon_state = "L3"; - dir = 4 - }, -/area/hallway/secondary/exit) +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "qY" = ( /obj/machinery/light{ dir = 1 @@ -8343,9 +8353,18 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "qZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) "ra" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -8477,26 +8496,18 @@ /turf/simulated/floor/plating/airless, /area/engine/engineering) "rn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow"; + dir = 8 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "ro" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner"; + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - frequency = 1442; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "rp" = ( /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/plasteel{ @@ -8557,13 +8568,14 @@ }, /area/hallway/secondary/exit) "rw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1442; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel{ + icon_state = "L3"; + dir = 4 + }, +/area/hallway/secondary/exit) "rx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8619,25 +8631,16 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "rD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plasteel{ - icon_state = "L4"; - dir = 4 - }, -/area/hallway/secondary/exit) -"rE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1440; - on = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) +"rE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "rF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -8728,10 +8731,17 @@ }, /area/hallway/secondary/exit) "rO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L4"; + dir = 4 + }, +/area/hallway/secondary/exit) "rP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -8807,15 +8817,15 @@ }, /area/tcommsat/computer) "rV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) "rW" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central) @@ -8928,13 +8938,23 @@ }, /area/medical/medbay) "si" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 }, -/obj/machinery/light, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/camera/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowcorner"; + dir = 2 + }, +/area/medical/medbay) "sj" = ( /obj/structure/bed/roller, /obj/item/device/radio/intercom{ @@ -8955,13 +8975,13 @@ /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "sl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - frequency = 1440; - on = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/obj/machinery/light, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/hallway/secondary/exit) +/area/hallway/primary/central) "sm" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -8998,11 +9018,11 @@ "ss" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1; - frequency = 1442; + frequency = 1440; on = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/secondary/exit) "st" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 2; @@ -9029,17 +9049,12 @@ }, /area/crew_quarters/bar) "sx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellow"; + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central) +/area/medical/medbay) "sy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9048,28 +9063,10 @@ /turf/simulated/floor/plating, /area/engine/engineering) "sz" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/pill_bottle/epinephrine{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/weapon/storage/pill_bottle/epinephrine{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/simulated/floor/plasteel{ - icon_state = "white" + dir = 4; + icon_state = "whiteblue" }, /area/medical/medbay) "sA" = ( @@ -9084,23 +9081,13 @@ }, /area/crew_quarters/bar) "sB" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + frequency = 1442; + on = 1 }, -/obj/machinery/camera/autoname, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellowcorner"; - dir = 2 - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "sC" = ( /obj/structure/sign/chemistry, /turf/simulated/wall, @@ -9158,13 +9145,26 @@ }, /area/engine/engineering) "sI" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/pill_bottle/epinephrine{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/weapon/storage/pill_bottle/epinephrine{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -9325,38 +9325,31 @@ name = "\improper Job Assignment" }) "sX" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"sY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/heads{ - name = "\improper Job Assignment" - }) -"sZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, /turf/simulated/floor/plating, /area/hallway/primary/central) +"sY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + frequency = 1443; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "ta" = ( /obj/machinery/vending/cigarette{ pixel_x = 0; @@ -9412,13 +9405,12 @@ }, /area/medical/medbay) "tg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - frequency = 1443; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "th" = ( /obj/structure/closet/crate/bin, /obj/structure/noticeboard{ @@ -9465,20 +9457,19 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central) "tn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/crew_quarters/heads{ + name = "\improper Job Assignment" + }) "to" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/turf/simulated/floor/plating, /area/medical/medbay) "tp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ @@ -9531,39 +9522,34 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "tu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellow"; - dir = 8 - }, -/area/medical/medbay) -"tv" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"tw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, +/obj/machinery/light, /turf/simulated/floor/plasteel, /area/crew_quarters/heads{ name = "\improper Job Assignment" }) +"tv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"tw" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) "tx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9684,38 +9670,41 @@ name = "\improper Job Assignment" }) "tK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads{ name = "\improper Job Assignment" }) "tL" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; pixel_y = 0 }, /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - frequency = 1440; + dir = 1; on = 1 }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/heads{ + name = "\improper Job Assignment" + }) +"tM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay) -"tM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - frequency = 1440; - on = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/medbay) "tN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -9723,12 +9712,12 @@ /turf/simulated/wall, /area/hallway/primary/central) "tO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/simulated/floor/plating, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "tP" = ( /obj/structure/transit_tube{ icon_state = "N-S" @@ -9856,10 +9845,13 @@ }, /area/medical/medbay) "ud" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Chemist" + }, /turf/simulated/floor/plasteel{ - icon_state = "whiteyellow"; - dir = 8 + dir = 4; + icon_state = "whiteyellow" }, /area/medical/medbay) "ue" = ( @@ -9885,7 +9877,13 @@ }, /area/crew_quarters/bar) "ug" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -9937,37 +9935,27 @@ name = "\improper Job Assignment" }) "uo" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - listening = 1; - name = "Common Channel"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - frequency = 1442; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"up" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads{ name = "\improper Job Assignment" }) +"up" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "uq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -10006,11 +9994,15 @@ name = "\improper Job Assignment" }) "uu" = ( -/obj/machinery/light, -/turf/simulated/floor/plasteel, -/area/crew_quarters/heads{ - name = "\improper Job Assignment" - }) +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central) "uv" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ @@ -10082,20 +10074,24 @@ }, /area/hallway/primary/central) "uE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1440; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay) "uF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + frequency = 1440; + on = 1 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -10145,9 +10141,17 @@ }, /area/medical/medbay) "uM" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + listening = 1; + name = "Common Channel"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1442; + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -10278,36 +10282,51 @@ }, /area/hallway/primary/central) "vc" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1447; + on = 1 + }, +/turf/simulated/floor/carpet{ + icon_state = "carpetnoconnect" + }, +/area/hallway/primary/central) +"vd" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9; - pixel_y = 0 + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/medical/medbay) -"vd" = ( -/obj/structure/closet/wardrobe/chemistry_white, +"ve" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + frequency = 1443; + icon_state = "alarm0"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whiteyellowcorner" + icon_state = "yellow" }, -/area/medical/medbay) -"ve" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"vf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1444; - on = 1 - }, -/turf/simulated/floor/plasteel, /area/hallway/primary/central) +"vf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/medbay) "vg" = ( /obj/structure/cable{ d1 = 1; @@ -10347,31 +10366,32 @@ }, /area/medical/medbay) "vk" = ( -/obj/machinery/camera/autoname{ - dir = 8 +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 2; + pixel_y = 6 }, -/obj/machinery/light/small{ +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/airalarm{ + frequency = 1445; + pixel_y = 23 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"vl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 +/turf/simulated/floor/plasteel{ + icon_state = "white" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - frequency = 1444; - on = 1 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) -"vl" = ( -/obj/machinery/airalarm{ - dir = 4; - frequency = 1444; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "vm" = ( /turf/simulated/wall/shuttle{ icon_state = "swall12"; @@ -10503,18 +10523,10 @@ /turf/simulated/floor/plating, /area/hallway/primary/central) "vF" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/machinery/airalarm{ +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; frequency = 1445; - pixel_y = 23 + on = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -10540,12 +10552,12 @@ }, /area/medical/medbay) "vJ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/closet/wardrobe/chemistry_white, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "vK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10892,13 +10904,23 @@ /turf/simulated/floor/plating/airless, /area/shuttle/arrival) "wy" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1444; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/engine/engineering) "wz" = ( /obj/effect/landmark{ name = "Observer-Start" @@ -10925,14 +10947,12 @@ }) "wB" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - frequency = 1445; + dir = 8; + frequency = 1443; on = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "wC" = ( /obj/structure/cable{ d1 = 4; @@ -11471,15 +11491,11 @@ }, /area/hallway/primary/central) "xO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - frequency = 1445; - on = 1 - }, /turf/simulated/floor/plasteel{ - icon_state = "white" + dir = 4; + icon_state = "yellow" }, -/area/medical/medbay) +/area/hallway/primary/central) "xP" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ icon_state = "intact"; @@ -11699,15 +11715,11 @@ /turf/simulated/wall, /area/hallway/primary/central) "yo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - frequency = 1443; - icon_state = "alarm0"; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "yellow" }, /area/hallway/primary/central) @@ -11858,19 +11870,10 @@ /turf/simulated/floor/plating, /area/engine/engineering) "yD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/hallway/primary/central) -"yE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/simulated/wall, /area/hallway/primary/central) -"yF" = ( +"yE" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -11881,12 +11884,21 @@ icon_state = "yellow" }, /area/hallway/primary/central) -"yG" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "yellow" +"yF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + frequency = 1443; + on = 1 }, -/area/hallway/primary/central) +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"yG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + frequency = 1443; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) "yH" = ( /obj/structure/window/reinforced{ dir = 8 @@ -12655,8 +12667,8 @@ /area/tcommsat/computer) "Al" = ( /obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - frequency = 1443; + dir = 1; + frequency = 1444; on = 1 }, /turf/simulated/floor/plasteel, @@ -12712,23 +12724,23 @@ }, /area/engine/engineering) "Au" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; frequency = 1444; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 + on = 1 }, -/turf/simulated/floor/engine{ - name = "air floor"; - nitrogen = 10580; - oxygen = 2644 - }, -/area/engine/engineering) +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "Av" = ( /obj/structure/cable{ d1 = 4; @@ -12750,13 +12762,13 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "Ax" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - frequency = 1443; - on = 1 +/obj/machinery/airalarm{ + dir = 4; + frequency = 1444; + pixel_x = -24 }, /turf/simulated/floor/plasteel, -/area/engine/engineering) +/area/hallway/primary/central) "Ay" = ( /obj/machinery/airalarm{ frequency = 1440; @@ -16158,59 +16170,21 @@ /area/shuttle/transport) "IJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ - frequency = 1443; + dir = 1; + frequency = 1445; on = 1 }, -/turf/simulated/floor/plasteel, -/area/engine/engineering) -"IN" = ( -/obj/machinery/light{ - dir = 1 - }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" + icon_state = "white" }, -/area/hallway/primary/central) -"IM" = ( -/turf/simulated/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"IL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/medical/medbay) "IK" = ( -/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" - }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4; on = 1 }, /turf/simulated/floor/plasteel, -/area/hallway/primary/central) +/area/security/brig) (1,1,1) = {" aa @@ -42060,7 +42034,7 @@ kf am kf sk -ls +lK ty lJ uO @@ -42303,20 +42277,20 @@ Hp HF fW kN -ls -ls -ls -ls -ls -ls -ls -ls -ls -pL +lK +lK +lK +lK +lK +lK +lK +lK +lK +qt kf eX kf -ls +lK li fW fW @@ -42560,21 +42534,21 @@ Hp HF fW kN +ll +lK +lK +lK +lK +lK +lK +lK +oa +lK lK -ls -ls -ls -ls -ls -ls -ls -pf -ls -ls ru -ls -ls -ls +lK +lK +lK lk uj fW @@ -42818,8 +42792,8 @@ HF kf kO lm -ls -ls +lK +lK mR nv nv @@ -42830,9 +42804,9 @@ nv nv rv rN -ls -ls -ls +lK +lK +lK uk fW sP @@ -43085,11 +43059,11 @@ mp pO mp mp -qX -rD -ls -ls -ls +rw +rO +lK +lK +lK ul fW sP @@ -43333,7 +43307,7 @@ kf kQ lo lM -mx +ld mT nw nW @@ -43344,8 +43318,8 @@ mq qQ rx rP -sl -ls +ss +lK tA um fW @@ -43601,7 +43575,7 @@ qp pM ry rQ -ls +lK lj fW fW @@ -43833,8 +43807,8 @@ cN cS cS cS -dZ -ex +dT +fy fb fb fb @@ -43858,8 +43832,8 @@ qp pM rz rR -ls -ls +lK +lK ty lJ uO @@ -44091,15 +44065,15 @@ cS dO cS cS -ey +fA cS -fe -fZ -eE -fZ -eE -hy -iN +ey +hb +fc +hb +fc +je +dS kj kS lr @@ -44115,8 +44089,8 @@ pk pM rA rS -ls -ls +lK +lK fW fW of @@ -44348,14 +44322,14 @@ cS cS cS cS -ey +fA cS -fg -ga +ez +gD cS -gC +hy cS -hF +hc bq kk kT @@ -44372,8 +44346,8 @@ qv pM rB rT -ls -ls +lK +lK kf kf am @@ -44605,9 +44579,9 @@ cS cS cS cS -ey +fA cS -fg +ez gy cS ic @@ -44626,7 +44600,7 @@ nA nA nA nA -qy +qR lm rC nv @@ -44862,9 +44836,9 @@ cS dP cS cS -ey +fA cS -fg +ez bq bq bq @@ -44885,7 +44859,7 @@ pT nA pM lm -ls +lK sm sr qM @@ -45119,9 +45093,9 @@ dq cS cS cS -ey +fA cS -fj +gC bq bN bN @@ -45142,7 +45116,7 @@ pU oe qS lm -ls +lK sn sr qL @@ -45375,10 +45349,10 @@ cR cS dO cS -eg -ez -eE -fk +fd +fz +fc +dZ bq bN bx @@ -45398,13 +45372,13 @@ po po oT pO -qZ -rE +rD +qO sn nt tE -tw -up +uo +tL vt bS bS @@ -45631,19 +45605,19 @@ bK cS cS dQ -dU -dU +fe +fe fB cS -fg +ez bq bN bx -hc -hG +cB +ii bx -jZ -ll +nx +vc bx bx mu @@ -45656,11 +45630,11 @@ pW nA pM lm -ls +lK sn nt tF -tK +tn un sr wb @@ -45892,14 +45866,14 @@ bJ bq fC ft -fq +ew bq bN bx -hg +du ji bx -ka +nz ji bx lR @@ -45913,12 +45887,12 @@ oe oe qT lm -ls +lK so sR tG -tK -uu +tn +tu sr wc bx @@ -46145,11 +46119,11 @@ bx bN bN bq -dV +eD ff -eA -eF -fg +fD +fa +ez bq bN bx @@ -46168,9 +46142,9 @@ bx bN bN bx -qA -rn -rO +ps +rE +qX sp sS tH @@ -46402,11 +46376,11 @@ bx bN dt bq -dW +eE cS -ey +fA cS -fg +ez bq bN bx @@ -46427,7 +46401,7 @@ bS qx qU rF -rV +rW sq sT tI @@ -46457,7 +46431,7 @@ Bp sH za za -Ax +yF Ck Cu yB @@ -46659,17 +46633,17 @@ bx bN iE dR -dX +eF fb -eB +fE cS -fg +ez bq bN bx iI iF -iO +kr jl kZ bx @@ -46684,7 +46658,7 @@ bN bx fX cX -fz +ks sr sU tJ @@ -46916,11 +46890,11 @@ cx cT dv bq -dY -ew -eC eG -fk +fg +fF +fN +dZ bq bN bx @@ -46941,10 +46915,10 @@ dt bx qV cX -fz +ks sr sV -sY +tK ut uW sq @@ -47177,7 +47151,7 @@ bQ bQ fG bQ -fy +fV bq bN bx @@ -47197,8 +47171,8 @@ pr lv bx fX -ro -rW +qy +rV sr sW sr @@ -47429,18 +47403,18 @@ bO bO cV dx -IM -IM -IM +eI +eI +eI fH fX -fz +ks bx bN id iL kn -iP +mc oo lc bx @@ -47455,14 +47429,14 @@ lu bx qW rG -cZ +fj qx -sx -sZ -sZ -sZ -sZ -sZ +sX +uu +uu +uu +uu +uu wF nD bT @@ -47686,17 +47660,17 @@ cf bN cU dy -IN +dV el el fI fX -fz +ks bx bx bx bx -hH +jn jm og AR @@ -47943,12 +47917,12 @@ ah bx cW dw -cB +dW eK eK fJ fX -fz +ks bx hB ie @@ -47984,7 +47958,7 @@ bx tN yn yy -yE +yD yX zj zx @@ -48200,26 +48174,26 @@ bo cy cX dz -cY -cY -cY -cY -cY -fA -cY -gm -cY -hh +eL +eL +eL +eL +eL +dX +eL +fY +eL +iM kp -cY -kr -cY -lU -mc -cY -cY -cY -nr +eL +dX +eL +ls +jZ +eL +eL +eL +mx fX fX fX @@ -48227,7 +48201,7 @@ fX lY fX fX -hh +iM fX iT fX @@ -48235,15 +48209,15 @@ fX fX fX fX -vJ +tO fX xN -fz -yD -mc -yF -cY -nr +ks +yo +jZ +yE +eL +mx zy zX vL @@ -48455,28 +48429,28 @@ bP ch bW cz -IK +cY dA -cZ +fj eM -cZ -cZ -cZ -fD -cZ -gn -cZ -hi +fj +fj +fj +dY +fj +fZ +fj +iN dA -je -fD -cZ -cZ +hF +dY +fj +fj lZ fX fX fX -nx +nq fX fX fX @@ -48484,9 +48458,9 @@ fX lY fX fX -hj +iO fX -tg +sY fX fX fX @@ -48495,12 +48469,12 @@ fX fX fX fX -fz +ks jq lY fX fX -Al +wB zz vh AV @@ -48712,25 +48686,25 @@ bE cg bC cA -IL +cZ dB -du +fk eN -du -eD -eI -fE +fk +ga +dU +ex he -eD -eD -hj +ga +ga +iO jp -jn -ks +fL +kv fX fX lY -nq +lU fX fX fX @@ -48741,21 +48715,21 @@ fX lY fX fX -hj +iO fX -tn -eD -eD -eD -eD -eD -wy -eD -yo -ks +sZ +ga +ga +ga +ga +ga +up +ga +ve +kv yp lY -yG +xO fX fX zA @@ -48981,9 +48955,9 @@ cj hC if bx -ii -jF -kv +eC +hG +jN bx bx lX @@ -49240,7 +49214,7 @@ cj cj jq fX -fz +ks bx cT ma @@ -49252,7 +49226,7 @@ bS nN bN bx -qD +pL fX fX sv @@ -49497,7 +49471,7 @@ ig cj jq fX -fz +ks bx cU mb @@ -49766,8 +49740,8 @@ mb pu cx bx -qK -rw +qm +qA fX su tc @@ -50004,10 +49978,10 @@ eS fn de ge -fF -gg +gG +hg de -gD +gl cj jq fX @@ -50023,7 +49997,7 @@ oN oN pY mb -qN +qo fX fX su @@ -50261,14 +50235,14 @@ eS de de gf -fL -gh -gx +gH +hh +eB ij cj jq fX -fz +ks bx cU mb @@ -50280,9 +50254,9 @@ ib pv jW ke -qO -cY -cY +qZ +eL +eL qi tT tT @@ -50513,19 +50487,19 @@ ck cC dd dF -dS +IK eS de de -eL -fN -gk +gf +gI +hi de -gG +gm cj jq fX -fz +ks bx cU mb @@ -50569,7 +50543,7 @@ Bx tx za za -IJ +yG Cm Cy yB @@ -50770,19 +50744,19 @@ ck cD de de -dT +eg eT fo fo -fa -fV +gh +eA fo fo -gH +il cj dz -jG -fz +ik +ks bx cU mb @@ -50795,8 +50769,8 @@ ns jX kg rb -eD -rV +ga +rW qj tU tU @@ -51032,14 +51006,14 @@ eU fp fO gi -fY -gl -gz -gI +gk +hj +hH +im cj jq fX -fz +ks bx cU mb @@ -51053,7 +51027,7 @@ qc mb rc fX -fz +ks su th tW @@ -51296,7 +51270,7 @@ fh cj jr fX -fz +ks bx cU mb @@ -51310,7 +51284,7 @@ qd qB rd fX -fz +ks su su tV @@ -51551,9 +51525,9 @@ fr de ge cj -ik +fq fX -fz +ks bx cU mb @@ -51567,7 +51541,7 @@ qe bx re fX -fz +ks su sM se @@ -51810,7 +51784,7 @@ gj cj jq fX -fz +ks bx cU bN @@ -51824,7 +51798,7 @@ bx bx jq fX -fz +ks su sA tY @@ -52065,7 +52039,7 @@ cj cj cj cj -il +gg fX kt bx @@ -52320,11 +52294,11 @@ ck gK hl hK -gJ +gn fK js fX -fz +ks bx lu bN @@ -52339,14 +52313,14 @@ bx jr fX rX -eD +ga xv -eD -eD +ga +ga yN -eD -vf -vl +ga +Al +Ax id bN bN @@ -52581,7 +52555,7 @@ io hz jt fX -fz +ks bx lv bN @@ -52592,10 +52566,10 @@ wo lR pA bx -qa +oQ jq fX -fz +ks fX el fX @@ -52834,11 +52808,11 @@ ck gL hm hL -hb +gJ fM ju -eD -ks +ga +kv go go go @@ -52849,11 +52823,11 @@ nP oS nP nP -qb +qD rf fX rX -ss +sB tl fX uC @@ -53095,7 +53069,7 @@ ck ck jq fX -fz +ks go lw md @@ -53109,7 +53083,7 @@ nP qE jq fX -fz +ks fX tm fX @@ -53352,28 +53326,28 @@ iq iT jq fX -fz +ks go lw me me go nR -nz -oa -oQ +pd +pm +pf nP hC dz -cY -kr -cY +eL +dX +eL yv yL -cY +eL zb zQ -vk +Au wO bx aa @@ -53384,7 +53358,7 @@ aa aa zc zo -Au +wy zo zc aa @@ -53608,8 +53582,8 @@ fX fX fX jq -jH -ks +ip +kv go lw me @@ -53617,13 +53591,13 @@ me go nS or -oQ +pf pC nP nP jq fX -fz +ks bx bx bx @@ -53874,13 +53848,13 @@ mf go nT or -oQ -oQ +pf +pf qf qF -ii -jF -si +eC +hG +sl bx am aa @@ -54131,8 +54105,8 @@ ly go go or -pd -oQ +nr +pf qg nP rg @@ -54398,8 +54372,8 @@ rZ qw hx ua -tL uE +vd uU hx aa @@ -54650,12 +54624,12 @@ pE kC pZ ri -oQ -oQ +pf +pf qw qz ub -oQ +pf or ti hx @@ -55167,9 +55141,9 @@ rk rK sb nP -sz -oQ -oQ +sI +pf +pf or vI hx @@ -55421,14 +55395,14 @@ pG le hx rl -oQ +pf sc nP -sB -to -tM +si +ud uF -vd +vf +vJ nP nP hx @@ -55683,7 +55657,7 @@ hx nP tq rL -tO +to tf nP nP @@ -55933,20 +55907,20 @@ oy oZ pD pD -qm +qK pD pD ql sE tr -tu -ud +rn +sx te -ve +tg oG wQ -wB -oQ +vF +pf ya hx aa @@ -56190,20 +56164,20 @@ oz pa pH pH -qn +oX pa pa -qn +oX pH pa pa -qn +oX vi -oQ +pf ts wR -oQ -oQ +pf +pf yb hx aa @@ -56434,9 +56408,9 @@ ht cp iy bU -im +jF cp -ld +jU bU lF kG @@ -56446,22 +56420,22 @@ kx oA pb or -pm -qo -qR +qa +qu +ro rM oU sG qG -tv ug +sz vj pD oO wS -xO -oQ -oQ +IJ +pf +pf hx aa aa @@ -56693,7 +56667,7 @@ iz bU jE cp -ld +jU bU lG mi @@ -56704,7 +56678,7 @@ nP nP ou nP -qt +qb nP nP nP @@ -56715,7 +56689,7 @@ sD kL nP nP -vF +vk xp xH xl @@ -56948,9 +56922,9 @@ hw hX iA bU -in +jG cp -ld +jU bU lH lC @@ -56960,13 +56934,13 @@ kx oB pc pI -ps -qu +qn +qN rp nP sf rH -qu +qN nP tp uJ @@ -57205,7 +57179,7 @@ bU bU bU bU -ip +jH cp kH bU @@ -57215,9 +57189,9 @@ mM mj kx oq -nz +pd pJ -oQ +pf oV rq nP @@ -57456,14 +57430,14 @@ bV bV bV bU -fc +gx gW bV cp cp cp -iM -jN +ka +in kI lf gw @@ -57480,10 +57454,10 @@ rr nP sh sK -sI +tv nP uL -uM +vl vP nP am @@ -57729,15 +57703,15 @@ mO ml go oE -oQ -oQ -oQ -oQ +pf +pf +pf +pf rs nP qP sL -sX +tw nP tD or @@ -57970,14 +57944,14 @@ aa aa am bU -fd +gz gY bV hQ iC cp jJ -jU +iP cp es bU @@ -57987,17 +57961,17 @@ no go oF pg -oQ +pf qr -oQ +pf rt nP sj st rZ nP -uo -vc +uM +tM vR nP aa From 4cbe9306aec253157b1ea9584f9eb5be0c790a01 Mon Sep 17 00:00:00 2001 From: bgobandit Date: Mon, 7 Mar 2016 07:16:21 -0500 Subject: [PATCH 11/77] ishuman --- code/modules/shuttle/shuttle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index cf4ff2e8faa..bfe72e9e3f3 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -455,7 +455,7 @@ for(var/turf/T in L) for(var/atom/movable/AM in T) if(ismob(AM)) - if(istype(AM, /mob/living/carbon/human)) + if(ishuman(AM)) var/mob/living/M = AM M.Paralyse(10) M.apply_damage(60, BRUTE, "chest") From 4e821d86577078c5a9f6a2ad889934ba3614493a Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Mon, 7 Mar 2016 18:03:25 +0000 Subject: [PATCH 12/77] Atoms may now have many mobs buckled to them, as opposed to one, this is controlled by the new max_buckled_mobs var on atoms, defaults to 1 as to not change any current functionality --- code/game/atoms_movable.dm | 24 +++---- code/game/gamemodes/cult/runes.dm | 2 +- code/game/gamemodes/cult/talisman.dm | 2 +- .../miniantags/abduction/machinery/pad.dm | 2 +- .../shadowling/shadowling_abilities.dm | 6 +- code/game/machinery/machinery.dm | 4 +- .../mecha/equipment/tools/medical_tools.dm | 4 +- code/game/mecha/mecha.dm | 8 +-- code/game/objects/buckling.dm | 43 ++++++++---- .../items/weapons/implants/implantchair.dm | 4 +- code/game/objects/items/weapons/scrolls.dm | 2 +- code/game/objects/items/weapons/tools.dm | 2 +- .../structures/beds_chairs/alien_nest.dm | 66 ++++++++++--------- .../objects/structures/beds_chairs/bed.dm | 14 ++-- .../objects/structures/beds_chairs/chair.dm | 28 ++++---- .../structures/crates_lockers/closets.dm | 4 +- .../crates_lockers/closets/statue.dm | 2 +- code/game/objects/structures/electricchair.dm | 12 ++-- code/game/objects/structures/kitchen_spike.dm | 14 ++-- code/game/objects/structures/plasticflaps.dm | 2 +- code/game/turfs/turf.dm | 2 +- .../atmospherics/machinery/atmosmachinery.dm | 4 +- .../machinery/pipes/heat_exchange/he_pipes.dm | 16 +++-- .../modules/clothing/spacesuits/chronosuit.dm | 2 +- code/modules/events/spacevine.dm | 8 +-- .../food&drinks/kitchen machinery/gibber.dm | 4 +- .../kitchen machinery/monkeyrecycler.dm | 2 +- .../kitchen machinery/processor.dm | 2 +- code/modules/mob/living/bloodcrawl.dm | 6 +- code/modules/mob/living/carbon/carbon.dm | 4 +- code/modules/mob/living/carbon/inventory.dm | 2 +- code/modules/mob/living/death.dm | 4 +- code/modules/mob/living/living.dm | 2 +- code/modules/mob/living/living_defense.dm | 2 +- .../mob/living/simple_animal/bot/mulebot.dm | 6 +- .../mob/living/simple_animal/parrot.dm | 6 +- .../mob/living/simple_animal/slime/life.dm | 4 +- .../mob/living/simple_animal/slime/powers.dm | 6 +- code/modules/mob/living/ventcrawling.dm | 4 +- code/modules/mob/mob.dm | 2 +- code/modules/mob/mob_movement.dm | 2 +- code/modules/recycling/disposal-unit.dm | 2 +- .../spells/spell_types/area_teleport.dm | 2 +- .../spells/spell_types/ethereal_jaunt.dm | 6 +- .../spells/spell_types/turf_teleport.dm | 6 +- code/modules/vehicles/atv.dm | 2 +- code/modules/vehicles/pimpin_ride.dm | 30 +++++---- code/modules/vehicles/speedbike.dm | 34 +++++----- code/modules/vehicles/vehicle.dm | 32 +++++---- 49 files changed, 246 insertions(+), 203 deletions(-) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index a7702aca94a..afde7954673 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -61,7 +61,7 @@ if(loc == newloc) //Remove this check and people can accelerate. Not opening that can of worms just yet. newtonian_move(last_move) - if(. && buckled_mob && !handle_buckled_mob_movement(loc,direct)) //movement failed due to buckled mob + if(. && buckled_mobs.len && !handle_buckled_mob_movement(loc,direct)) //movement failed due to buckled mob(s) . = 0 //Called after a successful Move(). By this point, we've already moved @@ -125,9 +125,9 @@ if(pulledby) pulledby.stop_pulling() if(buckled) - buckled.unbuckle_mob() - if(buckled_mob) - unbuckle_mob(force=1) + buckled.unbuckle_mob(src,force=1) + if(buckled_mobs.len) + unbuckle_all_mobs(force=1) . = ..() if(client) reset_perspective(destination) @@ -308,16 +308,18 @@ return /atom/movable/proc/handle_buckled_mob_movement(newloc,direct) - if(!buckled_mob.Move(newloc, direct)) - loc = buckled_mob.loc - last_move = buckled_mob.last_move - inertia_dir = last_move - buckled_mob.inertia_dir = last_move - return 0 + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + if(!buckled_mob.Move(newloc, direct)) + loc = buckled_mob.loc + last_move = buckled_mob.last_move + inertia_dir = last_move + buckled_mob.inertia_dir = last_move + return 0 return 1 /atom/movable/CanPass(atom/movable/mover, turf/target, height=1.5) - if(buckled_mob == mover) + if(mover in buckled_mobs) return 1 return ..() diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm index 9d195b54115..86ae480e439 100644 --- a/code/game/gamemodes/cult/runes.dm +++ b/code/game/gamemodes/cult/runes.dm @@ -802,7 +802,7 @@ var/list/teleport_other_runes = list() log_game("Summon Cultist rune failed - target in away mission") return if(cultist_to_summon.buckled) - cultist_to_summon.buckled.unbuckle_mob() + cultist_to_summon.buckled.unbuckle_mob(cultist_to_summon,force=1) cultist_to_summon.visible_message("[cultist_to_summon] suddenly disappears in a flash of red light!", \ "Overwhelming vertigo consumes you as you are hurled through the air!") visible_message("A foggy shape materializes atop [src] and solidifes into [cultist_to_summon]!") diff --git a/code/game/gamemodes/cult/talisman.dm b/code/game/gamemodes/cult/talisman.dm index be761c693e6..022a4869d40 100644 --- a/code/game/gamemodes/cult/talisman.dm +++ b/code/game/gamemodes/cult/talisman.dm @@ -147,7 +147,7 @@ Rite of Disorientation user.visible_message("Dust flows from [user]'s hand, and they disappear in a flash of red light!", \ "You speak the words of the talisman and find yourself somewhere else!") if(user.buckled) - user.buckled.unbuckle_mob() + user.buckled.unbuckle_mob(user,force=1) user.loc = get_turf(chosen_rune) /obj/item/weapon/paper/talisman/teleport/New() diff --git a/code/game/gamemodes/miniantags/abduction/machinery/pad.dm b/code/game/gamemodes/miniantags/abduction/machinery/pad.dm index c7693ffbdc0..83abba6a24e 100644 --- a/code/game/gamemodes/miniantags/abduction/machinery/pad.dm +++ b/code/game/gamemodes/miniantags/abduction/machinery/pad.dm @@ -21,7 +21,7 @@ return if(target && target.buckled) - target.buckled.unbuckle_mob() + target.buckled.unbuckle_mob(target) //Antur says this teleport -shouldn't- force unbuckle, and it's his codebabby soo~ var/list/tempL = L var/attempt = null diff --git a/code/game/gamemodes/shadowling/shadowling_abilities.dm b/code/game/gamemodes/shadowling/shadowling_abilities.dm index f7d7505c2e2..04dbbf97357 100644 --- a/code/game/gamemodes/shadowling/shadowling_abilities.dm +++ b/code/game/gamemodes/shadowling/shadowling_abilities.dm @@ -127,12 +127,12 @@ var/turf/T = get_turf(user) user.forceMove(T) //to properly move the mob out of a potential container if(user.buckled) - user.buckled.unbuckle_mob() + user.buckled.unbuckle_mob(user,force=1) if(user.pulledby) user.pulledby.stop_pulling() user.stop_pulling() - if(user.buckled_mob) - user.unbuckle_mob(force=1) + if(user.buckled_mobs.len) + user.unbuckle_all_mobs(force=1) sleep(40) //4 seconds if(!qdeleted(user)) user.visible_message("[user] suddenly manifests!", "The rift's pressure forces you back to corporeality.") diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index 417bd465fd5..fb6dcbc7594 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -173,11 +173,11 @@ Class Procs: density = 1 if(!target) for(var/mob/living/carbon/C in loc) - if(C.buckled || C.buckled_mob) + if(C.buckled || C.buckled_mobs.len) continue else target = C - if(target && !target.buckled && !target.buckled_mob) + if(target && !target.buckled && !target.buckled_mobs.len) occupant = target target.forceMove(src) updateUsrDialog() diff --git a/code/game/mecha/equipment/tools/medical_tools.dm b/code/game/mecha/equipment/tools/medical_tools.dm index 9d4a6c7937b..bff20fa3843 100644 --- a/code/game/mecha/equipment/tools/medical_tools.dm +++ b/code/game/mecha/equipment/tools/medical_tools.dm @@ -78,8 +78,8 @@ if(target.buckled) occupant_message("[target] will not fit into the sleeper because they are buckled to [target.buckled]!") return - if(target.buckled_mob) - occupant_message("[target] will not fit into the sleeper because [target.buckled_mob] is attached to it!") + if(target.buckled_mobs.len) + occupant_message("[target] will not fit into the sleeper because of the creatures attached to it!") return if(patient) occupant_message("The sleeper is already occupied!") diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 6881748241f..cdaab09f9e9 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -792,8 +792,8 @@ user << "You are currently buckled and cannot move." log_append_to_last("Permission denied.") return - if(user.buckled_mob) //mob attached to us - user << "You can't enter the exosuit with [user.buckled_mob] attached to you!" + if(user.buckled_mobs.len) //mob attached to us + user << "You can't enter the exosuit with other creatures attached to you!" return visible_message("[user] starts to climb into [src.name].") @@ -805,8 +805,8 @@ user << "[src.occupant] was faster! Try better next time, loser." else if(user.buckled) user << "You can't enter the exosuit while buckled." - else if(user.buckled_mob) - user << "You can't enter the exosuit with [user.buckled_mob] attached to you." + else if(user.buckled_mobs.len) + user << "You can't enter the exosuit with other creatures attached to you!" else moved_inside(user) else diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm index ca2fc0c5beb..6dc496a8119 100644 --- a/code/game/objects/buckling.dm +++ b/code/game/objects/buckling.dm @@ -4,31 +4,40 @@ var/can_buckle = 0 var/buckle_lying = -1 //bed-like behaviour, forces mob.lying = buckle_lying if != -1 var/buckle_requires_restraints = 0 //require people to be handcuffed before being able to buckle. eg: pipes - var/mob/living/buckled_mob = null + var/list/mob/living/buckled_mobs = list() + var/max_buckled_mobs = 1 + +//todo: +// * check all unbuckle_mob() calls have a mob argument - CHECK +// * check all user_unbuckle_mob() calls have a mob argument - CHECK //Interaction /atom/movable/attack_hand(mob/living/user) . = ..() - if(can_buckle && buckled_mob) - if(user_unbuckle_mob(user)) - return 1 + if(can_buckle && buckled_mobs.len) + if(buckled_mobs.len > 1) + var/unbuckled = input(user, "Who do you wish to unbuckle?","Unbuckle Who?") as null|mob in buckled_mobs + if(user_unbuckle_mob(unbuckled,user)) + return 1 + else + if(user_unbuckle_mob(buckled_mobs[1],user)) + return 1 /atom/movable/MouseDrop_T(mob/living/M, mob/living/user) . = ..() - if(can_buckle && istype(M) && !buckled_mob) - if(user_buckle_mob(M, user)) - return 1 + if(user_buckle_mob(M, user)) + return 1 //Cleanup /atom/movable/Destroy() . = ..() - unbuckle_mob(force=1) + unbuckle_all_mobs(force=1) //procs that handle the actual buckling and unbuckling /atom/movable/proc/buckle_mob(mob/living/M, force = 0) - if((!can_buckle && !force) || !istype(M) || (M.loc != loc) || M.buckled || M.buckled_mob || (buckle_requires_restraints && !M.restrained()) || M == src) + if((!can_buckle && !force) || !istype(M) || (M.loc != loc) || M.buckled || (M.buckled_mobs.len >= max_buckled_mobs) || (buckle_requires_restraints && !M.restrained()) || M == src) return 0 if(!M.can_buckle() && !force) if(M == usr) @@ -39,7 +48,7 @@ M.buckled = src M.dir = dir - buckled_mob = M + buckled_mobs |= M M.update_canmove() post_buckle_mob(M) M.throw_alert("buckled", /obj/screen/alert/restrained/buckled, new_master = src) @@ -53,17 +62,20 @@ M.adjust_fire_stacks(1) M.IgniteMob() -/atom/movable/proc/unbuckle_mob(force=0) +/atom/movable/proc/unbuckle_mob(mob/living/buckled_mob, force=0) if(buckled_mob && buckled_mob.buckled == src && (buckled_mob.can_unbuckle() || force)) . = buckled_mob buckled_mob.buckled = null buckled_mob.anchored = initial(buckled_mob.anchored) buckled_mob.update_canmove() buckled_mob.clear_alert("buckled") - buckled_mob = null + buckled_mobs -= buckled_mob post_buckle_mob(.) +/atom/movable/proc/unbuckle_all_mobs(force=0) + for(var/m in buckled_mobs) + unbuckle_mob(m, force) //Handle any extras after buckling/unbuckling //Called on buckle_mob() and unbuckle_mob() @@ -92,8 +104,11 @@ return 1 -/atom/movable/proc/user_unbuckle_mob(mob/user) - var/mob/living/M = unbuckle_mob() +//Edit so I can see all the calls +/atom/movable/proc/user_unbuckle_mob(mob/living/buckled_mob, mob/user) + if(!buckled_mob && buckled_mobs.len) + buckled_mob = buckled_mobs[1] + var/mob/living/M = unbuckle_mob(buckled_mob) if(M) if(M != user) M.visible_message(\ diff --git a/code/game/objects/items/weapons/implants/implantchair.dm b/code/game/objects/items/weapons/implants/implantchair.dm index a3401a2491f..6d49f959029 100644 --- a/code/game/objects/items/weapons/implants/implantchair.dm +++ b/code/game/objects/items/weapons/implants/implantchair.dm @@ -79,8 +79,8 @@ if(!ismob(G.affecting)) return var/mob/M = G.affecting - if(M.buckled_mob) - usr << "[M] will not fit into [src] because they have a slime latched onto their head." + if(M.buckled_mobs.len) + usr << "[M] will not fit into [src] because they have a creature on them!" return if(put_mob(M)) qdel(G) diff --git a/code/game/objects/items/weapons/scrolls.dm b/code/game/objects/items/weapons/scrolls.dm index 26438764d1b..3a7daa4d10d 100644 --- a/code/game/objects/items/weapons/scrolls.dm +++ b/code/game/objects/items/weapons/scrolls.dm @@ -80,7 +80,7 @@ return if(user && user.buckled) - user.buckled.unbuckle_mob() + user.buckled.unbuckle_mob(user, force=1) var/list/tempL = L.Copy() var/attempt = null diff --git a/code/game/objects/items/weapons/tools.dm b/code/game/objects/items/weapons/tools.dm index 3c546350790..3c5589b9f7a 100644 --- a/code/game/objects/items/weapons/tools.dm +++ b/code/game/objects/items/weapons/tools.dm @@ -148,7 +148,7 @@ qdel(C.handcuffed) C.handcuffed = null if(C.buckled && C.buckled.buckle_requires_restraints) - C.buckled.unbuckle_mob() + C.buckled.unbuckle_mob(C) C.update_handcuffed() return else diff --git a/code/game/objects/structures/beds_chairs/alien_nest.dm b/code/game/objects/structures/beds_chairs/alien_nest.dm index 6e1bb603230..56f0ac6b166 100644 --- a/code/game/objects/structures/beds_chairs/alien_nest.dm +++ b/code/game/objects/structures/beds_chairs/alien_nest.dm @@ -16,38 +16,39 @@ nest_overlay = image('icons/mob/alien.dmi', "nestoverlay", layer=MOB_LAYER - 0.2) return ..() -/obj/structure/bed/nest/user_unbuckle_mob(mob/living/user) - if(buckled_mob && buckled_mob.buckled == src) - var/mob/living/M = buckled_mob +/obj/structure/bed/nest/user_unbuckle_mob(mob/living/buckled_mob, mob/living/user) + if(buckled_mobs.len) + for(var/buck in buckled_mobs) //breaking a nest releases all the buckled mobs, because the nest isn't holding them down anymore + var/mob/living/M = buck - if(user.getorgan(/obj/item/organ/internal/alien/plasmavessel)) - unbuckle_mob() + if(user.getorgan(/obj/item/organ/internal/alien/plasmavessel)) + unbuckle_mob(M) + add_fingerprint(user) + return + + if(M != user) + M.visible_message(\ + "[user.name] pulls [M.name] free from the sticky nest!",\ + "[user.name] pulls you free from the gelatinous resin.",\ + "You hear squelching...") + else + M.visible_message(\ + "[M.name] struggles to break free from the gelatinous resin!",\ + "You struggle to break free from the gelatinous resin... (Stay still for two minutes.)",\ + "You hear squelching...") + if(!do_after(M, 1200, target = src)) + if(M && M.buckled) + M << "You fail to unbuckle yourself!" + return + if(!M.buckled) + return + M.visible_message(\ + "[M.name] breaks free from the gelatinous resin!",\ + "You break free from the gelatinous resin!",\ + "You hear squelching...") + + unbuckle_mob(M) add_fingerprint(user) - return - - if(M != user) - M.visible_message(\ - "[user.name] pulls [M.name] free from the sticky nest!",\ - "[user.name] pulls you free from the gelatinous resin.",\ - "You hear squelching...") - else - M.visible_message(\ - "[M.name] struggles to break free from the gelatinous resin!",\ - "You struggle to break free from the gelatinous resin... (Stay still for two minutes.)",\ - "You hear squelching...") - if(!do_after(M, 1200, target = src)) - if(M && M.buckled) - M << "You fail to unbuckle yourself!" - return - if(!M.buckled) - return - M.visible_message(\ - "[M.name] breaks free from the gelatinous resin!",\ - "You break free from the gelatinous resin!",\ - "You hear squelching...") - - unbuckle_mob() - add_fingerprint(user) /obj/structure/bed/nest/user_buckle_mob(mob/living/M, mob/living/user) if ( !ismob(M) || (get_dist(src, user) > 1) || (M.loc != src.loc) || user.incapacitated() || M.buckled ) @@ -58,7 +59,8 @@ if(!user.getorgan(/obj/item/organ/internal/alien/plasmavessel)) return - unbuckle_mob() + if(buckled_mobs.len) + unbuckle_all_mobs() if(buckle_mob(M)) M.visible_message(\ @@ -67,7 +69,7 @@ "You hear squelching...") /obj/structure/bed/nest/post_buckle_mob(mob/living/M) - if(M == buckled_mob) + if(M in buckled_mobs) M.pixel_y = 0 M.pixel_x = initial(M.pixel_x) + 2 M.layer = MOB_LAYER - 0.3 diff --git a/code/game/objects/structures/beds_chairs/bed.dm b/code/game/objects/structures/beds_chairs/bed.dm index d94cd078c99..fc16964286d 100644 --- a/code/game/objects/structures/beds_chairs/bed.dm +++ b/code/game/objects/structures/beds_chairs/bed.dm @@ -66,15 +66,15 @@ . = ..() if(over_object == usr && Adjacent(usr)) if(!ishuman(usr)) - return - if(buckled_mob) + return 0 + if(buckled_mobs.len) return 0 usr.visible_message("[usr] collapses \the [src.name].", "You collapse \the [src.name].") new foldabletype(get_turf(src)) qdel(src) /obj/structure/bed/roller/post_buckle_mob(mob/living/M) - if(M == buckled_mob) + if(M in buckled_mobs) density = 1 icon_state = "up" M.pixel_y = initial(M.pixel_y) @@ -129,8 +129,12 @@ return var/obj/structure/bed/roller/R = target - if(R.buckled_mob) - R.user_unbuckle_mob(user) + if(R.buckled_mobs.len) + if(R.buckled_mobs.len > 1) + R.unbuckle_all_mobs() + user.visible_message("[user] unbuckles all creatures from [R].") + else + R.user_unbuckle_mob(R.buckled_mobs[1],user) loaded = target target.loc = src diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index 2b3d6e96433..a1e81d81158 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -62,20 +62,22 @@ qdel(src) /obj/structure/chair/attack_tk(mob/user) - if(buckled_mob) + if(buckled_mobs.len) ..() else rotate() return /obj/structure/chair/proc/handle_rotation(direction) - if(buckled_mob) - buckled_mob.buckled = null //Temporary, so Move() succeeds. - if(!direction || !buckled_mob.Move(get_step(src, direction), direction)) - buckled_mob.buckled = src - dir = buckled_mob.dir - return 0 - buckled_mob.buckled = src //Restoring + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.buckled = null //Temporary, so Move() succeeds. + if(!direction || !buckled_mob.Move(get_step(src, direction), direction)) + buckled_mob.buckled = src + dir = buckled_mob.dir + return 0 + buckled_mob.buckled = src //Restoring handle_layer() return 1 @@ -88,8 +90,10 @@ /obj/structure/chair/proc/spin() dir = turn(dir, 90) handle_layer() - if(buckled_mob) - buckled_mob.dir = dir + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.dir = dir /obj/structure/chair/verb/rotate() set name = "Rotate Chair" @@ -151,7 +155,7 @@ return ..() /obj/structure/chair/comfy/post_buckle_mob(mob/living/M) - if(buckled_mob) + if(buckled_mobs.len) overlays += armrest else overlays -= armrest @@ -196,7 +200,7 @@ /obj/structure/chair/MouseDrop(over_object, src_location, over_location) . = ..() if(over_object == usr && Adjacent(usr)) - if(!item_chair || !ishuman(usr) || buckled_mob) + if(!item_chair || !ishuman(usr) || buckled_mobs.len) return usr.visible_message("[usr] grabs \the [src.name].", "You grab \the [src.name].") var/C = new item_chair(loc) diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 74b9a5f05e5..cbfa33903e8 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -126,7 +126,7 @@ if(!isliving(AM)) //let's not put ghosts or camera mobs inside closets... return var/mob/living/L = AM - if(L.buckled || L.buckled_mob) + if(L.buckled || L.buckled_mobs.len) return if(L.mob_size > MOB_SIZE_TINY) // Tiny mobs are treated as items. if(horizontal && !L.lying) @@ -145,7 +145,7 @@ return if(!allow_dense && AM.density) return - if(AM.anchored || AM.buckled_mob || (AM.flags & NODROP)) + if(AM.anchored || AM.buckled_mobs.len || (AM.flags & NODROP)) return AM.forceMove(src) diff --git a/code/game/objects/structures/crates_lockers/closets/statue.dm b/code/game/objects/structures/crates_lockers/closets/statue.dm index f6060f510da..f61e520e39c 100644 --- a/code/game/objects/structures/crates_lockers/closets/statue.dm +++ b/code/game/objects/structures/crates_lockers/closets/statue.dm @@ -16,7 +16,7 @@ if(ishuman(L) || ismonkey(L) || iscorgi(L)) if(L.buckled) - L.buckled.unbuckle_mob() + L.buckled.unbuckle_mob(L,force=1) L.reset_perspective(src) L.loc = src L.disabilities += MUTE diff --git a/code/game/objects/structures/electricchair.dm b/code/game/objects/structures/electricchair.dm index bf8ebe9fbf6..fbb7b66b47f 100644 --- a/code/game/objects/structures/electricchair.dm +++ b/code/game/objects/structures/electricchair.dm @@ -37,9 +37,11 @@ var/datum/effect_system/spark_spread/s = new /datum/effect_system/spark_spread s.set_up(12, 1, src) s.start() - if(buckled_mob) - buckled_mob.electrocute_act(85, src, 1) - buckled_mob << "You feel a deep shock course through your body!" - sleep(1) - buckled_mob.electrocute_act(85, src, 1) + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.electrocute_act(85, src, 1) + buckled_mob << "You feel a deep shock course through your body!" + spawn(1) + buckled_mob.electrocute_act(85, src, 1) visible_message("The electric chair went off!", "You hear a deep sharp shock!") \ No newline at end of file diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm index a79e01c5011..377d6a5f584 100644 --- a/code/game/objects/structures/kitchen_spike.dm +++ b/code/game/objects/structures/kitchen_spike.dm @@ -38,7 +38,7 @@ /obj/structure/kitchenspike/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/weapon/crowbar)) - if(!src.buckled_mob) + if(!buckled_mobs.len) playsound(loc, 'sound/items/Crowbar.ogg', 100, 1) if(do_after(user, 20/I.toolspeed, target = src)) user << "You pry the spikes out of the frame." @@ -52,9 +52,9 @@ if(istype(I, /obj/item/weapon/grab)) var/obj/item/weapon/grab/G = I if(istype(G.affecting, /mob/living/)) - if(!buckled_mob) + if(!buckled_mobs.len) if(do_mob(user, src, 120)) - if(buckled_mob) //to prevent spam/queing up attacks + if(buckled_mobs.len) //to prevent spam/queing up attacks return if(G.affecting.buckled) return @@ -69,7 +69,7 @@ H.adjustBruteLoss(30) H.buckled = src H.dir = 2 - buckled_mob = H + buckle_mob(H, force=1) var/matrix/m180 = matrix(H.transform) m180.Turn(180) animate(H, transform = m180, time = 3) @@ -83,8 +83,8 @@ /obj/structure/kitchenspike/user_buckle_mob(mob/living/M, mob/living/user) //Don't want them getting put on the rack other than by spiking return -/obj/structure/kitchenspike/user_unbuckle_mob(mob/living/carbon/human/user) - if(buckled_mob && buckled_mob.buckled == src) +/obj/structure/kitchenspike/user_unbuckle_mob(mob/living/buckled_mob, mob/living/carbon/human/user) + if(buckled_mob) var/mob/living/M = buckled_mob if(M != user) M.visible_message(\ @@ -116,6 +116,6 @@ M.pixel_y = M.get_standard_pixel_y_offset(180) M.adjustBruteLoss(30) src.visible_message(text("[M] falls free of the [src]!")) - unbuckle_mob() + unbuckle_mob(M,force=1) M.emote("scream") M.AdjustWeakened(10) diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm index 82bb58e9e08..9c00d46569e 100644 --- a/code/game/objects/structures/plasticflaps.dm +++ b/code/game/objects/structures/plasticflaps.dm @@ -23,7 +23,7 @@ return prob(60) var/obj/structure/bed/B = A - if (istype(A, /obj/structure/bed) && (B.buckled_mob || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass + if (istype(A, /obj/structure/bed) && (B.buckled_mobs.len || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass return 0 if (istype(A, /obj/structure/closet/cardboard)) diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index d52e57d23b5..2901934a608 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -259,7 +259,7 @@ C.Weaken(w_amount) C.stop_pulling() if(buckled_obj) - buckled_obj.unbuckle_mob() + buckled_obj.unbuckle_mob(C) step(buckled_obj, olddir) else if(lube&SLIDE) for(var/i=1, i<5, i++) diff --git a/code/modules/atmospherics/machinery/atmosmachinery.dm b/code/modules/atmospherics/machinery/atmosmachinery.dm index 1167a045224..65a00b3b1e3 100644 --- a/code/modules/atmospherics/machinery/atmosmachinery.dm +++ b/code/modules/atmospherics/machinery/atmosmachinery.dm @@ -237,7 +237,7 @@ Pipelines + Other Objects -> Pipe network if(!(direction & initialize_directions)) //cant go this way. return - if(buckled_mob == user) // fixes buckle ventcrawl edgecase fuck bug + if(user in buckled_mobs)// fixes buckle ventcrawl edgecase fuck bug return var/obj/machinery/atmospherics/target_move = findConnecting(direction) @@ -282,4 +282,4 @@ Pipelines + Other Objects -> Pipe network //Used for certain children of obj/machinery/atmospherics to not show pipe vision when mob is inside it. /obj/machinery/atmospherics/proc/can_see_pipes() - return 1 + return 1 diff --git a/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm b/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm index 5c524f73a8c..082b83cd874 100644 --- a/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm +++ b/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm @@ -43,11 +43,15 @@ //heatup/cooldown any mobs buckled to ourselves based on our temperature - if(buckled_mob) + if(buckled_mobs.len) var/hc = pipe_air.heat_capacity() - var/avg_temp = (pipe_air.temperature * hc + buckled_mob.bodytemperature * 3500) / (hc + 3500) + var/mob/living/heat_source = buckled_mobs[1] + var/avg_temp = (pipe_air.temperature * hc + (heat_source.bodytemperature * buckled_mobs.len) * 3500) / (hc * buckled_mobs.len + 3500) //this is wrong, but w/e + for(var/m in buckled_mobs) + var/mob/living/L = m + L.bodytemperature = avg_temp pipe_air.temperature = avg_temp - buckled_mob.bodytemperature = avg_temp + /obj/machinery/atmospherics/pipe/heat_exchanging/process() @@ -74,7 +78,9 @@ animate(src, color = rgb(h_r, h_g, h_b), time = 20, easing = SINE_EASING) //burn any mobs buckled based on temperature - if(buckled_mob) + if(buckled_mobs.len) var/heat_limit = 1000 if(pipe_air.temperature > heat_limit + 1) - buckled_mob.apply_damage(4 * log(pipe_air.temperature - heat_limit), BURN, "chest") + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.apply_damage(4 * log(pipe_air.temperature - heat_limit), BURN, "chest") diff --git a/code/modules/clothing/spacesuits/chronosuit.dm b/code/modules/clothing/spacesuits/chronosuit.dm index de2d07a8e87..e039b6f5125 100644 --- a/code/modules/clothing/spacesuits/chronosuit.dm +++ b/code/modules/clothing/spacesuits/chronosuit.dm @@ -117,7 +117,7 @@ user.ExtinguishMob() if(user.buckled) - user.buckled.unbuckle_mob() + user.buckled.unbuckle_mob(user,force=1) phase_underlay = create_phase_underlay(user) diff --git a/code/modules/events/spacevine.dm b/code/modules/events/spacevine.dm index 23e1a69478b..15e2174f46d 100644 --- a/code/modules/events/spacevine.dm +++ b/code/modules/events/spacevine.dm @@ -363,8 +363,8 @@ KZ.production = (master.spread_cap / initial(master.spread_cap)) * 50 mutations = list() SetOpacity(0) - if(buckled_mob) - unbuckle_mob() + if(buckled_mobs.len) + unbuckle_all_mobs(force=1) return ..() /obj/effect/spacevine/proc/on_chem_effect(datum/reagent/R) @@ -540,10 +540,10 @@ SM.on_grow(src) /obj/effect/spacevine/proc/entangle_mob() - if(!buckled_mob && prob(25)) + if(!buckled_mobs.len && prob(25)) for(var/mob/living/V in src.loc) entangle(V) - if(buckled_mob) + if(buckled_mobs.len) break //only capture one mob at a time diff --git a/code/modules/food&drinks/kitchen machinery/gibber.dm b/code/modules/food&drinks/kitchen machinery/gibber.dm index 401e43d2ea7..9a9f75125be 100644 --- a/code/modules/food&drinks/kitchen machinery/gibber.dm +++ b/code/modules/food&drinks/kitchen machinery/gibber.dm @@ -100,7 +100,7 @@ user << "This item is not suitable for the gibber!" return var/mob/living/carbon/C = G.affecting - if(C.buckled ||C.buckled_mob) + if(C.buckled ||C.buckled_mobs.len) user << "[C] is attached to something!" return if(C.abiotic(1) && !ignore_clothing) @@ -109,7 +109,7 @@ user.visible_message("[user] starts to put [G.affecting] into the gibber!") src.add_fingerprint(user) - if(do_after(user, gibtime, target = src) && G && G.affecting && G.affecting == C && !C.buckled && !C.buckled_mob && !occupant) + if(do_after(user, gibtime, target = src) && G && G.affecting && G.affecting == C && !C.buckled && !C.buckled_mobs.len && !occupant) user.visible_message("[user] stuffs [G.affecting] into the gibber!") C.reset_perspective(src) C.loc = src diff --git a/code/modules/food&drinks/kitchen machinery/monkeyrecycler.dm b/code/modules/food&drinks/kitchen machinery/monkeyrecycler.dm index 77c1cbd695f..ebf6296f446 100644 --- a/code/modules/food&drinks/kitchen machinery/monkeyrecycler.dm +++ b/code/modules/food&drinks/kitchen machinery/monkeyrecycler.dm @@ -61,7 +61,7 @@ if(target.stat == 0) user << "The monkey is struggling far too much to put it in the recycler." return - if(target.buckled || target.buckled_mob) + if(target.buckled || target.buckled_mobs.len) user << "The monkey is attached to something." return if(!user.drop_item()) diff --git a/code/modules/food&drinks/kitchen machinery/processor.dm b/code/modules/food&drinks/kitchen machinery/processor.dm index bb2b48a8653..a06b5499f1c 100644 --- a/code/modules/food&drinks/kitchen machinery/processor.dm +++ b/code/modules/food&drinks/kitchen machinery/processor.dm @@ -158,7 +158,7 @@ var/obj/item/weapon/grab/G = O if(!user.Adjacent(G.affecting)) return - if(G.affecting.buckled || G.affecting.buckled_mob) + if(G.affecting.buckled || G.affecting.buckled_mobs.len) user << "[G.affecting] is attached to somthing!" return what = G.affecting diff --git a/code/modules/mob/living/bloodcrawl.dm b/code/modules/mob/living/bloodcrawl.dm index 1ef1a402ac1..697462bab78 100644 --- a/code/modules/mob/living/bloodcrawl.dm +++ b/code/modules/mob/living/bloodcrawl.dm @@ -46,9 +46,9 @@ var/obj/effect/dummy/slaughter/holder = PoolOrNew(/obj/effect/dummy/slaughter,mobloc) src.ExtinguishMob() if(buckled) - buckled.unbuckle_mob(force=1) - if(buckled_mob) - unbuckle_mob(force=1) + buckled.unbuckle_mob(src,force=1) + if(buckled_mobs.len) + unbuckle_all_mobs(force=1) if(pulledby) pulledby.stop_pulling() if(src.pulling && src.bloodcrawl == BLOODCRAWL_EAT) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index d556b547fca..bceecc76506 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -458,7 +458,7 @@ var/const/GALOSHES_DONT_HELP = 4 handcuffed.dropped(src) handcuffed = null if(buckled && buckled.buckle_requires_restraints) - buckled.unbuckle_mob() + buckled.unbuckle_mob(src) update_handcuffed() return if(I == legcuffed) @@ -499,7 +499,7 @@ var/const/GALOSHES_DONT_HELP = 4 var/obj/item/weapon/W = handcuffed handcuffed = null if (buckled && buckled.buckle_requires_restraints) - buckled.unbuckle_mob() + buckled.unbuckle_mob(src) update_handcuffed() if (client) client.screen -= W diff --git a/code/modules/mob/living/carbon/inventory.dm b/code/modules/mob/living/carbon/inventory.dm index 910cbf3c338..00efe469b81 100644 --- a/code/modules/mob/living/carbon/inventory.dm +++ b/code/modules/mob/living/carbon/inventory.dm @@ -81,7 +81,7 @@ else if(I == handcuffed) handcuffed = null if(buckled && buckled.buckle_requires_restraints) - buckled.unbuckle_mob() + buckled.unbuckle_mob(src) update_handcuffed() else if(I == legcuffed) legcuffed = null diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index 5a26baeff47..18d6cc56f2b 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -4,7 +4,7 @@ death(1) if(buckled) - buckled.unbuckle_mob() //to update alien nest overlay. + buckled.unbuckle_mob(src,force=1) //to update alien nest overlay, forced because we don't exist anymore var/atom/movable/overlay/animate = setup_animation(animation, prev_lying) if(animate) @@ -45,7 +45,7 @@ if(!gibbed) dead_mob_list += src else if(buckled) - buckled.unbuckle_mob() + buckled.unbuckle_mob(src,force=1) paralysis = 0 stunned = 0 weakened = 0 diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index e6a9073aa05..61eeedda9eb 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -104,7 +104,7 @@ Sorry Giacom. Please don't be mad :( //switch our position with M //BubbleWrap: people in handcuffs are always switched around as if they were on 'help' intent to prevent a person being pulled from being seperated from their puller - if((M.a_intent == "help" || M.restrained()) && (a_intent == "help" || restrained()) && M.canmove && canmove && !M.buckled && !M.buckled_mob) // mutual brohugs all around! + if((M.a_intent == "help" || M.restrained()) && (a_intent == "help" || restrained()) && M.canmove && canmove && !M.buckled && !M.buckled_mobs.len) // mutual brohugs all around! if(loc && !loc.Adjacent(M.loc)) return 1 now_pushing = 1 diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 8bff23d9d67..6d5d335d9cf 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -205,7 +205,7 @@ return if(M.buckled) - if(M == buckled_mob) + if(M in buckled_mobs) M.Feedstop() return // can't attack while eating! diff --git a/code/modules/mob/living/simple_animal/bot/mulebot.dm b/code/modules/mob/living/simple_animal/bot/mulebot.dm index 5fdb5a4d35b..743b118a582 100644 --- a/code/modules/mob/living/simple_animal/bot/mulebot.dm +++ b/code/modules/mob/living/simple_animal/bot/mulebot.dm @@ -357,7 +357,7 @@ var/global/mulebot_count = 0 if(isobj(AM)) var/obj/O = AM - if(O.buckled_mob || (locate(/mob) in AM)) //can't load non crates objects with mobs buckled to it or inside it. + if(O.buckled_mobs.len || (locate(/mob) in AM)) //can't load non crates objects with mobs buckled to it or inside it. buzz(SIGH) return @@ -381,7 +381,7 @@ var/global/mulebot_count = 0 return FALSE /mob/living/simple_animal/bot/mulebot/post_buckle_mob(mob/living/M) - if(M == buckled_mob) //post buckling + if(M in buckled_mobs) //post buckling M.pixel_y = initial(M.pixel_y) + 9 if(M.layer < layer) M.layer = layer + 0.1 @@ -402,7 +402,7 @@ var/global/mulebot_count = 0 overlays.Cut() - unbuckle_mob() + unbuckle_all_mobs() if(load) load.loc = loc diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index 6ca61f3611f..d6a58af95cf 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -129,7 +129,7 @@ walk(src,0) if(buckled) - buckled.buckled_mob = null + buckled.unbuckle_mob(src,force=1) buckled = null pixel_x = initial(pixel_x) pixel_y = initial(pixel_y) @@ -811,7 +811,7 @@ if(icon_state == "parrot_fly") for(var/mob/living/carbon/human/H in view(src,1)) - if(H.buckled_mob) //Already has a parrot, or is being eaten by a slime + if(H.buckled_mobs.len >= H.max_buckled_mobs) //Already has a parrot, or is being eaten by a slime continue perch_on_human(H) return @@ -821,7 +821,7 @@ parrot_state = PARROT_WANDER if(buckled) src << "You are no longer sitting on [buckled]'s shoulder." - buckled.buckled_mob = null + buckled.unbuckle_mob(src,force=1) buckled = null pixel_x = initial(pixel_x) pixel_y = initial(pixel_y) diff --git a/code/modules/mob/living/simple_animal/slime/life.dm b/code/modules/mob/living/simple_animal/slime/life.dm index f5c892ab426..16c5a8dea47 100644 --- a/code/modules/mob/living/simple_animal/slime/life.dm +++ b/code/modules/mob/living/simple_animal/slime/life.dm @@ -48,7 +48,7 @@ break if(Target) - if(isslime(Target.buckled_mob)) + if(locate(/mob/living/simple_animal/slime) in Target.buckled_mobs) Target = null AIproc = 0 break @@ -322,7 +322,7 @@ if(src.type in H.dna.species.ignored_by) continue - if(isslime(L.buckled_mob)) // Only one slime can latch on at a time. + if(locate(/mob/living/simple_animal/slime) in L.buckled_mobs) // Only one slime can latch on at a time. continue targets += L // Possible target found! diff --git a/code/modules/mob/living/simple_animal/slime/powers.dm b/code/modules/mob/living/simple_animal/slime/powers.dm index 74a32d22cd6..5fedf3b3a81 100644 --- a/code/modules/mob/living/simple_animal/slime/powers.dm +++ b/code/modules/mob/living/simple_animal/slime/powers.dm @@ -71,13 +71,13 @@ src << "This subject does not have a strong enough life energy..." return 0 - if(isslime(M.buckled_mob)) + if(locate(/mob/living/simple_animal/slime) in M.buckled_mobs) src << "Another slime is already feeding on this subject..." return 0 return 1 /mob/living/simple_animal/slime/proc/Feedon(mob/living/M) - M.unbuckle_mob(force=1) //Slimes rip other mobs (eg: shoulder parrots) off (Slimes Vs Slimes is already handled in CanFeedon()) + M.unbuckle_all_mobs(force=1) //Slimes rip other mobs (eg: shoulder parrots) off (Slimes Vs Slimes is already handled in CanFeedon()) if(M.buckle_mob(src, force=1)) M.visible_message("The [name] has latched onto [M]!", \ "The [name] has latched onto [M]!") @@ -94,7 +94,7 @@ if(!silent) visible_message("[src] has let go of [buckled]!", \ "I stopped feeding.") - buckled.unbuckle_mob(force=1) + buckled.unbuckle_mob(src,force=1) /mob/living/simple_animal/slime/verb/Evolve() set category = "Slime" diff --git a/code/modules/mob/living/ventcrawling.dm b/code/modules/mob/living/ventcrawling.dm index 45880e12a07..d01b00ceaeb 100644 --- a/code/modules/mob/living/ventcrawling.dm +++ b/code/modules/mob/living/ventcrawling.dm @@ -15,8 +15,8 @@ var/list/ventcrawl_machinery = list(/obj/machinery/atmospherics/components/unary if(restrained()) src << "You can't vent crawl while you're restrained!" return - if(buckled_mob) - src << "You can't vent crawl with [buckled_mob] on you!" + if(buckled_mobs.len) + src << "You can't vent crawl with others creatures on you!" return if(buckled) src << "You can't vent crawl while buckled!" diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 919225cf067..e42867b6a33 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -928,7 +928,7 @@ var/next_mob_id = 0 //Default buckling shift visual for mobs /mob/post_buckle_mob(mob/living/M) - if(M == buckled_mob) //post buckling + if(M in buckled_mobs)//post buckling var/height = M.get_mob_buckling_height(src) M.pixel_y = initial(M.pixel_y) + height if(M.layer < layer) diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm index 87c441971e0..d4e216c9ad6 100644 --- a/code/modules/mob/mob_movement.dm +++ b/code/modules/mob/mob_movement.dm @@ -11,7 +11,7 @@ var/mob/moving_mob = mover if ((other_mobs && moving_mob.other_mobs)) return 1 - if (mover == buckled_mob) + if (mover in buckled_mobs) return 1 return (!mover.density || !density || lying) diff --git a/code/modules/recycling/disposal-unit.dm b/code/modules/recycling/disposal-unit.dm index 83cc7e4df9c..f3051acedf8 100644 --- a/code/modules/recycling/disposal-unit.dm +++ b/code/modules/recycling/disposal-unit.dm @@ -108,7 +108,7 @@ return if(!istype(user.loc, /turf/)) //No magically doing it from inside closets return - if(target.buckled || target.buckled_mob) + if(target.buckled || target.buckled_mobs.len) return if(target.mob_size > MOB_SIZE_HUMAN) user << "[target] doesn't fit inside [src]!" diff --git a/code/modules/spells/spell_types/area_teleport.dm b/code/modules/spells/spell_types/area_teleport.dm index 7f766aa49e0..f09b87ad145 100644 --- a/code/modules/spells/spell_types/area_teleport.dm +++ b/code/modules/spells/spell_types/area_teleport.dm @@ -52,7 +52,7 @@ return if(target && target.buckled) - target.buckled.unbuckle_mob() + target.buckled.unbuckle_mob(target, force=1) var/list/tempL = L var/attempt = null diff --git a/code/modules/spells/spell_types/ethereal_jaunt.dm b/code/modules/spells/spell_types/ethereal_jaunt.dm index 5be662a2c29..16591ca4440 100644 --- a/code/modules/spells/spell_types/ethereal_jaunt.dm +++ b/code/modules/spells/spell_types/ethereal_jaunt.dm @@ -31,12 +31,12 @@ animation.master = holder target.ExtinguishMob() if(target.buckled) - target.buckled.unbuckle_mob() + target.buckled.unbuckle_mob(target,force=1) if(target.pulledby) target.pulledby.stop_pulling() target.stop_pulling() - if(target.buckled_mob) - target.unbuckle_mob(force=1) + if(target.buckled_mobs.len) + target.unbuckle_all_mobs(force=1) jaunt_disappear(animation, target) target.loc = holder target.reset_perspective(holder) diff --git a/code/modules/spells/spell_types/turf_teleport.dm b/code/modules/spells/spell_types/turf_teleport.dm index c8ada3a8997..d32f5c15745 100644 --- a/code/modules/spells/spell_types/turf_teleport.dm +++ b/code/modules/spells/spell_types/turf_teleport.dm @@ -39,8 +39,8 @@ if(!target.Move(picked)) if(target.buckled) - target.buckled.unbuckle_mob() - if(target.buckled_mob) - target.unbuckle_mob(force=1) + target.buckled.unbuckle_mob(target,force=1) + if(target.buckled_mobs.len) + target.unbuckle_all_mobs(force=1) target.loc = picked playsound(get_turf(user), sound2, 50,1) diff --git a/code/modules/vehicles/atv.dm b/code/modules/vehicles/atv.dm index 6d9d94747dd..01d440dec03 100644 --- a/code/modules/vehicles/atv.dm +++ b/code/modules/vehicles/atv.dm @@ -18,7 +18,7 @@ obj/vehicle/atv/post_buckle_mob(mob/living/M) - if(buckled_mob) + if(buckled_mobs.len) overlays += atvcover else overlays -= atvcover diff --git a/code/modules/vehicles/pimpin_ride.dm b/code/modules/vehicles/pimpin_ride.dm index c74b66caee1..b1d1e5a3af8 100644 --- a/code/modules/vehicles/pimpin_ride.dm +++ b/code/modules/vehicles/pimpin_ride.dm @@ -12,20 +12,22 @@ /obj/vehicle/janicart/handle_vehicle_offsets() ..() - if(buckled_mob) - switch(buckled_mob.dir) - if(NORTH) - buckled_mob.pixel_x = 0 - buckled_mob.pixel_y = 4 - if(EAST) - buckled_mob.pixel_x = -12 - buckled_mob.pixel_y = 7 - if(SOUTH) - buckled_mob.pixel_x = 0 - buckled_mob.pixel_y = 7 - if(WEST) - buckled_mob.pixel_x = 12 - buckled_mob.pixel_y = 7 + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + switch(buckled_mob.dir) + if(NORTH) + buckled_mob.pixel_x = 0 + buckled_mob.pixel_y = 4 + if(EAST) + buckled_mob.pixel_x = -12 + buckled_mob.pixel_y = 7 + if(SOUTH) + buckled_mob.pixel_x = 0 + buckled_mob.pixel_y = 7 + if(WEST) + buckled_mob.pixel_x = 12 + buckled_mob.pixel_y = 7 /obj/item/key/janitor diff --git a/code/modules/vehicles/speedbike.dm b/code/modules/vehicles/speedbike.dm index 119aca15fd2..1baf99361e9 100644 --- a/code/modules/vehicles/speedbike.dm +++ b/code/modules/vehicles/speedbike.dm @@ -25,7 +25,7 @@ dir = move_dir /obj/vehicle/space/speedbike/Move(newloc,move_dir) - if(buckled_mob) + if(buckled_mobs.len) PoolOrNew(/obj/effect/overlay/temp/speedbike_trail,list(loc,move_dir)) . = ..() @@ -39,21 +39,23 @@ pixel_y = 0 /obj/vehicle/space/speedbike/handle_vehicle_offsets() - if(buckled_mob) - buckled_mob.dir = dir - switch(dir) - if(NORTH) - buckled_mob.pixel_x = 0 - buckled_mob.pixel_y = -8 - if(SOUTH) - buckled_mob.pixel_x = 0 - buckled_mob.pixel_y = 4 - if(EAST) - buckled_mob.pixel_x = -10 - buckled_mob.pixel_y = 5 - if(WEST) - buckled_mob.pixel_x = 10 - buckled_mob.pixel_y = 5 + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.dir = dir + switch(dir) + if(NORTH) + buckled_mob.pixel_x = 0 + buckled_mob.pixel_y = -8 + if(SOUTH) + buckled_mob.pixel_x = 0 + buckled_mob.pixel_y = 4 + if(EAST) + buckled_mob.pixel_x = -10 + buckled_mob.pixel_y = 5 + if(WEST) + buckled_mob.pixel_x = 10 + buckled_mob.pixel_y = 5 /obj/vehicle/space/speedbike/red icon_state = "speedbike_red" diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm index 18939a779df..b2aab4546a2 100644 --- a/code/modules/vehicles/vehicle.dm +++ b/code/modules/vehicles/vehicle.dm @@ -35,10 +35,12 @@ //if they differ between directions, otherwise use the //generic variables /obj/vehicle/proc/handle_vehicle_offsets() - if(buckled_mob) - buckled_mob.dir = dir - buckled_mob.pixel_x = generic_pixel_x - buckled_mob.pixel_y = generic_pixel_y + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.dir = dir + buckled_mob.pixel_x = generic_pixel_x + buckled_mob.pixel_y = generic_pixel_y /obj/vehicle/update_icon() @@ -64,8 +66,8 @@ //BUCKLE HOOKS -/obj/vehicle/unbuckle_mob(force = 0) - if(buckled_mob) +/obj/vehicle/unbuckle_mob(mob/living/buckled_mob,force = 0) + if(istype(buckled_mob)) buckled_mob.pixel_x = 0 buckled_mob.pixel_y = 0 . = ..() @@ -86,7 +88,7 @@ //MOVEMENT /obj/vehicle/relaymove(mob/user, direction) if(user.incapacitated()) - unbuckle_mob() + unbuckle_mob(user) if(keycheck(user)) if(!Process_Spacemove(direction) || world.time < next_vehicle_move || !isturf(loc)) @@ -95,11 +97,12 @@ step(src, direction) - if(buckled_mob) - if(buckled_mob.loc != loc) - buckled_mob.buckled = null //Temporary, so Move() succeeds. - buckled_mob.buckled = src //Restoring - + if(buckled_mobs.len) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + if(buckled_mob.loc != loc) + buckled_mob.buckled = null //Temporary, so Move() succeeds. + buckled_mob.buckled = src //Restoring handle_vehicle_layer() handle_vehicle_offsets() else @@ -120,8 +123,9 @@ /obj/vehicle/Bump(atom/movable/M) . = ..() if(auto_door_open) - if(istype(M, /obj/machinery/door) && buckled_mob) - M.Bumped(buckled_mob) + if(istype(M, /obj/machinery/door) && buckled_mobs.len) + for(var/m in buckled_mobs) + M.Bumped(m) /obj/vehicle/Process_Spacemove(direction) From 6268238e45acb4b691383cd65bf1c3bfa6deade7 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Mon, 7 Mar 2016 18:08:04 +0000 Subject: [PATCH 13/77] Removes my todo comments about the refactor. --- code/game/objects/buckling.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm index 6dc496a8119..21305aa6e4a 100644 --- a/code/game/objects/buckling.dm +++ b/code/game/objects/buckling.dm @@ -7,9 +7,6 @@ var/list/mob/living/buckled_mobs = list() var/max_buckled_mobs = 1 -//todo: -// * check all unbuckle_mob() calls have a mob argument - CHECK -// * check all user_unbuckle_mob() calls have a mob argument - CHECK //Interaction @@ -104,7 +101,6 @@ return 1 -//Edit so I can see all the calls /atom/movable/proc/user_unbuckle_mob(mob/living/buckled_mob, mob/user) if(!buckled_mob && buckled_mobs.len) buckled_mob = buckled_mobs[1] From aeaa73601c833d138b5d601106ffc1f08cf3eb9b Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Mon, 7 Mar 2016 19:39:37 +0000 Subject: [PATCH 14/77] Fixes --- code/game/objects/buckling.dm | 4 +--- code/game/objects/items/weapons/implants/implantchair.dm | 2 +- .../atmospherics/machinery/pipes/heat_exchange/he_pipes.dm | 3 ++- code/modules/vehicles/vehicle.dm | 6 ------ 4 files changed, 4 insertions(+), 11 deletions(-) diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm index 21305aa6e4a..ad1d67133d2 100644 --- a/code/game/objects/buckling.dm +++ b/code/game/objects/buckling.dm @@ -60,7 +60,7 @@ M.IgniteMob() /atom/movable/proc/unbuckle_mob(mob/living/buckled_mob, force=0) - if(buckled_mob && buckled_mob.buckled == src && (buckled_mob.can_unbuckle() || force)) + if(istype(buckled_mob) && buckled_mob.buckled == src && (buckled_mob.can_unbuckle() || force)) . = buckled_mob buckled_mob.buckled = null buckled_mob.anchored = initial(buckled_mob.anchored) @@ -102,8 +102,6 @@ /atom/movable/proc/user_unbuckle_mob(mob/living/buckled_mob, mob/user) - if(!buckled_mob && buckled_mobs.len) - buckled_mob = buckled_mobs[1] var/mob/living/M = unbuckle_mob(buckled_mob) if(M) if(M != user) diff --git a/code/game/objects/items/weapons/implants/implantchair.dm b/code/game/objects/items/weapons/implants/implantchair.dm index 6d49f959029..a7e7452be6a 100644 --- a/code/game/objects/items/weapons/implants/implantchair.dm +++ b/code/game/objects/items/weapons/implants/implantchair.dm @@ -80,7 +80,7 @@ return var/mob/M = G.affecting if(M.buckled_mobs.len) - usr << "[M] will not fit into [src] because they have a creature on them!" + user << "[M] will not fit into [src] because they have a creature on them!" return if(put_mob(M)) qdel(G) diff --git a/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm b/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm index 082b83cd874..865ea55f897 100644 --- a/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm +++ b/code/modules/atmospherics/machinery/pipes/heat_exchange/he_pipes.dm @@ -46,7 +46,8 @@ if(buckled_mobs.len) var/hc = pipe_air.heat_capacity() var/mob/living/heat_source = buckled_mobs[1] - var/avg_temp = (pipe_air.temperature * hc + (heat_source.bodytemperature * buckled_mobs.len) * 3500) / (hc * buckled_mobs.len + 3500) //this is wrong, but w/e + //Best guess-estimate of the total bodytemperature of all the mobs, since they share the same environment it's ~ok~ to guess like this + var/avg_temp = (pipe_air.temperature * hc + (heat_source.bodytemperature * buckled_mobs.len) * 3500) / (hc + (buckled_mobs.len * 3500)) for(var/m in buckled_mobs) var/mob/living/L = m L.bodytemperature = avg_temp diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm index b2aab4546a2..e3be144b5c6 100644 --- a/code/modules/vehicles/vehicle.dm +++ b/code/modules/vehicles/vehicle.dm @@ -97,12 +97,6 @@ step(src, direction) - if(buckled_mobs.len) - for(var/m in buckled_mobs) - var/mob/living/buckled_mob = m - if(buckled_mob.loc != loc) - buckled_mob.buckled = null //Temporary, so Move() succeeds. - buckled_mob.buckled = src //Restoring handle_vehicle_layer() handle_vehicle_offsets() else From 70004efa13188f0f8c0910a865979f26ec6e2087 Mon Sep 17 00:00:00 2001 From: KazeEspada Date: Tue, 8 Mar 2016 14:43:40 -0700 Subject: [PATCH 15/77] Ports the beach away mission from VOREstation. Adds some new tiles to make it look more like ours. Fixes an issue with the bartender spawn. --- _maps/RandomZLevels/beach2.dmm | 330 ++++++++++++++++++ .../turfs/simulated/floor/plasteel_floor.dm | 2 + code/modules/awaymissions/corpse.dm | 8 +- config/awaymissionconfig.txt | 1 + icons/misc/beach.dmi | Bin 11980 -> 11979 bytes icons/turf/floors.dmi | Bin 388002 -> 389796 bytes 6 files changed, 337 insertions(+), 4 deletions(-) create mode 100644 _maps/RandomZLevels/beach2.dmm diff --git a/_maps/RandomZLevels/beach2.dmm b/_maps/RandomZLevels/beach2.dmm new file mode 100644 index 00000000000..13cdc34da3e --- /dev/null +++ b/_maps/RandomZLevels/beach2.dmm @@ -0,0 +1,330 @@ +"aa" = (/turf/space,/area/space) +"ab" = (/turf/indestructible/rock,/area/awaymission/beach) +"ac" = (/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ad" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ae" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"af" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ag" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ah" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ai" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"aj" = (/obj/machinery/gateway{density = 0; dir = 10},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ak" = (/obj/machinery/gateway,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"al" = (/obj/machinery/gateway{density = 0; dir = 6},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"am" = (/obj/effect/overlay/palmtree_l,/obj/effect/overlay/coconut,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"an" = (/obj/effect/overlay/palmtree_r,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"ao" = (/obj/machinery/telecomms/relay/preset/mining,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"ap" = (/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"aq" = (/turf/simulated/wall/mineral/sandstone,/area/awaymission/beach) +"ar" = (/obj/effect/overlay/palmtree_l,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"as" = (/obj/structure/dresser{density = 0; pixel_x = 0; pixel_y = 18},/turf/simulated/floor/wood,/area/awaymission/beach) +"at" = (/turf/simulated/floor/wood,/area/awaymission/beach) +"au" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor/wood,/area/awaymission/beach) +"av" = (/obj/structure/toilet{pixel_y = 8},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"aw" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood,/area/awaymission/beach) +"ax" = (/obj/item/weapon/bedsheet/rainbow,/obj/structure/bed,/obj/machinery/button/door{id = "loveshack"; name = "love shack lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood,/area/awaymission/beach) +"ay" = (/obj/effect/overlay/palmtree_r,/obj/effect/overlay/coconut,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"az" = (/obj/structure/mineral_door/wood{name = "toilet"},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"aA" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/beach) +"aB" = (/obj/effect/overlay/coconut,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"aC" = (/obj/structure/signpost,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"aD" = (/obj/machinery/door/airlock/sandstone{id_tag = "loveshack"; name = "Lotsu's Love Shack"},/turf/simulated/floor/wood,/area/awaymission/beach) +"aE" = (/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/wood,/area/awaymission/beach) +"aF" = (/obj/machinery/button/door{id = "changing1"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood,/area/awaymission/beach) +"aG" = (/obj/machinery/button/door{id = "changing2"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood,/area/awaymission/beach) +"aH" = (/obj/machinery/door/airlock/sandstone{id_tag = "changing1"; name = "changing room"},/turf/simulated/floor/wood,/area/awaymission/beach) +"aI" = (/obj/machinery/door/airlock/sandstone{id_tag = "changing2"; name = "changing room"},/turf/simulated/floor/wood,/area/awaymission/beach) +"aJ" = (/obj/structure/bedsheetbin{pixel_y = -6},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"aK" = (/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/structure/closet/crate,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"aL" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"aM" = (/obj/structure/closet/gmcloset,/turf/simulated/floor/wood,/area/awaymission/beach) +"aN" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/wood,/area/awaymission/beach) +"aO" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/wood,/area/awaymission/beach) +"aP" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/wood,/area/awaymission/beach) +"aQ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood,/area/awaymission/beach) +"aR" = (/obj/structure/table/wood,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood,/area/awaymission/beach) +"aS" = (/obj/effect/mob_spawn/human/bartender/alive,/turf/simulated/floor/wood,/area/awaymission/beach) +"aT" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/awaymission/beach) +"aU" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/awaymission/beach) +"aV" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/awaymission/beach) +"aW" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/awaymission/beach) +"aX" = (/obj/structure/mineral_door/wood{name = "bar"},/turf/simulated/floor/wood,/area/awaymission/beach) +"aY" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/ale,/turf/simulated/floor/wood,/area/awaymission/beach) +"aZ" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/beach) +"ba" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,/turf/simulated/floor/wood,/area/awaymission/beach) +"bb" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/simulated/floor/wood,/area/awaymission/beach) +"bc" = (/obj/item/toy/beach_ball,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bd" = (/obj/structure/table,/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,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"be" = (/obj/structure/table,/obj/item/clothing/under/color/rainbow,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/head/collectable/petehat{pixel_y = 5},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bf" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"bg" = (/obj/structure/sign/barsign{pixel_y = 32},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) +"bh" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bi" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bj" = (/mob/living/simple_animal/crab,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bk" = (/obj/structure/chair,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bl" = (/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bm" = (/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bn" = (/obj/item/weapon/reagent_containers/food/drinks/soda_cans/starkist,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bo" = (/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bp" = (/obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_mountain_wind,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"bq" = (/obj/item/clothing/head/collectable/paper,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) +"br" = (/turf/simulated/floor/plating/beach/coastline_t,/area/awaymission/beach) +"bs" = (/turf/simulated/floor/plating/beach/coastline_b,/area/awaymission/beach) +"bt" = (/turf/simulated/floor/plating/beach/water,/area/awaymission/beach) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacadaeafacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacagahaiacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacajakalacacacacacamacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacanacacaoapapacacacacacacacacacacacacacacacacacacacacacaqaqaqaqaqacacacacaracacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacacapacacacacacacacacacacacacacacacaqaqaqacacacaqasatauaqacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacacapacacacacacacacacacacacacacanacaqavaqacacacaqawataxaqacacacacacacacacayacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacaracacacacacacacacacacacacapacacacacacacacacacacacacacacacaqazaqacacacaqaAatataqacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacaBacacacacacacacacacacacacacapaCacacacacacacacacacacacacacacacapacacacacaqaqaDaqaqacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacacapapapapapapapapapapapapapapapapapapapapapapapapapapapacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacaraBacapacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacaqaqaqaqacapacaqaqaqaqacacanacacacacacacacacacacacacacacacacacacacacacacaracacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacanacacacaqasaEaqacapacaqasaEaqacacacacacacacacacacacacacacacacaracacacacacacacacacacacacacacacacacayacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacaqataFaqacapacaqataGaqacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacaqaqaHaqacapacaqaqaIaqacacacacacacacacacaracacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapapapapapapapapapapapapapapapacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapapapapapapapapapapapapapapapacacacacacacacacacacacayacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapaJaKaLaKaLaKaLaKaLaKaLaKaLapacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacamacacapaqaqaqaqaqaqaqaqaqaqaqaqaqapacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapaqaMaNaOaPaQaRaSaTaUaVaWaqapacacacacacacacacacacacacacacacacacacacacacacacacacacacaracacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapaqatatatatatatatatatatataqapacacacacacacacacacacacacacacanacacacanaBacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapaXatatatatatatatatatatataqapacacacacacacacaracacacacacacacaBacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababanacacacacacacacacacapaqaYaYaZaZaZbabbaZaZaZaqaqapacaracacbcacacacacacacacacacacacacacacbdbeacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapapbfbfbfbfbfbfbfbfbfbfbgapapacacacacacacacacacacacacacacacacacacacbhbiacacacanacbcacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacapapapapapapapapapapapapapapapacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacbjacacacacacacacacacacacacacacacacacacacacacacacacacacacanacacacacacacacacacacacacacacacacacacacacacacacacaracacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacaraBacacacacacacacacacacacacacacaracacacacacbjacacacaBacacacacacanacbjacacacacacacacacacacacacacacacaBacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacbcacacacacacacbjacacbkblbkbmbkbnbkbobkbmbkbpacacacacacacacacacbkbobkbpacacacacaBacacbqacbkblbkbobkbnbjacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrbrababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsbsababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtbtababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/code/game/turfs/simulated/floor/plasteel_floor.dm b/code/game/turfs/simulated/floor/plasteel_floor.dm index 555e25b09be..54c1aa0d204 100644 --- a/code/game/turfs/simulated/floor/plasteel_floor.dm +++ b/code/game/turfs/simulated/floor/plasteel_floor.dm @@ -438,6 +438,8 @@ /turf/simulated/floor/plasteel/sepia icon_state = "sepia" +/turf/simulated/floor/plasteel/sandy + icon_state = "sandy" /turf/simulated/floor/plasteel/sandeffect icon_state = "sandeffect" diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 1248705bdef..70d29aba1b4 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -49,7 +49,7 @@ M.faction = list(faction) if(death) M.death(1) //Kills the new mob - + M.adjustOxyLoss(oxy_damage) M.adjustBruteLoss(brute_damage) equip(M) @@ -160,8 +160,8 @@ //Non-human spawners /obj/effect/mob_spawn/AICorpse/create() //Creates a corrupted AI - var/A = locate(/mob/living/silicon/ai) in loc - if(A) + var/A = locate(/mob/living/silicon/ai) in loc + if(A) return var/L = new /datum/ai_laws/default/asimov var/B = new /obj/item/device/mmi @@ -314,7 +314,7 @@ uniform = /obj/item/clothing/under/rank/bartender back = /obj/item/weapon/storage/backpack shoes = /obj/item/clothing/shoes/sneakers/black - suit = /obj/item/clothing/suit/armor + suit = /obj/item/clothing/suit/armor/vest glasses = /obj/item/clothing/glasses/sunglasses/reagent has_id = 1 id_job = "Bartender" diff --git a/config/awaymissionconfig.txt b/config/awaymissionconfig.txt index 65b66b3d97d..a092d622480 100644 --- a/config/awaymissionconfig.txt +++ b/config/awaymissionconfig.txt @@ -20,3 +20,4 @@ #_maps/RandomZLevels/snowdin.dmm #_maps/RandomZLevels/research.dmm #_maps/RandomZLevels/Cabin.dmm +#_maps/RandomZLevels/beach2.dmm diff --git a/icons/misc/beach.dmi b/icons/misc/beach.dmi index 94a996eb99b6f830047154130a2a20a0c9ff3469..c78c61658e2249013389531220e283185b0365b2 100644 GIT binary patch delta 211 zcmV;^04)E^UCUjNB!9koR9JLGWpiV4X>fFDZ*Bkpc$}Tju?mAQ5C-5md5S~VQmXBm zr6|QgU!j~Pt$~bgezgbv|#%!X1R!&IDUt{eu&ZIK<0s;AMW!AFj->ekMrhuZZ_!~B8 NoU!HUpPI4k;4MwdY6$=U delta 212 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 Yyb`=Pcgcjp$^?FH=on~MX*$OI4}-F35C8xG From 1424548e14ceb0e66b91e057b47795bfec216730 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Tue, 8 Mar 2016 20:27:57 -0500 Subject: [PATCH 16/77] The blob can now be shocked by the tesla Strong blobs are now much more resistant to brute damage. Don't even bother hitting them with a wrench. Tweaks blob reagents; Removes Ripping Tendrils and Draining Spikes Sporing Pods now does much less damage, and is less likely to produce spores when killed Replicating Foam now takes increased brute damage and when expanding from damage, will not expand again Energized Fibers no longer heals when hit with stamina damage, and is instead immune to the tesla Boiling Oil takes damage from extinguisher blasts. Its blobbernauts, however, do not Flammable Goo takes 50% increased burn damage Regenerative Materia, Hallucinogenic Nectar, and Envenomed Filaments each do less toxin damage Poisonous Strands applies its damage over a longer period of time Explosive Lattice now takes much higher damage from fire, flashbangs, and the tesla Reactive Gelatin now has a lower minimum damage Electromagnetic Web takes full brute damage, lasers will now one-hit normal blobs, and the death EMP is smaller Cryogenic Liquid does less burn damage Pressurized Slime does less brute damage --- code/game/gamemodes/blob/blobs/shield.dm | 1 + code/game/gamemodes/blob/theblob.dm | 17 ++- code/modules/power/tesla/energy_ball.dm | 16 ++- .../chemistry/reagents/blob_reagents.dm | 136 ++++++++---------- 4 files changed, 93 insertions(+), 77 deletions(-) diff --git a/code/game/gamemodes/blob/blobs/shield.dm b/code/game/gamemodes/blob/blobs/shield.dm index 106b128d043..c3003136915 100644 --- a/code/game/gamemodes/blob/blobs/shield.dm +++ b/code/game/gamemodes/blob/blobs/shield.dm @@ -5,6 +5,7 @@ desc = "A solid wall of slightly twitching tendrils." health = 150 maxhealth = 150 + brute_resist = 0.1 explosion_block = 3 point_return = 2 atmosblock = 1 diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index e3a5b63d332..a977f430d1e 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -132,7 +132,7 @@ O.do_attack_animation(A) //visually attack the whatever return O //just in case you want to do something to the animation. -/obj/effect/blob/proc/expand(turf/T = null, controller = null) +/obj/effect/blob/proc/expand(turf/T = null, controller = null, expand_reaction = 1) if(!T) var/list/dirs = list(1,2,4,8) for(var/i = 1 to 4) @@ -171,7 +171,7 @@ B.density = initial(B.density) B.loc = T B.update_icon() - if(B.overmind) + if(B.overmind && expand_reaction) B.overmind.blob_reagent_datum.expand_reaction(src, B, T) return B else @@ -194,6 +194,19 @@ var/damage = Clamp(0.01 * exposed_temperature, 0, 4) take_damage(damage, BURN) +/obj/effect/blob/tesla_act(power) + ..() + if(overmind) + if(overmind.blob_reagent_datum.tesla_reaction(src, power)) + take_damage(power/400, BURN) + else + take_damage(power/400, BURN) + +/obj/effect/blob/extinguish() + ..() + if(overmind) + overmind.blob_reagent_datum.extinguish_reaction(src) + /obj/effect/blob/bullet_act(var/obj/item/projectile/Proj) ..() take_damage(Proj.damage, Proj.damage_type, Proj) diff --git a/code/modules/power/tesla/energy_ball.dm b/code/modules/power/tesla/energy_ball.dm index a6150b593af..f8b4e71ffa1 100644 --- a/code/modules/power/tesla/energy_ball.dm +++ b/code/modules/power/tesla/energy_ball.dm @@ -148,6 +148,7 @@ var/list/blacklisted_tesla_types = list(/obj/machinery/atmospherics, var/mob/living/closest_mob var/obj/machinery/closest_machine var/obj/structure/closest_structure + var/obj/effect/blob/closest_blob for(var/A in oview(source, zap_range)) if(istype(A, /obj/machinery/power/tesla_coil)) @@ -197,6 +198,17 @@ var/list/blacklisted_tesla_types = list(/obj/machinery/atmospherics, else if(closest_mob) continue + else if(istype(A, /obj/effect/blob)) + var/obj/effect/blob/B = A + var/dist = get_dist(source, A) + if((dist < closest_dist || !closest_tesla_coil) && !B.being_shocked) + closest_blob = B + closest_atom = A + closest_dist = dist + + else if(closest_mob) + continue + else if(istype(A, /obj/structure)) var/obj/structure/S = A var/dist = get_dist(source, A) @@ -205,7 +217,6 @@ var/list/blacklisted_tesla_types = list(/obj/machinery/atmospherics, closest_atom = A closest_dist = dist - //Alright, we've done our loop, now lets see if was anything interesting in range if(closest_atom) //common stuff @@ -234,6 +245,9 @@ var/list/blacklisted_tesla_types = list(/obj/machinery/atmospherics, else if(closest_machine) closest_machine.tesla_act(power) + else if(closest_blob) + closest_blob.tesla_act(power) + else if(closest_structure) closest_structure.tesla_act(power) diff --git a/code/modules/reagents/chemistry/reagents/blob_reagents.dm b/code/modules/reagents/chemistry/reagents/blob_reagents.dm index ccebaa37768..bc5df560e4a 100644 --- a/code/modules/reagents/chemistry/reagents/blob_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/blob_reagents.dm @@ -23,40 +23,11 @@ /datum/reagent/blob/proc/expand_reaction(obj/effect/blob/B, obj/effect/blob/newB, turf/T) //when the blob expands, do this return -//does brute and a little stamina damage -/datum/reagent/blob/ripping_tendrils - name = "Ripping Tendrils" - id = "ripping_tendrils" - description = "will do medium brute and stamina damage." - color = "#991010" - complementary_color = "#109999" - blobbernaut_message = "rips" - message_living = ", and you feel your skin ripping and tearing off" +/datum/reagent/blob/proc/tesla_reaction(obj/effect/blob/B, power) //when the blob is hit by a tesla bolt, do this + return 1 //return 0 to ignore damage -/datum/reagent/blob/ripping_tendrils/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) - reac_volume = ..() - M.apply_damage(0.7*reac_volume, BRUTE) - if(M) - M.adjustStaminaLoss(0.5*reac_volume) - if(iscarbon(M)) - M.emote("scream") - -//does brute and drains blood from humans -/datum/reagent/blob/draining_spikes - name = "Draining Spikes" - id = "draining_spikes" - description = "will do medium brute damage and drain blood." - color = "#AF4150" - complementary_color = "#41AFA0" - blobbernaut_message = "drains" - message_living = ", and you feel lightheaded" - -/datum/reagent/blob/draining_spikes/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) - reac_volume = ..() - M.apply_damage(0.6*reac_volume, BRUTE) - if(ishuman(M) && M.stat != DEAD) - var/mob/living/carbon/human/H = M - H.drip(reac_volume) //will kill at 18 hits(no bio protection) and cause bad effects before that +/datum/reagent/blob/proc/extinguish_reaction(obj/effect/blob/B) //when the blob is hit with water, do this + return //does low toxin damage, but creates fragile spores when expanding or killed by weak attacks /datum/reagent/blob/sporing_pods @@ -70,10 +41,10 @@ /datum/reagent/blob/sporing_pods/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() - M.apply_damage(0.5*reac_volume, TOX) + M.apply_damage(0.2*reac_volume, TOX) /datum/reagent/blob/sporing_pods/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) - if(!isnull(cause) && damage <= 20 && original_health - damage <= 0 && prob(50)) //if the cause isn't fire or a bomb, the damage is less than 21, we're going to die from that damage, 50% chance of a shitty spore. + if(!isnull(cause) && damage <= 20 && original_health - damage <= 0 && prob(30)) //if the cause isn't fire or a bomb, the damage is less than 21, we're going to die from that damage, 30% chance of a shitty spore. B.visible_message("A spore floats free of the blob!") var/mob/living/simple_animal/hostile/blob/blobspore/weak/BS = new/mob/living/simple_animal/hostile/blob/blobspore/weak(B.loc) BS.overmind = B.overmind @@ -92,7 +63,7 @@ /datum/reagent/blob/replicating_foam name = "Replicating Foam" id = "replicating_foam" - description = "will do medium brute damage and replicate when damaged." + description = "will do medium brute damage and replicate when damaged, but takes increased brute damage." shortdesc = "will do medium brute damage." color = "#7B5A57" complementary_color = "#57787B" @@ -102,13 +73,16 @@ M.apply_damage(0.6*reac_volume, BRUTE) /datum/reagent/blob/replicating_foam/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) - if(damage > 0 && original_health - damage > 0 && prob(60)) - var/obj/effect/blob/newB = B.expand() + var/effectivedamage = damage + if(damage_type == BRUTE) + effectivedamage = damage * 2 + if(effectivedamage > 0 && original_health - effectivedamage > 0 && prob(60)) + var/obj/effect/blob/newB = B.expand(null, null, 0) if(newB) - newB.health = original_health - damage + newB.health = original_health - effectivedamage newB.check_health(cause) newB.update_icon() - return ..() + return effectivedamage /datum/reagent/blob/replicating_foam/expand_reaction(obj/effect/blob/B, obj/effect/blob/newB, turf/T) if(prob(40)) @@ -145,11 +119,11 @@ B.forceMove(T) //swap the blobs return ..() -//does low burn and a lot of stamina damage, reacts to stamina damage +//does low burn and a lot of stamina damage, immune to tesla bolts /datum/reagent/blob/energized_fibers name = "Energized Fibers" id = "energized_fibers" - description = "will do low burn and high stamina damage, and react to stamina damage." + description = "will do low burn and high stamina damage and conduct electricity." shortdesc = "will do low burn and high stamina damage." color = "#EFD65A" complementary_color = "#5A73EF" @@ -158,21 +132,19 @@ /datum/reagent/blob/energized_fibers/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() - M.apply_damage(0.5*reac_volume, BURN) + M.apply_damage(0.4*reac_volume, BURN) if(M) M.adjustStaminaLoss(0.8*reac_volume) -/datum/reagent/blob/energized_fibers/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) - if(damage_type == STAMINA) - B.visible_message("The blob abruptly regenerates!") - B.health = B.maxhealth //stop disabling the blob! - return ..() +/datum/reagent/blob/energized_fibers/tesla_reaction(obj/effect/blob/B, power) + return 0 -//sets you on fire, does burn damage +//sets you on fire, does burn damage, weak to water /datum/reagent/blob/boiling_oil name = "Boiling Oil" id = "boiling_oil" - description = "will do medium burn damage and set targets on fire." + description = "will do medium burn damage and set targets on fire, but is weak to water." + shortdesc = "will do medium burn damage and set targets on fire." color = "#B68D00" complementary_color = "#0029B6" blobbernaut_message = "splashes" @@ -184,10 +156,13 @@ M.adjust_fire_stacks(round(reac_volume/12)) M.IgniteMob() if(M) - M.apply_damage(0.6*reac_volume, BURN) + M.apply_damage(0.4*reac_volume, BURN) if(iscarbon(M)) M.emote("scream") +/datum/reagent/blob/boiling_oil/extinguish_reaction(obj/effect/blob/B) + B.take_damage(rand(2, 3), BURN) + //does burn and toxin damage, explodes into flame when hit with burn damage /datum/reagent/blob/flammable_goo name = "Flammable Goo" @@ -211,7 +186,7 @@ for(var/turf/T in range(1, B)) if(prob(80)) PoolOrNew(/obj/effect/hotspot, T) - return damage * 1.3 + return damage * 1.5 return ..() //does toxin damage, targets think they're not hurt at all @@ -227,7 +202,7 @@ reac_volume = ..() if(M.reagents) M.reagents.add_reagent("regenerative_materia", 0.2*reac_volume) - M.apply_damage(0.6*reac_volume, TOX) + M.apply_damage(0.5*reac_volume, TOX) /datum/reagent/blob/regenerative_materia/on_mob_life(mob/living/M) M.adjustToxLoss(1*REM) @@ -260,7 +235,7 @@ if(M.reagents) M.reagents.add_reagent("spore", 0.2*reac_volume) - M.apply_damage(0.6*reac_volume, TOX) + M.apply_damage(0.5*reac_volume, TOX) //kills sleeping targets and turns them into blob zombies /datum/reagent/blob/zombifying_feelers @@ -273,7 +248,6 @@ /datum/reagent/blob/zombifying_feelers/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() - M.apply_damage(0.6*reac_volume, TOX) if(O && ishuman(M) && M.stat == UNCONSCIOUS) M.death() //sleeping in a fight? bad plan. var/mob/living/simple_animal/hostile/blob/blobspore/BS = new/mob/living/simple_animal/hostile/blob/blobspore/weak(get_turf(M)) @@ -281,6 +255,8 @@ BS.update_icons() O.blob_mobs.Add(BS) BS.Zombify(M) + if(M) + M.apply_damage(0.6*reac_volume, TOX) //toxin, stamina, and some bonus spore toxin /datum/reagent/blob/envenomed_filaments @@ -295,7 +271,7 @@ reac_volume = ..() if(M.reagents) M.reagents.add_reagent("spore", 0.2*reac_volume) - M.apply_damage(0.6*reac_volume, TOX) + M.apply_damage(0.4*reac_volume, TOX) if(M) M.adjustStaminaLoss(0.4*reac_volume) @@ -312,12 +288,12 @@ /datum/reagent/blob/poisonous_strands/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() if(M.reagents) - M.reagents.add_reagent("poisonous_strands", 0.12*reac_volume) + M.reagents.add_reagent("poisonous_strands", 0.16*reac_volume) /datum/reagent/blob/poisonous_strands/on_mob_life(mob/living/M) - M.adjustBruteLoss(1.5*REM) - M.adjustFireLoss(1.5*REM) - M.adjustToxLoss(1.5*REM) + M.adjustBruteLoss(1*REM) + M.adjustFireLoss(1*REM) + M.adjustToxLoss(1*REM) ..() //does oxygen damage, randomly pushes or pulls targets @@ -368,26 +344,29 @@ if(reac_volume >= 10) //if it's not a spore cloud, bad time incoming var/obj/effect/overlay/temp/explosion/E = PoolOrNew(/obj/effect/overlay/temp/explosion, get_turf(M)) E.alpha = 150 - for(var/mob/living/L in range(M, 1)) + for(var/mob/living/L in orange(M, 1)) if("blob" in L.faction) //no friendly fire continue L.apply_damage(0.6*reac_volume, BRUTE) if(M) - M.apply_damage(0.1*reac_volume, BRUTE) + M.apply_damage(0.6*reac_volume, BRUTE) else M.apply_damage(0.8*reac_volume, BRUTE) /datum/reagent/blob/explosive_lattice/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) - if(isnull(cause) && damage_type == BRUTE) - return 0 //no-sell the explosion we do not take damage + if(isnull(cause) + if(damage_type == BRUTE) + return 0 //no-sell the explosion we do not take damage + if(damage_type == BURN) + return damage * 1.5 //take more from fire, tesla, and flashbangs return ..() //does semi-random brute damage and reacts to brute damage /datum/reagent/blob/reactive_gelatin name = "Reactive Gelatin" id = "reactive_gelatin" - description = "will do high brute damage and react to brute damage." - shortdesc = "will do high brute damage." + description = "will do random brute damage and react to brute damage." + shortdesc = "will do random brute damage." color = "#FFA500" complementary_color = "#005AFF" blobbernaut_message = "pummels" @@ -395,7 +374,7 @@ /datum/reagent/blob/reactive_gelatin/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() - var/damage = rand(10, 30)/25 + var/damage = rand(0, 30)/25 M.apply_damage(damage*reac_volume, BRUTE) /datum/reagent/blob/reactive_gelatin/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) @@ -422,7 +401,7 @@ if(M.reagents) M.reagents.add_reagent("frostoil", 0.4*reac_volume) M.reagents.add_reagent("ice", 0.4*reac_volume) - M.apply_damage(0.6*reac_volume, BURN) + M.apply_damage(0.4*reac_volume, BURN) if(M) M.adjustStaminaLoss(0.4*reac_volume) @@ -430,7 +409,7 @@ /datum/reagent/blob/electromagnetic_web name = "Electromagnetic Web" id = "electromagnetic_web" - description = "will do low burn damage and EMP targets, but is somewhat fragile." + description = "will do low burn damage and EMP targets, but is very fragile." shortdesc = "will do low burn damage and EMP targets." color = "#83ECEC" complementary_color = "#EC8383" @@ -440,17 +419,25 @@ /datum/reagent/blob/electromagnetic_web/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() - if(prob(reac_volume)) + if(prob(reac_volume*2)) M.emp_act(2) if(M) M.apply_damage(0.6*reac_volume, BURN) /datum/reagent/blob/electromagnetic_web/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) - return damage * 1.2 //a laser will do 24 damage, which will kill any recently-made normal blob + if(damage_type == BRUTE) //take full brute + switch(B.brute_resist) + if(0.5) + return damage * 2 + if(0.25) + return damage * 4 + if(0.1) + return damage * 10 + return damage * 1.25 //a laser will do 25 damage, which will kill any normal blob /datum/reagent/blob/electromagnetic_web/death_reaction(obj/effect/blob/B, cause) if(cause) - empulse(B.loc, 2, 3) //less than screen range, so you can stand out of range to avoid it + empulse(B.loc, 1, 2) //less than screen range, so you can stand out of range to avoid it //does brute damage, bonus damage for each nearby blob, and spreads damage out /datum/reagent/blob/synchronous_mesh @@ -509,13 +496,14 @@ /datum/reagent/blob/adaptive_nexuses/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() - M.apply_damage(0.6*reac_volume, BRUTE) if(O && ishuman(M) && M.stat == UNCONSCIOUS) PoolOrNew(/obj/effect/overlay/temp/revenant, get_turf(M)) var/points = rand(5, 10) O.add_points(points) O << "Gained [points] resources from the death of [M]." M.death() + if(M) + M.apply_damage(0.6*reac_volume, BRUTE) //does low brute damage, oxygen damage, and stamina damage and wets tiles when damaged /datum/reagent/blob/pressurized_slime @@ -534,7 +522,7 @@ var/turf/simulated/T = get_turf(M) if(istype(T, /turf/simulated) && prob(reac_volume)) T.MakeSlippery(TURF_WET_WATER) - M.apply_damage(0.4*reac_volume, BRUTE) + M.apply_damage(0.2*reac_volume, BRUTE) if(M) M.apply_damage(0.4*reac_volume, OXY) if(M) From c02c647a8977565f1b58d8a4ba6f0964244907ff Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Tue, 8 Mar 2016 20:42:11 -0500 Subject: [PATCH 17/77] i'm not even sure what this does tbhtbthbthtbthtbhthtbthtbthtbthtbthtbththbthbthtbh --- code/modules/power/tesla/energy_ball.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/tesla/energy_ball.dm b/code/modules/power/tesla/energy_ball.dm index f8b4e71ffa1..f51b4386482 100644 --- a/code/modules/power/tesla/energy_ball.dm +++ b/code/modules/power/tesla/energy_ball.dm @@ -206,7 +206,7 @@ var/list/blacklisted_tesla_types = list(/obj/machinery/atmospherics, closest_atom = A closest_dist = dist - else if(closest_mob) + else if(closest_blob) continue else if(istype(A, /obj/structure)) From 3031953f6874c662798abfcf2e90d807ae8ca079 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Tue, 8 Mar 2016 20:51:30 -0500 Subject: [PATCH 18/77] ) --- code/modules/reagents/chemistry/reagents/blob_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/blob_reagents.dm b/code/modules/reagents/chemistry/reagents/blob_reagents.dm index bc5df560e4a..7fbdf46cdb3 100644 --- a/code/modules/reagents/chemistry/reagents/blob_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/blob_reagents.dm @@ -354,7 +354,7 @@ M.apply_damage(0.8*reac_volume, BRUTE) /datum/reagent/blob/explosive_lattice/damage_reaction(obj/effect/blob/B, original_health, damage, damage_type, cause) - if(isnull(cause) + if(isnull(cause)) if(damage_type == BRUTE) return 0 //no-sell the explosion we do not take damage if(damage_type == BURN) From 240fd5bc056ee050a8efc715c0eb93dc37c806f3 Mon Sep 17 00:00:00 2001 From: c0 Date: Wed, 9 Mar 2016 09:29:37 +0300 Subject: [PATCH 19/77] Plant Refactor: Genesis --- .../objects/effects/decals/Cleanable/misc.dm | 7 + code/modules/hydroponics/grown.dm | 98 ++++++++- code/modules/hydroponics/grown/banana.dm | 70 +++---- code/modules/hydroponics/grown/berries.dm | 19 +- code/modules/hydroponics/grown/mushrooms.dm | 43 +--- code/modules/hydroponics/grown/potato.dm | 10 + code/modules/hydroponics/grown/tomato.dm | 40 +--- code/modules/hydroponics/growninedible.dm | 44 +++- code/modules/hydroponics/plant_genes.dm | 198 ++++++++++++++++++ code/modules/hydroponics/seeds.dm | 44 +++- icons/effects/tomatodecal.dmi | Bin 7450 -> 8291 bytes tgstation.dme | 1 + 12 files changed, 429 insertions(+), 145 deletions(-) create mode 100644 code/modules/hydroponics/plant_genes.dm diff --git a/code/game/objects/effects/decals/Cleanable/misc.dm b/code/game/objects/effects/decals/Cleanable/misc.dm index a0182ff44a5..b4d66d84595 100644 --- a/code/game/objects/effects/decals/Cleanable/misc.dm +++ b/code/game/objects/effects/decals/Cleanable/misc.dm @@ -117,6 +117,13 @@ icon = 'icons/effects/tomatodecal.dmi' random_icon_states = list("tomato_floor1", "tomato_floor2", "tomato_floor3") +/obj/effect/decal/cleanable/plant_smudge + name = "plant smudge" + density = 0 + layer = 2 + icon = 'icons/effects/tomatodecal.dmi' + random_icon_states = list("smashed_plant") + /obj/effect/decal/cleanable/egg_smudge name = "smashed egg" desc = "Seems like this one won't hatch." diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 20957c309bc..0c14842f4a1 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -9,6 +9,7 @@ var/obj/item/seeds/seed = null // type path, gets converted to item on New(). It's safe to assume it's always a seed item. var/plantname = "" var/bitesize_mod = 0 + var/splat_type = /obj/effect/decal/cleanable/plant_smudge // If set, bitesize = 1 + round(reagents.total_volume / bitesize_mod) dried_type = -1 // Saves us from having to define each stupid grown's dried_type as itself. @@ -38,6 +39,13 @@ transform *= TransformUsingVariable(seed.potency, 100, 0.5) //Makes the resulting produce's sprite larger or smaller based on potency! + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G) + if(istype(src.loc,/mob)) + pickup(src.loc)//adjusts the lighting on the mob + else + src.SetLuminosity(G.get_lum(seed)) + /obj/item/weapon/reagent_containers/food/snacks/grown/proc/add_juice() if(reagents) @@ -46,6 +54,12 @@ return 1 return 0 +/obj/item/weapon/reagent_containers/food/snacks/grown/examine(user) + ..() + for(var/datum/plant_gene/trait/T in seed.genes) + if(T.examine_line) + user << T.examine_line + /obj/item/weapon/reagent_containers/food/snacks/grown/attackby(obj/item/O, mob/user, params) ..() if (istype(O, /obj/item/device/analyzer/plant_analyzer)) @@ -72,15 +86,93 @@ return return + +// Various gene procs +/obj/item/weapon/reagent_containers/food/snacks/grown/attack_self(mob/user) + if(seed.get_gene(/datum/plant_gene/trait/squash)) + squash(user) + ..() + +/obj/item/weapon/reagent_containers/food/snacks/grown/throw_impact(atom/hit_atom) + if(!..() && seed.get_gene(/datum/plant_gene/trait/squash)) //was it caught by a mob? + squash(hit_atom) + +/obj/item/weapon/reagent_containers/food/snacks/grown/proc/squash(atom/target) + var/turf/T = get_turf(target) + if(ispath(splat_type, /obj/effect/decal/cleanable/plant_smudge)) + if(filling_color) + var/obj/O = new splat_type(T) + O.color = filling_color + O.name = "[name] smudge" + else if(splat_type) + new splat_type(T) + + if(trash) + if(ispath(trash, /obj/item/weapon/grown) || ispath(trash, /obj/item/weapon/reagent_containers/food/snacks/grown)) + new trash(T, seed) + else + new trash(T) + + visible_message("[src] has been squashed.","You hear a smack.") + for(var/datum/plant_gene/trait/trait in seed.genes) + trait.on_squash(src, target) + + for(var/atom/A in T) + reagents.reaction(A) + + qdel(src) + +/obj/item/weapon/reagent_containers/food/snacks/grown/On_Consume() + if(iscarbon(usr)) + for(var/datum/plant_gene/trait/T in seed.genes) + T.on_consume(src, usr) + ..() + +/obj/item/weapon/reagent_containers/food/snacks/grown/Crossed(AM as mob|obj) + var/datum/plant_gene/trait/slip/S = seed.get_gene(/datum/plant_gene/trait/slip) + if(S && !ispath(trash, /obj/item/weapon/grown) && istype(AM, /mob/living/carbon)) + var/mob/living/carbon/M = AM + var/stun = min(seed.potency * S.rate * 2, 1) + var/weaken = min(seed.potency * S.rate, 0.5) + if(M.slip(stun, weaken, src)) + for(var/datum/plant_gene/trait/T in seed.genes) + T.on_slip(src, M) + return 1 + ..() + + +// Glow gene procs +/obj/item/weapon/reagent_containers/food/snacks/grown/Destroy() + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G && istype(loc,/mob)) + loc.AddLuminosity(-G.get_lum(seed)) + return ..() + +/obj/item/weapon/reagent_containers/food/snacks/grown/pickup(mob/user) + ..() + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G) + SetLuminosity(0) + user.AddLuminosity(G.get_lum(seed)) + +/obj/item/weapon/reagent_containers/food/snacks/grown/dropped(mob/user) + ..() + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G) + user.AddLuminosity(-G.get_lum(seed)) + SetLuminosity(G.get_lum(seed)) + + + // For item-containing growns such as eggy or gatfruit /obj/item/weapon/reagent_containers/food/snacks/grown/shell/attack_self(mob/user as mob) user.unEquip(src) if(trash) var/obj/item/weapon/T - if(ispath(trash, /obj/item/weapon/grown)) + if(ispath(trash, /obj/item/weapon/grown) || ispath(trash, /obj/item/weapon/reagent_containers/food/snacks/grown)) T = new trash(user.loc, seed) else T = new trash(user.loc) user.put_in_hands(T) - user << "You open [src]\'s shell, revealing [T]." - qdel(src) \ No newline at end of file + user << "You open [src]\'s shell, revealing \a [T]." + qdel(src) diff --git a/code/modules/hydroponics/grown/banana.dm b/code/modules/hydroponics/grown/banana.dm index 0af64abeb50..95e8ccc6387 100644 --- a/code/modules/hydroponics/grown/banana.dm +++ b/code/modules/hydroponics/grown/banana.dm @@ -9,6 +9,7 @@ lifespan = 50 endurance = 30 icon_dead = "banana-dead" + genes = list(/datum/plant_gene/trait/slip) mutatelist = list(/obj/item/seeds/banana/mime, /obj/item/seeds/banana/bluespace) reagents_add = list("banana" = 0.1, "vitamin" = 0.04, "nutriment" = 0.02) @@ -35,6 +36,22 @@ user.visible_message("[user] laughs so hard they begin to suffocate!") return (OXYLOSS) +/obj/item/weapon/grown/bananapeel + seed = /obj/item/seeds/banana + name = "banana peel" + desc = "A peel from a banana." + icon_state = "banana_peel" + item_state = "banana_peel" + w_class = 1 + throwforce = 0 + throw_speed = 3 + throw_range = 7 + +/obj/item/weapon/grown/bananapeel/suicide_act(mob/user) + user.visible_message("[user] is deliberately slipping on the [src.name]! It looks like \he's trying to commit suicide.") + playsound(loc, 'sound/misc/slip.ogg', 50, 1, -1) + return (BRUTELOSS) + // Mimana - invisible sprites are totally a feature! /obj/item/seeds/banana/mime @@ -57,6 +74,11 @@ trash = /obj/item/weapon/grown/bananapeel/mimanapeel filling_color = "#FFFFEE" +/obj/item/weapon/grown/bananapeel/mimanapeel + seed = /obj/item/seeds/banana/mime + name = "mimana peel" + desc = "A mimana peel." + icon_state = "mimana_peel" // Bluespace Banana /obj/item/seeds/banana/bluespace @@ -68,6 +90,7 @@ plantname = "Bluespace Banana Tree" product = /obj/item/weapon/reagent_containers/food/snacks/grown/banana/bluespace mutatelist = list() + genes = list(/datum/plant_gene/trait/slip, /datum/plant_gene/trait/teleport) reagents_add = list("singulo" = 0.2, "banana" = 0.1, "vitamin" = 0.04, "nutriment" = 0.02) rarity = 30 @@ -79,60 +102,19 @@ filling_color = "#0000FF" origin_tech = "bluespace=3" - - - -// Banana Peels -/obj/item/weapon/grown/bananapeel - name = "banana peel" - desc = "A peel from a banana." - icon_state = "banana_peel" - item_state = "banana_peel" - w_class = 1 - throwforce = 0 - throw_speed = 3 - throw_range = 7 - -/obj/item/weapon/grown/bananapeel/suicide_act(mob/user) - user.visible_message("[user] is deliberately slipping on the [src.name]! It looks like \he's trying to commit suicide.") - playsound(loc, 'sound/misc/slip.ogg', 50, 1, -1) - return (BRUTELOSS) - -/obj/item/weapon/grown/bananapeel/Crossed(AM as mob|obj) - if (istype(AM, /mob/living/carbon)) - var/mob/living/carbon/M = AM - var/stun = Clamp(seed.potency / 10, 1, 10) - var/weaken = Clamp(seed.potency / 20, 0.5, 5) - M.slip(stun, weaken, src) - return 1 - /obj/item/weapon/grown/bananapeel/bluespace + seed = /obj/item/seeds/banana/bluespace name = "bluespace banana peel" desc = "A peel from a bluespace banana." icon_state = "banana_peel_blue" origin_tech = "bluespace=3" -/obj/item/weapon/grown/bananapeel/bluespace/Crossed(AM) - if(..()) - var/teleport_radius = max(round(seed.potency / 10), 1) - - do_teleport(AM, get_turf(AM), teleport_radius) - AM << "You slip through spacetime!" - - if(prob(50)) - do_teleport(src, get_turf(src), teleport_radius) - else - qdel(src) +// Other /obj/item/weapon/grown/bananapeel/specialpeel //used by /obj/item/clothing/shoes/clown_shoes/banana_shoes name = "synthesized banana peel" desc = "A synthetic banana peel." /obj/item/weapon/grown/bananapeel/specialpeel/Crossed(AM) if(..()) - qdel(src) - -/obj/item/weapon/grown/bananapeel/mimanapeel - name = "mimana peel" - desc = "A mimana peel." - icon_state = "mimana_peel" \ No newline at end of file + qdel(src) \ No newline at end of file diff --git a/code/modules/hydroponics/grown/berries.dm b/code/modules/hydroponics/grown/berries.dm index 35c143d8fe5..529f6914820 100644 --- a/code/modules/hydroponics/grown/berries.dm +++ b/code/modules/hydroponics/grown/berries.dm @@ -75,6 +75,7 @@ lifespan = 30 endurance = 25 mutatelist = list() + genes = list(/datum/plant_gene/trait/glow/berry) reagents_add = list("uranium" = 0.25, "vitamin" = 0.04, "nutriment" = 0.1) rarity = 20 @@ -82,27 +83,9 @@ seed = /obj/item/seeds/berry/glow name = "bunch of glow-berries" desc = "Nutritious!" - var/on = 1 - var/brightness_on = 2 //luminosity when on icon_state = "glowberrypile" filling_color = "#7CFC00" -/obj/item/weapon/reagent_containers/food/snacks/grown/berries/glow/Destroy() - if(istype(loc,/mob)) - loc.AddLuminosity(round(-seed.potency / 5)) - return ..() - -/obj/item/weapon/reagent_containers/food/snacks/grown/berries/glow/pickup(mob/user) - ..() - src.SetLuminosity(0) - user.AddLuminosity(round(seed.potency / 5)) - -/obj/item/weapon/reagent_containers/food/snacks/grown/berries/glow/dropped(mob/user) - ..() - user.AddLuminosity(round(-seed.potency / 5)) - src.SetLuminosity(round(seed.potency / 5)) - - // Cherries /obj/item/seeds/cherry name = "pack of cherry pits" diff --git a/code/modules/hydroponics/grown/mushrooms.dm b/code/modules/hydroponics/grown/mushrooms.dm index eebfcc4c661..c5f807fb6bd 100644 --- a/code/modules/hydroponics/grown/mushrooms.dm +++ b/code/modules/hydroponics/grown/mushrooms.dm @@ -217,6 +217,7 @@ growthstages = 4 plant_type = PLANT_MUSHROOM rarity = 20 + genes = list(/datum/plant_gene/trait/glow) mutatelist = list(/obj/item/seeds/glowshroom/glowcap) reagents_add = list("radium" = 0.05, "nutriment" = 0.04) @@ -228,13 +229,6 @@ filling_color = "#00FA9A" var/effect_path = /obj/effect/glowshroom -/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/New(var/loc, var/new_potency = 10) - ..() - if(istype(src.loc,/mob)) - pickup(src.loc)//adjusts the lighting on the mob - else - src.SetLuminosity(round(seed.potency / 10,1)) - /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/attack_self(mob/user) if(istype(user.loc,/turf/space)) return @@ -246,21 +240,6 @@ user << "You plant [src]." qdel(src) -/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/Destroy() - if(istype(loc,/mob)) - loc.AddLuminosity(round(-seed.potency / 10,1)) - return ..() - -/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/pickup(mob/user) - ..() - SetLuminosity(0) - user.AddLuminosity(round(seed.potency / 10,1)) - -/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/dropped(mob/user) - ..() - user.AddLuminosity(round(-seed.potency / 10,1)) - SetLuminosity(round(seed.potency / 10,1)) - // Glowcap /obj/item/seeds/glowshroom/glowcap @@ -273,8 +252,9 @@ plantname = "Glowcaps" plant_type = PLANT_MUSHROOM product = /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/glowcap + genes = list(/datum/plant_gene/trait/glow, /datum/plant_gene/trait/cell_charge) mutatelist = list() - reagents_add = list("teslium" = 0.02, "nutriment" = 0.04) + reagents_add = list("teslium" = 0.01, "nutriment" = 0.04) rarity = 30 /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/glowcap @@ -283,19 +263,4 @@ desc = "Mycena Ruthenia: This species of mushroom glows in the dark, but aren't bioluminescent. They're warm to the touch..." icon_state = "glowcap" filling_color = "#00FA9A" - effect_path = /obj/effect/glowshroom/glowcap - -/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom/glowcap/On_Consume() - if(!reagents.total_volume) - var/batteries_recharged = 0 - for(var/obj/item/weapon/stock_parts/cell/C in usr.GetAllContents()) - var/newcharge = (seed.potency*0.01)*C.maxcharge - if(C.charge < newcharge) - C.charge = newcharge - if(isobj(C.loc)) - var/obj/O = C.loc - O.update_icon() //update power meters and such - batteries_recharged = 1 - if(batteries_recharged) - usr << "Battery has recovered." - ..() \ No newline at end of file + effect_path = /obj/effect/glowshroom/glowcap \ No newline at end of file diff --git a/code/modules/hydroponics/grown/potato.dm b/code/modules/hydroponics/grown/potato.dm index ef6e46c7cf4..94e14c826d8 100644 --- a/code/modules/hydroponics/grown/potato.dm +++ b/code/modules/hydroponics/grown/potato.dm @@ -33,7 +33,17 @@ user << "You add some cable to the potato and slide it inside the battery encasing." var/obj/item/weapon/stock_parts/cell/potato/pocell = new /obj/item/weapon/stock_parts/cell/potato(user.loc) pocell.maxcharge = seed.potency * 20 + + // The secret of potato supercells! + var/datum/plant_gene/trait/cell_charge/G = seed.get_gene(/datum/plant_gene/trait/cell_charge) + if(G) // 10x charge for deafult cell charge gene - 20 000 with 100 potency. + pocell.maxcharge *= G.rate*1000 pocell.charge = pocell.maxcharge + pocell.desc = "A rechargable starch based power cell. This one has a power rating of [maxcharge], and you should not swallow it." + + if(reagents.has_reagent("plasma", 2)) + pocell.rigged = 1 + qdel(src) return else diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm index 5a2cab6d6a6..338f5318664 100644 --- a/code/modules/hydroponics/grown/tomato.dm +++ b/code/modules/hydroponics/grown/tomato.dm @@ -9,6 +9,7 @@ maturation = 8 icon_grow = "tomato-grow" icon_dead = "tomato-dead" + genes = list(/datum/plant_gene/trait/squash) mutatelist = list(/obj/item/seeds/tomato/blue, /obj/item/seeds/tomato/blood, /obj/item/seeds/tomato/killer) reagents_add = list("vitamin" = 0.04, "nutriment" = 0.1) @@ -17,24 +18,10 @@ name = "tomato" desc = "I say to-mah-to, you say tom-mae-to." icon_state = "tomato" - var/splat_type = /obj/effect/decal/cleanable/tomato_smudge + splat_type = /obj/effect/decal/cleanable/tomato_smudge filling_color = "#FF6347" bitesize_mod = 2 -/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/proc/squish(atom/target) - var/turf/T = get_turf(target) - if(splat_type) - new splat_type(T) - visible_message("The [src.name] has been squashed.","You hear a smack.") - for(var/atom/A in get_turf(target)) - reagents.reaction(A) - -/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/throw_impact(atom/hit_atom) - if(!..()) //was it caught by a mob? - squish(hit_atom) - qdel(src) - - // Blood Tomato /obj/item/seeds/tomato/blood name = "pack of blood-tomato seeds" @@ -67,6 +54,7 @@ yield = 2 icon_grow = "bluetomato-grow" mutatelist = list(/obj/item/seeds/tomato/blue/bluespace) + genes = list(/datum/plant_gene/trait/slip) reagents_add = list("lube" = 0.2, "vitamin" = 0.04, "nutriment" = 0.1) rarity = 20 @@ -78,13 +66,6 @@ splat_type = /obj/effect/decal/cleanable/oil filling_color = "#0000FF" -/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/blue/Crossed(AM as mob|obj) - if (istype(AM, /mob/living/carbon)) - var/mob/living/carbon/M = AM - var/stun = Clamp(seed.potency / 10, 1, 10) - var/weaken = Clamp(seed.potency / 20, 0.5, 5) - M.slip(stun, weaken, src) - // Bluespace Tomato /obj/item/seeds/tomato/blue/bluespace @@ -96,6 +77,7 @@ product = /obj/item/weapon/reagent_containers/food/snacks/grown/tomato/blue/bluespace yield = 2 mutatelist = list() + genes = list(/datum/plant_gene/trait/squash, /datum/plant_gene/trait/slip, /datum/plant_gene/trait/teleport) reagents_add = list("lube" = 0.2, "singulo" = 0.2, "vitamin" = 0.04, "nutriment" = 0.1) rarity = 50 @@ -106,20 +88,6 @@ icon_state = "bluespacetomato" origin_tech = "bluespace=3" -/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/blue/bluespace/attack_self(mob/user) - squish(user) - user.unEquip(src) - src.visible_message("[user] squashes the [src.name].","You hear a smack.") - qdel(src) - -/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/blue/bluespace/squish(atom/squishee) - ..() - var/teleport_radius = max(round(seed.potency / 10), 1) - if(isliving(squishee)) - var/turf/T = get_turf(squishee) - new /obj/effect/decal/cleanable/molten_item(T) //Leave a pile of goo behind for dramatic effect... - do_teleport(squishee, get_turf(squishee), teleport_radius) - // Killer Tomato /obj/item/seeds/tomato/killer diff --git a/code/modules/hydroponics/growninedible.dm b/code/modules/hydroponics/growninedible.dm index 06943a06b7b..6a997407847 100644 --- a/code/modules/hydroponics/growninedible.dm +++ b/code/modules/hydroponics/growninedible.dm @@ -30,6 +30,13 @@ transform *= TransformUsingVariable(seed.potency, 100, 0.5) + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G) + if(istype(src.loc,/mob)) + pickup(src.loc)//adjusts the lighting on the mob + else + src.SetLuminosity(G.get_lum(seed)) + /obj/item/weapon/grown/attackby(obj/item/O, mob/user, params) ..() if (istype(O, /obj/item/device/analyzer/plant_analyzer)) @@ -42,4 +49,39 @@ /obj/item/weapon/grown/proc/add_juice() if(reagents) return 1 - return 0 \ No newline at end of file + return 0 + + +/obj/item/weapon/grown/Crossed(AM as mob|obj) + var/datum/plant_gene/trait/slip/S = seed.get_gene(/datum/plant_gene/trait/slip) + if(S && istype(AM, /mob/living/carbon)) + var/mob/living/carbon/M = AM + var/stun = min(seed.potency * S.rate * 2, 1) + var/weaken = min(seed.potency * S.rate, 0.5) + if(M.slip(stun, weaken, src)) + for(var/datum/plant_gene/trait/T in seed.genes) + T.on_slip(src, M) + return 1 + ..() + + +// Glow gene procs +/obj/item/weapon/grown/Destroy() + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G && istype(loc,/mob)) + loc.AddLuminosity(-G.get_lum(seed)) + return ..() + +/obj/item/weapon/grown/pickup(mob/user) + ..() + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G) + SetLuminosity(0) + user.AddLuminosity(G.get_lum(seed)) + +/obj/item/weapon/grown/dropped(mob/user) + ..() + var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) + if(G) + user.AddLuminosity(-G.get_lum(seed)) + SetLuminosity(G.get_lum(seed)) \ No newline at end of file diff --git a/code/modules/hydroponics/plant_genes.dm b/code/modules/hydroponics/plant_genes.dm new file mode 100644 index 00000000000..433e4cf1828 --- /dev/null +++ b/code/modules/hydroponics/plant_genes.dm @@ -0,0 +1,198 @@ +/datum/plant_gene + var/name + +/datum/plant_gene/proc/get_name() // Used for manipulator display and gene disk name. + return name + +/datum/plant_gene/proc/Copy() + return new type + + + +// Core plant genes store 5 main variables: lifespan, endurance, production, yield, potency +/datum/plant_gene/core + var/value + +/datum/plant_gene/core/get_name() + return "[name] [value]" + +/datum/plant_gene/core/New(var/i = null) + ..() + if(!isnull(i)) + value = i + +/datum/plant_gene/core/Copy() + var/datum/plant_gene/core/C = ..() + C.value = value + return C + + +/datum/plant_gene/core/lifespan + name = "Lifespan" + value = 25 + +/datum/plant_gene/core/endurance + name = "Endurance" + value = 15 + +/datum/plant_gene/core/production + name = "Production Speed" + value = 6 + +/datum/plant_gene/core/yield + name = "Yield" + value = 3 + +/datum/plant_gene/core/potency + name = "Potency" + value = 10 + + + +// Reagent genes store reagent ID and reagent ratio. Amount of reagent in the plant = 1 + (potency * rate) +/datum/plant_gene/reagent + name = "Nutriment" + var/reagent_id = "nutriment" + var/rate = 0.04 + +/datum/plant_gene/reagent/get_name() + return "[name] production [rate*100]%" + +/datum/plant_gene/reagent/proc/set_reagent(reag_id) + reagent_id = reag_id + name = "UNKNOWN" + + var/datum/reagent/R = chemical_reagents_list[reag_id] + if(R && R.id == reagent_id) + name = R.name + +/datum/plant_gene/reagent/New(reag_id = null, reag_rate = 0) + ..() + if(reag_id && reag_rate) + set_reagent(reag_id) + rate = reag_rate + +/datum/plant_gene/reagent/Copy() + var/datum/plant_gene/reagent/G = ..() + G.name = name + G.reagent_id = reagent_id + G.rate = rate + return G + + + +// Various traits affecting the product. Each must be somehow useful. +/datum/plant_gene/trait + var/rate = 0.05 + var/examine_line = "" + +/datum/plant_gene/trait/Copy() + var/datum/plant_gene/trait/G = ..() + G.rate = rate + return G + +/datum/plant_gene/trait/proc/on_consume(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/target) + return + +/datum/plant_gene/trait/proc/on_slip(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/target) + return + +/datum/plant_gene/trait/proc/on_squash(obj/item/weapon/reagent_containers/food/snacks/grown/G, atom/target) + return + + +/datum/plant_gene/trait/squash + // Allows the plant to be squashed when thrown or slipped on, leaving a colored mess and trash type item behind. + // Also splashes everything in target turf with reagents and applies other trait effects (teleporting, etc) to the target by on_squash. + // For code, see grown.dm + name = "Liquid Contents" + examine_line = "It has a lot of liquid contents inside." + +/*/datum/plant_gene/trait/squash/on_slip(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/target) + G.squash(target)*/ + + +/datum/plant_gene/trait/slip + // Makes plant slippery, unless it has a grown-type trash. Then the trash gets slippery. + // Applies other trait effects (teleporting, etc) to the target by on_slip. + // For code, see grown.dm + name = "Slippery Skin" + rate = 0.1 + examine_line = "It has a very slippery skin." + + +/datum/plant_gene/trait/cell_charge + // Cell recharging trait. Charges all mob's power cells to (potency*rate)% mark when eaten. + // Generates sparks on squash. + // Small (potency*rate*5) chance to shock squish or slip target for (potency*rate*5) damage. + // Multiplies max charge by (rate*1000) when used in potato power cells. + name = "Electrical Activity" + rate = 0.01 + +/datum/plant_gene/trait/cell_charge/on_slip(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/C) + var/power = G.seed.potency*rate*5 + if(prob(power)) + C.electrocute_act(round(power), G, 1, 1) + +/datum/plant_gene/trait/cell_charge/on_squash(obj/item/weapon/reagent_containers/food/snacks/grown/G, atom/target) + if(iscarbon(target)) + var/mob/living/carbon/C = target + var/power = G.seed.potency*rate*5 + if(prob(power)) + C.electrocute_act(round(power), G, 1, 1) + +/datum/plant_gene/trait/cell_charge/on_consume(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/target) + if(!G.reagents.total_volume) + var/batteries_recharged = 0 + for(var/obj/item/weapon/stock_parts/cell/C in target.GetAllContents()) + var/newcharge = min(G.seed.potency*0.01*C.maxcharge, C.maxcharge) + if(C.charge < newcharge) + C.charge = newcharge + if(isobj(C.loc)) + var/obj/O = C.loc + O.update_icon() //update power meters and such + C.update_icon() + batteries_recharged = 1 + if(batteries_recharged) + target << "Your batteries are recharged!" + + + +/datum/plant_gene/trait/glow + // Makes plant glow. Makes plant in tray glow too. + // Adds potency*rate luminosity to products. + name = "Bioluminescence" + rate = 0.1 + examine_line = "It emits a soft glow." + +/datum/plant_gene/trait/glow/proc/get_lum(obj/item/seeds/S) + return round(S.potency*rate) + +/datum/plant_gene/trait/glow/berry + name = "Strong Bioluminescence" + rate = 0.2 + + +/datum/plant_gene/trait/teleport + // Makes plant teleport people when squashed or slipped on. + // Teleport radius is calculated as max(round(potency*rate), 1) + name = "Bluespace Activity" + rate = 0.1 + +/datum/plant_gene/trait/teleport/on_squash(obj/item/weapon/reagent_containers/food/snacks/grown/G, atom/target) + if(isliving(target)) + var/teleport_radius = max(round(G.seed.potency / 10), 1) + var/turf/T = get_turf(target) + new /obj/effect/decal/cleanable/molten_item(T) //Leave a pile of goo behind for dramatic effect... + do_teleport(target, T, teleport_radius) + +/datum/plant_gene/trait/teleport/on_slip(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/C) + var/teleport_radius = max(round(G.seed.potency / 10), 1) + var/turf/T = get_turf(C) + C << "You slip through spacetime!" + do_teleport(C, T, teleport_radius) + if(prob(50)) + do_teleport(G, T, teleport_radius) + else + new /obj/effect/decal/cleanable/molten_item(T) //Leave a pile of goo behind for dramatic effect... + qdel(G) \ No newline at end of file diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index e71bc66aaaa..e98d0c111c4 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -26,6 +26,7 @@ var/plant_type = PLANT_NORMAL // 0 = PLANT_NORMAL; 1 = PLANT_WEED; 2 = PLANT_MUSHROOM; 3 = PLANT_ALIEN var/rarity = 0 // How rare the plant is. Used for giving points to cargo when shipping off to Centcom. var/list/mutatelist = list() // The type of plants that this plant can mutate into. + var/list/genes = list() // Plant genes are stored here, see plant_genes.dm for more info. var/list/reagents_add = list() // A list of reagents to add to product. // Format: "reagent_id" = potency multiplier @@ -33,7 +34,7 @@ // Total amount of any reagent in plant is calculated by formula: 1 + round(potency * multiplier) -/obj/item/seeds/New(loc, parent) +/obj/item/seeds/New(loc, nogenes = 0) ..() pixel_x = rand(-8, 8) pixel_y = rand(-8, 8) @@ -47,8 +48,25 @@ if(!icon_harvest && plant_type != PLANT_MUSHROOM && yield != -1) icon_harvest = "[species]-harvest" + if(!nogenes) // not used on Copy() + genes += new /datum/plant_gene/core/lifespan(lifespan) + genes += new /datum/plant_gene/core/endurance(endurance) + genes += new /datum/plant_gene/core/production(production) + if(yield != -1) + genes += new /datum/plant_gene/core/yield(yield) + if(potency != -1) + genes += new /datum/plant_gene/core/potency(potency) + + for(var/p in genes) + if(ispath(p)) + genes -= p + genes += new p + + for(var/reag_id in reagents_add) + genes += new /datum/plant_gene/reagent(reag_id, reagents_add[reag_id]) + /obj/item/seeds/proc/Copy() - var/obj/item/seeds/S = new type + var/obj/item/seeds/S = new type(null, 1) // Copy all the stats S.lifespan = lifespan S.endurance = endurance @@ -56,10 +74,17 @@ S.production = production S.yield = yield S.potency = potency + S.genes = list() + for(var/g in genes) + var/datum/plant_gene/G = g + S.genes += G.Copy() return S +/obj/item/seeds/proc/get_gene(typepath) + return (locate(typepath) in genes) + /obj/item/seeds/bullet_act(obj/item/projectile/Proj) //Works with the Somatoray to modify plant variables. - if(istype(Proj ,/obj/item/projectile/energy/florayield)) + if(istype(Proj, /obj/item/projectile/energy/florayield)) var/rating = 1 if(istype(loc, /obj/machinery/hydroponics)) @@ -125,18 +150,29 @@ if(yield <= 0 && plant_type == PLANT_MUSHROOM) yield = 1 // Mushrooms always have a minimum yield of 1. + var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/yield) + C.value = yield /obj/item/seeds/proc/adjust_lifespan(adjustamt) lifespan = Clamp(lifespan + adjustamt, 10, 100) + var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/lifespan) + C.value = lifespan /obj/item/seeds/proc/adjust_endurance(adjustamt) endurance = Clamp(endurance + adjustamt, 10, 100) + var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/endurance) + C.value = endurance /obj/item/seeds/proc/adjust_production(adjustamt) production = Clamp(production + adjustamt, 2, 10) + var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/production) + C.value = production /obj/item/seeds/proc/adjust_potency(adjustamt) - potency = Clamp(potency + adjustamt, 0, 100) + if(potency != -1) + potency = Clamp(potency + adjustamt, 0, 100) + var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/potency) + C.value = potency /obj/item/seeds/proc/get_analyzer_text() //in case seeds have something special to tell to the analyzer diff --git a/icons/effects/tomatodecal.dmi b/icons/effects/tomatodecal.dmi index a67e1a5e934ed8bff73c3466fc07e84484f3f169..8296ad0b495913decec0bd7e1950f49e12844a20 100644 GIT binary patch literal 8291 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 diff --git a/tgstation.dme b/tgstation.dme index cbe529525b1..9927e75c18f 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1093,6 +1093,7 @@ #include "code\modules\hydroponics\growninedible.dm" #include "code\modules\hydroponics\hydroitemdefines.dm" #include "code\modules\hydroponics\hydroponics.dm" +#include "code\modules\hydroponics\plant_genes.dm" #include "code\modules\hydroponics\seed_extractor.dm" #include "code\modules\hydroponics\seeds.dm" #include "code\modules\hydroponics\grown\ambrosia.dm" From 410ad607501ac42718382e2a8dd3140ec223169b Mon Sep 17 00:00:00 2001 From: c0 Date: Wed, 9 Mar 2016 09:30:07 +0300 Subject: [PATCH 20/77] fix --- code/modules/hydroponics/grown/potato.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown/potato.dm b/code/modules/hydroponics/grown/potato.dm index 94e14c826d8..7ada77c8557 100644 --- a/code/modules/hydroponics/grown/potato.dm +++ b/code/modules/hydroponics/grown/potato.dm @@ -39,7 +39,7 @@ if(G) // 10x charge for deafult cell charge gene - 20 000 with 100 potency. pocell.maxcharge *= G.rate*1000 pocell.charge = pocell.maxcharge - pocell.desc = "A rechargable starch based power cell. This one has a power rating of [maxcharge], and you should not swallow it." + pocell.desc = "A rechargable starch based power cell. This one has a power rating of [pocell.maxcharge], and you should not swallow it." if(reagents.has_reagent("plasma", 2)) pocell.rigged = 1 From 3cfc1f262663d86fc7b98e23fe4c80f425154082 Mon Sep 17 00:00:00 2001 From: RandomMarine Date: Wed, 9 Mar 2016 01:59:41 -0800 Subject: [PATCH 21/77] Remove copypasta --- .../chemistry/recipes/pyrotechnics.dm | 58 ++++++++----------- 1 file changed, 25 insertions(+), 33 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index bd5b6fcc337..476298bdef1 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -1,49 +1,45 @@ +/datum/chemical_reaction/reagent_explosion + name = "Generic explosive" + id = "reagent_explosion" + result = null + var/strength = 1 // A divisor. Lower means bigger and stronger explosions. -/datum/chemical_reaction/nitroglycerin +/datum/chemical_reaction/reagent_explosion/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + var/datum/effect_system/reagents_explosion/e = new() + e.set_up(round(created_volume/strength, 1), location, 0, 0) + e.start() + holder.clear_reagents() + + +/datum/chemical_reaction/reagent_explosion/nitroglycerin name = "Nitroglycerin" id = "nitroglycerin" result = "nitroglycerin" required_reagents = list("glycerol" = 1, "facid" = 1, "sacid" = 1) result_amount = 2 + strength = 2 -/datum/chemical_reaction/nitroglycerin/on_reaction(datum/reagents/holder, created_volume) +/datum/chemical_reaction/reagent_explosion/nitroglycerin/on_reaction(datum/reagents/holder, created_volume) if(holder.has_reagent("stabilizing_agent")) return holder.remove_reagent("nitroglycerin", created_volume) - var/location = get_turf(holder.my_atom) - var/datum/effect_system/reagents_explosion/e = new() - e.set_up(round (created_volume/2, 1), location, 0, 0) - e.start() - holder.clear_reagents() + ..() -/datum/chemical_reaction/nitroglycerin_explosion +/datum/chemical_reaction/reagent_explosion/nitroglycerin_explosion name = "Nitroglycerin explosion" id = "nitroglycerin_explosion" - result = null required_reagents = list("nitroglycerin" = 1) result_amount = 1 required_temp = 474 + strength = 2 -/datum/chemical_reaction/nitroglycerin_explosion/on_reaction(datum/reagents/holder, created_volume) - var/location = get_turf(holder.my_atom) - var/datum/effect_system/reagents_explosion/e = new() - e.set_up(round(created_volume/2, 1), location, 0, 0) - e.start() - holder.clear_reagents() - -/datum/chemical_reaction/potassium_explosion +/datum/chemical_reaction/reagent_explosion/potassium_explosion name = "Explosion" id = "potassium_explosion" - result = null required_reagents = list("water" = 1, "potassium" = 1) result_amount = 2 - -/datum/chemical_reaction/potassium_explosion/on_reaction(datum/reagents/holder, created_volume) - var/location = get_turf(holder.my_atom) - var/datum/effect_system/reagents_explosion/e = new() - e.set_up(round (created_volume/10, 1), location, 0, 0) - e.start() - holder.clear_reagents() + strength = 10 /datum/chemical_reaction/blackpowder name = "Black Powder" @@ -52,22 +48,18 @@ required_reagents = list("saltpetre" = 1, "charcoal" = 1, "sulfur" = 1) result_amount = 3 -/datum/chemical_reaction/blackpowder_explosion +/datum/chemical_reaction/reagent_explosion/blackpowder_explosion name = "Black Powder Kaboom" id = "blackpowder_explosion" - result = null required_reagents = list("blackpowder" = 1) result_amount = 1 required_temp = 474 + strength = 6 mix_message = "Sparks start flying around the black powder!" -/datum/chemical_reaction/blackpowder_explosion/on_reaction(datum/reagents/holder, created_volume) +/datum/chemical_reaction/reagent_explosion/blackpowder_explosion/on_reaction(datum/reagents/holder, created_volume) sleep(rand(50,100)) - var/location = get_turf(holder.my_atom) - var/datum/effect_system/reagents_explosion/e = new() - e.set_up(1 + round(created_volume/6, 1), location, 0, 0) - e.start() - holder.clear_reagents() + ..() /datum/chemical_reaction/thermite name = "Thermite" From fb011a475a045babc666c1b3d7700696c04495ac Mon Sep 17 00:00:00 2001 From: RandomMarine Date: Wed, 9 Mar 2016 02:50:14 -0800 Subject: [PATCH 22/77] Fix my goof --- .../reagents/chemistry/recipes/pyrotechnics.dm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index 476298bdef1..3c975be5f9e 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -2,12 +2,13 @@ name = "Generic explosive" id = "reagent_explosion" result = null - var/strength = 1 // A divisor. Lower means bigger and stronger explosions. + var/strengthdiv = 10 + var/modifier = 0 /datum/chemical_reaction/reagent_explosion/on_reaction(datum/reagents/holder, created_volume) var/location = get_turf(holder.my_atom) var/datum/effect_system/reagents_explosion/e = new() - e.set_up(round(created_volume/strength, 1), location, 0, 0) + e.set_up(modifier + round(created_volume/strengthdiv, 1), location, 0, 0) e.start() holder.clear_reagents() @@ -18,7 +19,7 @@ result = "nitroglycerin" required_reagents = list("glycerol" = 1, "facid" = 1, "sacid" = 1) result_amount = 2 - strength = 2 + strengthdiv = 2 /datum/chemical_reaction/reagent_explosion/nitroglycerin/on_reaction(datum/reagents/holder, created_volume) if(holder.has_reagent("stabilizing_agent")) @@ -32,14 +33,14 @@ required_reagents = list("nitroglycerin" = 1) result_amount = 1 required_temp = 474 - strength = 2 + strengthdiv = 2 /datum/chemical_reaction/reagent_explosion/potassium_explosion name = "Explosion" id = "potassium_explosion" required_reagents = list("water" = 1, "potassium" = 1) result_amount = 2 - strength = 10 + strengthdiv = 10 /datum/chemical_reaction/blackpowder name = "Black Powder" @@ -54,7 +55,8 @@ required_reagents = list("blackpowder" = 1) result_amount = 1 required_temp = 474 - strength = 6 + strengthdiv = 6 + modifier = 1 mix_message = "Sparks start flying around the black powder!" /datum/chemical_reaction/reagent_explosion/blackpowder_explosion/on_reaction(datum/reagents/holder, created_volume) @@ -344,4 +346,4 @@ /datum/chemical_reaction/pyrosium/on_reaction(datum/reagents/holder, created_volume) holder.chem_temp = 20 // also cools the fuck down - return \ No newline at end of file + return From 3607b2e7e3988a5ef0f989926d09bdf841f33676 Mon Sep 17 00:00:00 2001 From: Sawu Date: Thu, 10 Mar 2016 02:03:59 +1100 Subject: [PATCH 23/77] Clown lube-spam hotfix Fixes Clown SNPCs spamming admin logs with lube, as well as their targeting. --- code/modules/mob/interactive.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/interactive.dm b/code/modules/mob/interactive.dm index 8c9eb948ed5..a1c7ea744dc 100644 --- a/code/modules/mob/interactive.dm +++ b/code/modules/mob/interactive.dm @@ -981,6 +981,8 @@ sleep(25) /mob/living/carbon/human/interactive/proc/clowning(obj) + if(shouldModulePass()) + return var/list/allContents = getAllContents() var/list/rangeCheck = orange(12,src) @@ -1028,8 +1030,8 @@ hasPranked = 1 if(!hasPranked) if(S.reagents.total_volume <= 5) - S.reagents.add_reagent("lube", 25) - S.afterattack(get_turf(clownTarget),src) + S.reagents.add_reagent("water", 25) + S.afterattack(get_turf(pick(range(1,clownTarget))),src) /mob/living/carbon/human/interactive/proc/healpeople(obj) From d9bca073087a1eba54d72f2153490c95aa4b291f Mon Sep 17 00:00:00 2001 From: Akke Date: Wed, 9 Mar 2016 23:18:53 +0000 Subject: [PATCH 24/77] @steelpoint you didn't remove the bundles. --- .../objects/items/weapons/storage/backpack.dm | 27 ------------------- code/modules/uplink/uplink_item.dm | 7 ----- 2 files changed, 34 deletions(-) diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 7b31f68f058..0d453eeb6b9 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -399,21 +399,6 @@ new /obj/item/ammo_box/magazine/smgm45(src) return - -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo/fireteam - desc = "A large dufflebag, packed to the brim with .45, 5.56, and .50 ammo." - -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo/fireteam/New() - ..() - contents = list() - for(var/i in 1 to 4) - new /obj/item/ammo_box/magazine/smgm45(src) - for(var/i in 1 to 3) - new /obj/item/ammo_box/magazine/m556(src) - new /obj/item/ammo_box/a40mm(src) - new /obj/item/ammo_box/magazine/sniper_rounds(src) - return - /obj/item/weapon/storage/backpack/dufflebag/syndie/c20rbundle desc = "A large dufflebag containing a C20r, some magazines, and a cheap looking suppressor." @@ -426,18 +411,6 @@ new /obj/item/weapon/suppressor/specialoffer(src) return -/obj/item/weapon/storage/backpack/dufflebag/syndie/m90glbundle - desc = "A large dufflebag containing an M90gl, a magazine, four additional grenades, and a pack of Syndicate cigarettes." - -/obj/item/weapon/storage/backpack/dufflebag/syndie/m90glbundle/New() - ..() - contents = list() - new /obj/item/ammo_box/magazine/m556(src) - new /obj/item/ammo_box/a40mm(src) - new /obj/item/weapon/gun/projectile/automatic/m90(src) - new /obj/item/weapon/storage/fancy/cigarettes/cigpack_syndicate(src) - return - /obj/item/weapon/storage/backpack/dufflebag/syndie/bulldogbundle desc = "A large dufflebag containing a Bulldog, several drums, and a collapsed hardsuit." diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm index 685fb69e0b0..9f80f82ed5e 100644 --- a/code/modules/uplink/uplink_item.dm +++ b/code/modules/uplink/uplink_item.dm @@ -120,13 +120,6 @@ var/list/uplink_items = list() // Global list so we only initialize this once. item = /obj/item/weapon/storage/backpack/dufflebag/syndie/med/bioterrorbundle cost = 30 // normally 42 -/datum/uplink_item/nukeoffer/ammo - name = "Fireteam bundle" - desc = "For the team player: A duffelbag filled with enough ammo to kit out a fireteam; four .45 magazines, \ - three 5.56 magazines, a box of 40mm grenades, and a magazine of sniper ammunition; all at a discounted price." - item = /obj/item/weapon/storage/backpack/dufflebag/syndie/ammo/fireteam - cost = 24 // normally ?? - // Dangerous Items /datum/uplink_item/dangerous category = "Conspicuous and Dangerous Weapons" From 1ead1acbfc27a7f839b03691bd2195aca0483b15 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 20:21:19 -0500 Subject: [PATCH 25/77] Goon-style blob placement --- code/_onclick/hud/blob_overmind.dm | 2 + code/game/gamemodes/blob/blob.dm | 120 ++++-------------------- code/game/gamemodes/blob/blob_finish.dm | 10 +- code/game/gamemodes/blob/blobs/core.dm | 8 +- code/game/gamemodes/blob/overmind.dm | 45 +++++++-- code/game/gamemodes/blob/powers.dm | 54 +++++------ code/modules/admin/player_panel.dm | 2 +- code/modules/admin/verbs/debug.dm | 3 +- code/modules/events/blob.dm | 2 +- code/modules/mob/transform_procs.dm | 14 +-- 10 files changed, 103 insertions(+), 157 deletions(-) diff --git a/code/_onclick/hud/blob_overmind.dm b/code/_onclick/hud/blob_overmind.dm index 0ad95519fa7..5fc19b69531 100644 --- a/code/_onclick/hud/blob_overmind.dm +++ b/code/_onclick/hud/blob_overmind.dm @@ -30,6 +30,8 @@ /obj/screen/blob/JumpToCore/Click() if(isovermind(usr)) var/mob/camera/blob/B = usr + if(!B.placed) + B.place_blob_core() B.transport_core() /obj/screen/blob/Blobbernaut diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 00565133e40..48788f242f1 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -7,18 +7,18 @@ var/list/overminds = list() var/list/blob_nodes = list() var/list/blobs_legit = list() //used for win-score calculations, contains only blobs counted for win condition +#define BLOB_NO_PLACE_TIME 1800 //time, in deciseconds, blobs are prevented from bursting in the gamemode /datum/game_mode/blob name = "blob" config_tag = "blob" antag_flag = ROLE_BLOB - required_players = 25 + required_players = 0//25 required_enemies = 1 recommended_enemies = 1 round_ends_with_antag_death = 1 - restricted_jobs = list("Cyborg", "AI") var/burst = 0 @@ -28,10 +28,10 @@ var/list/blobs_legit = list() //used for win-score calculations, contains only b var/blobwincount = 350 - var/burstdelay_low = 1200 //in deciseconds - var/burstdelay_high = 1800 //blobs will burst after a random value between these * 2.5(minimum 5 minutes, maximum 7 and a half minutes) + var/messagedelay_low = 2400 //in deciseconds + var/messagedelay_high = 3600 //blob report will be sent after a random value between these (minimum 4 minutes, maximum 6 minutes) - var/list/infected_crew = list() + var/list/blob_overminds = list() /datum/game_mode/blob/pre_setup() cores_to_spawn = max(round(num_players()/players_per_core, 1), 1) @@ -42,18 +42,17 @@ var/list/blobs_legit = list() //used for win-score calculations, contains only b if (!antag_candidates.len) break var/datum/mind/blob = pick(antag_candidates) - infected_crew += blob + blob_overminds += blob + blob.assigned_role = "Blob" blob.special_role = "Blob" - blob.restricted_roles = restricted_jobs log_game("[blob.key] (ckey) has been selected as a Blob") antag_candidates -= blob - if(!infected_crew.len) + if(!blob_overminds.len) return 0 return 1 - /datum/game_mode/blob/proc/get_blob_candidates() var/list/candidates = list() for(var/mob/living/carbon/human/player in player_list) @@ -62,96 +61,23 @@ var/list/blobs_legit = list() //used for win-score calculations, contains only b candidates += player return candidates - -/datum/game_mode/blob/proc/blobize(mob/living/carbon/human/blob) - var/datum/mind/blobmind = blob.mind - if(!istype(blobmind)) - return 0 - infected_crew += blobmind - blobmind.special_role = "Blob" - log_game("[blob.key] (ckey) has been selected as a Blob") - greet_blob(blobmind) - blob << "You feel very tired and bloated! You don't have long before you burst!" - spawn(600) - burst_blob(blobmind) - return 1 - -/datum/game_mode/blob/proc/make_blobs(count) - var/list/candidates = get_blob_candidates() - var/mob/living/carbon/human/blob = null - count=min(count, candidates.len) - for(var/i = 0, i < count, i++) - blob = pick(candidates) - candidates -= blob - blobize(blob) - return count - - - /datum/game_mode/blob/announce() world << "The current game mode is - Blob!" world << "A dangerous alien organism is rapidly spreading throughout the station!" world << "You must kill it all while minimizing the damage to the station." - -/datum/game_mode/blob/proc/greet_blob(datum/mind/blob) - blob.current << "You are infected by the Blob!" - blob.current << "Your body is ready to give spawn to a new blob core which will eat this station." - blob.current << "Find a good location to spawn the core and then take control and overwhelm the station!" - blob.current << "When you have found a location, wait until you spawn; this will happen automatically and you cannot speed up the process." - blob.current << "If you go outside of the station level, or in space, then you will die; make sure your location has lots of ground to cover." - return - /datum/game_mode/blob/proc/show_message(message) - for(var/datum/mind/blob in infected_crew) + for(var/datum/mind/blob in blob_overminds) blob.current << message -/datum/game_mode/blob/proc/burst_blobs() - for(var/datum/mind/blob in infected_crew) - if(blob.special_role != "Blob Overmind") - burst_blob(blob) - -/datum/game_mode/blob/proc/burst_blob(datum/mind/blob, warned=0) - var/client/blob_client = null - var/turf/location = null - - if(iscarbon(blob.current)) - var/mob/living/carbon/C = blob.current - if(directory[ckey(blob.key)]) - blob_client = directory[ckey(blob.key)] - location = get_turf(C) - if(location.z != ZLEVEL_STATION || istype(location, /turf/space)) - if(!warned) - C << "You feel ready to burst, but this isn't an appropriate place! You must return to the station!" - message_admins("[key_name(C)] was in space when the blobs burst, and will die if he doesn't return to the station.") - spawn(300) - burst_blob(blob, 1) - else - burst ++ - log_admin("[key_name(C)] was in space when attempting to burst as a blob.") - message_admins("[key_name(C)] was in space when attempting to burst as a blob.") - C.gib() - make_blobs(1) - check_finished() //Still needed in case we can't make any blobs - - else if(blob_client && location) - burst ++ - C.gib() - var/obj/effect/blob/core/core = new(location, 200, blob_client, blob_point_rate) - if(core.overmind && core.overmind.mind) - core.overmind.mind.name = blob.name - infected_crew -= blob - infected_crew += core.overmind.mind - core.overmind.mind.special_role = "Blob Overmind" - /datum/game_mode/blob/post_setup() - for(var/datum/mind/blob in infected_crew) - greet_blob(blob) - var/datum/action/innate/blob/earlyhelp/B = new - B.Grant(blob.current) - var/datum/action/innate/blob/earlycomm/C = new - C.Grant(blob.current) + for(var/datum/mind/blob in blob_overminds) + var/mob/camera/blob/B = blob.current.become_overmind(1) + var/turf/T = pick(blobstart) + B.loc = T + B.base_point_rate = blob_point_rate + SSshuttle.emergencyNoEscape = 1 // Disable the blob event for this round. @@ -160,21 +86,9 @@ var/list/blobs_legit = list() //used for win-score calculations, contains only b B.max_occurrences = 0 // disable the event spawn(0) - var/burst_delay = rand(burstdelay_low, burstdelay_high) //between 5 and 7 and a half minutes with 1200 low and 1800 high. + var/message_delay = rand(messagedelay_low, messagedelay_high) //between 4 and 6 minutes with 2400 low and 3600 high. - sleep(burst_delay) - - show_message("You feel tired and bloated.") - - sleep(burst_delay) - - show_message("You feel like you are about to burst.") - - sleep(burst_delay * 0.5) - - burst_blobs() - - sleep(burst_delay * 0.5) + sleep(message_delay) send_intercept(1) diff --git a/code/game/gamemodes/blob/blob_finish.dm b/code/game/gamemodes/blob/blob_finish.dm index 78e557c16cf..8bfc8e6f98f 100644 --- a/code/game/gamemodes/blob/blob_finish.dm +++ b/code/game/gamemodes/blob/blob_finish.dm @@ -1,9 +1,9 @@ /datum/game_mode/blob/check_finished() - if(infected_crew.len > burst)//Some blobs have yet to burst + if(blob_overminds.len > cores_to_spawn && cores_to_spawn > blob_cores.len)//Some blobs have yet to burst return 0 if(blobwincount <= blobs_legit.len)//Blob took over return 1 - if(!blob_cores.len && !overminds.len) //blob is dead + if(!overminds.len && !blob_cores.len) //blob is dead if(config.continuous["blob"]) continuous_sanity_checked = 1 //Nonstandard definition of "alive" gets past the check otherwise SSshuttle.emergencyNoEscape = 0 @@ -43,9 +43,9 @@ /datum/game_mode/proc/auto_declare_completion_blob() if(istype(ticker.mode,/datum/game_mode/blob) ) var/datum/game_mode/blob/blob_mode = src - if(blob_mode.infected_crew.len) - var/text = "The blob[(blob_mode.infected_crew.len > 1 ? "s were" : " was")]:" - for(var/datum/mind/blob in blob_mode.infected_crew) + if(blob_mode.blob_overminds.len) + var/text = "The blob[(blob_mode.blob_overminds.len > 1 ? "s were" : " was")]:" + for(var/datum/mind/blob in blob_mode.blob_overminds) text += printplayer(blob) world << text return 1 \ No newline at end of file diff --git a/code/game/gamemodes/blob/blobs/core.dm b/code/game/gamemodes/blob/blobs/core.dm index 42514f7194c..f38cc74d236 100644 --- a/code/game/gamemodes/blob/blobs/core.dm +++ b/code/game/gamemodes/blob/blobs/core.dm @@ -15,16 +15,16 @@ var/point_rate = 2 -/obj/effect/blob/core/New(loc, var/h = 200, var/client/new_overmind = null, var/new_rate = 2) +/obj/effect/blob/core/New(loc, var/client/new_overmind = null, var/new_rate = 2, var/placed = 0) blob_cores += src SSobj.processing |= src update_icon() //so it atleast appears - if(!overmind) + if(!placed && !overmind) create_overmind(new_overmind) if(overmind) update_icon() point_rate = new_rate - ..(loc, h) + ..() /obj/effect/blob/core/update_icon() overlays.Cut() @@ -95,7 +95,7 @@ C = new_overmind if(C) - var/mob/camera/blob/B = new(src.loc) + var/mob/camera/blob/B = new(src.loc, 1) B.key = C.key B.blob_core = src src.overmind = B diff --git a/code/game/gamemodes/blob/overmind.dm b/code/game/gamemodes/blob/overmind.dm index b4b3f881929..b45b147a3fd 100644 --- a/code/game/gamemodes/blob/overmind.dm +++ b/code/game/gamemodes/blob/overmind.dm @@ -18,8 +18,22 @@ var/datum/reagent/blob/blob_reagent_datum = new/datum/reagent/blob() var/list/blob_mobs = list() var/ghostimage = null + var/placed = 0 + var/base_point_rate = 2 //for blob core placement + var/manualplace_min_time = 600 //in deciseconds //a minute, to get bearings + var/autoplace_max_time = 3600 //six minutes, as long as should be needed -/mob/camera/blob/New() +/mob/camera/blob/New(loc, placed = 0, mode_made = 0) + if(placed) //we already have a core! + manualplace_min_time = 0 + autoplace_max_time = 0 + placed = 1 + else + if(mode_made) + manualplace_min_time = world.time + BLOB_NO_PLACE_TIME + else + manualplace_min_time += world.time + autoplace_max_time += world.time overminds += src var/new_name = "[initial(name)] ([rand(1, 999)])" name = new_name @@ -39,7 +53,15 @@ /mob/camera/blob/Life() if(!blob_core) - qdel(src) + if(!placed) + if(manualplace_min_time && world.time >= manualplace_min_time) + src << "You may now place your blob core." + src << "You will automatically place your blob core in [round((autoplace_max_time - world.time)/600, 0.5)] minutes." + manualplace_min_time = 0 + if(autoplace_max_time && world.time >= autoplace_max_time) + place_blob_core(base_point_rate, 1) + else + qdel(src) ..() /mob/camera/blob/Destroy() @@ -115,13 +137,24 @@ if(blob_core) stat(null, "Core Health: [blob_core.health]") stat(null, "Power Stored: [blob_points]/[max_blob_points]") + if(!placed) + stat(null, "Time Before Automatic Placement: [max(round((autoplace_max_time - world.time)*0.1, 0.1), 0)]") + if(manualplace_min_time) + stat(null, "Time Before Manual Placement: [max(round((manualplace_min_time - world.time)*0.1, 0.1), 0)]") /mob/camera/blob/Move(NewLoc, Dir = 0) - var/obj/effect/blob/B = locate() in range("3x3", NewLoc) - if(B) - loc = NewLoc + if(placed) + var/obj/effect/blob/B = locate() in range("3x3", NewLoc) + if(B) + loc = NewLoc + else + return 0 else - return 0 + var/area/A = get_area(NewLoc) + if(istype(NewLoc, /turf/space) || istype(A, /area/shuttle)) //if unplaced, can't go on shuttles or space tiles + return 0 + loc = NewLoc + return 1 /mob/camera/blob/proc/can_attack() return (world.time > (last_attack + CLICK_CD_RANGE)) diff --git a/code/game/gamemodes/blob/powers.dm b/code/game/gamemodes/blob/powers.dm index 4c647a30145..55fd500f9b8 100644 --- a/code/game/gamemodes/blob/powers.dm +++ b/code/game/gamemodes/blob/powers.dm @@ -7,6 +7,28 @@ // Power verbs +/mob/camera/blob/proc/place_blob_core(var/point_rate = base_point_rate, var/override = 0) + if(world.time <= manualplace_min_time && world.time <= autoplace_max_time) + src << "It is too early to place your blob core!" + return 0 + if(placed) + return 1 + if(!override) + for(var/mob/living/M in range(7, src)) + if(M.client) + src << "There is someone too close to place your blob core!" + return 0 + else if(override == 1) + var/turf/T = pick(blobstart) + loc = T //got overrided? you're somewhere random, motherfucker + var/obj/effect/blob/core/core = new(get_turf(src), null, point_rate, 1) + core.overmind = src + blob_core = core + core.update_icon() + update_health_hud() + placed = 1 + return 1 + /mob/camera/blob/verb/transport_core() set category = "Blob" set name = "Jump to Core" @@ -263,32 +285,6 @@ src << "In addition to the buttons on your HUD, there are a few click shortcuts to speed up expansion and defense." src << "Shortcuts: Click = Expand Blob | Middle Mouse Click = Rally Spores | Ctrl Click = Create Shield Blob | Alt Click = Remove Blob" src << "Attempting to talk will send a message to all other overminds, allowing you to coordinate with them." - -/datum/action/innate/blob - background_icon_state = "bg_alien" - -/datum/action/innate/blob/earlyhelp - name = "Blob Help" - button_icon_state = "blob" - -/datum/action/innate/blob_earlyhelp/Activate() - owner << "You are a blob!" - owner << "You will shortly burst, and should find a quiet place to do so, out of sight of the station." - owner << "Alternatively, you could burst near a place that would hinder the station, such as telecomms or science." - owner << "Once you burst, you can get additional information by pressing this button again." - -/datum/action/innate/blob/earlycomm - name = "Blob Communication" - button_icon_state = "blob_comm" - -/datum/action/innate/blob/earlycomm/Activate() - var/msg = stripped_input(owner, "What do you wish to tell your fellow blobs?", null, "") - if(msg && owner) - var/mob/living/carbon/human/O = owner - var/spanned_message = O.say_quote(msg, O.get_spans()) - var/rendered = "\[Blob Telepathy\] [O.real_name] [spanned_message]" - var/datum/game_mode/blob/B = ticker.mode - B.show_message("[rendered]") - for(var/mob/M in mob_list) - if(isobserver(M)) - M << "(F) [rendered]" \ No newline at end of file + if(!placed) + src << "You will automatically place your blob core in [round((autoplace_max_time - world.time)/600, 0.5)] minutes." + src << "You [manualplace_min_time ? "will be able to":"can"] manually place your blob core by pressing the button in the bottom right corner of the screen." diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index 124b9bd9250..d0aae03c7b1 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -588,7 +588,7 @@ dat += "
" if(istype(ticker.mode,/datum/game_mode/blob)) var/datum/game_mode/blob/mode = ticker.mode - blob_minds |= mode.infected_crew + blob_minds |= mode.blob_overminds dat += "" for(var/datum/mind/blob in blob_minds) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 90a14e8d47c..90b385a3376 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -261,7 +261,8 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that log_admin("[key_name(src)] has blobized [M.key].") var/mob/living/carbon/human/H = M spawn(0) - H.Blobize() + var/mob/camera/blob/B = H.become_overmind() + B.place_blob_core(B.base_point_rate, -1) //place them wherever they are else alert("Invalid mob") diff --git a/code/modules/events/blob.dm b/code/modules/events/blob.dm index ed2c22ce622..343c4bd5758 100644 --- a/code/modules/events/blob.dm +++ b/code/modules/events/blob.dm @@ -26,4 +26,4 @@ var/turf/T = pick(blobstart) if(!T) return kill() - new/obj/effect/blob/core(T, 200, null, new_rate) + new/obj/effect/blob/core(T, null, new_rate) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index bac5319ef2a..9a5aae78ea7 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -418,14 +418,14 @@ . = new_slime qdel(src) -/mob/living/carbon/human/proc/Blobize() - if (notransform) - return - if(!client) //TOO BAD - new /obj/effect/blob/core (loc) +/mob/proc/become_overmind(mode_made = 0) + var/mob/camera/blob/B = new /mob/camera/blob(loc, 0, mode_made) + if(mind) + mind.transfer_to(B) else - new /obj/effect/blob/core (loc,new_overmind = src.client) - gib(src) + B.key = key + . = B + qdel(src) /mob/proc/become_god(var/side_colour) From cb5672879211c463d4787ecbfe99e0cf7102afee Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 20:28:29 -0500 Subject: [PATCH 26/77] ah,,,,, --- code/game/gamemodes/blob/blob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 48788f242f1..768f23fe646 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -14,7 +14,7 @@ var/list/blobs_legit = list() //used for win-score calculations, contains only b config_tag = "blob" antag_flag = ROLE_BLOB - required_players = 0//25 + required_players = 25 required_enemies = 1 recommended_enemies = 1 From 2f6d99b42aa422e0f6b61025d34b81b00c66d8ba Mon Sep 17 00:00:00 2001 From: KazeEspada Date: Wed, 9 Mar 2016 18:42:06 -0700 Subject: [PATCH 27/77] Updates beach2 to include sand as a baseturf. --- _maps/RandomZLevels/beach2.dmm | 48 +++++++++---------- code/game/turfs/simulated/floor/misc_floor.dm | 4 ++ .../turfs/simulated/floor/plasteel_floor.dm | 1 + 3 files changed, 29 insertions(+), 24 deletions(-) diff --git a/_maps/RandomZLevels/beach2.dmm b/_maps/RandomZLevels/beach2.dmm index 13cdc34da3e..a9210c18c13 100644 --- a/_maps/RandomZLevels/beach2.dmm +++ b/_maps/RandomZLevels/beach2.dmm @@ -16,42 +16,42 @@ "ap" = (/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) "aq" = (/turf/simulated/wall/mineral/sandstone,/area/awaymission/beach) "ar" = (/obj/effect/overlay/palmtree_l,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) -"as" = (/obj/structure/dresser{density = 0; pixel_x = 0; pixel_y = 18},/turf/simulated/floor/wood,/area/awaymission/beach) -"at" = (/turf/simulated/floor/wood,/area/awaymission/beach) -"au" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor/wood,/area/awaymission/beach) +"as" = (/obj/structure/dresser{density = 0; pixel_x = 0; pixel_y = 18},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"at" = (/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"au" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "av" = (/obj/structure/toilet{pixel_y = 8},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) -"aw" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood,/area/awaymission/beach) -"ax" = (/obj/item/weapon/bedsheet/rainbow,/obj/structure/bed,/obj/machinery/button/door{id = "loveshack"; name = "love shack lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood,/area/awaymission/beach) +"aw" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"ax" = (/obj/item/weapon/bedsheet/rainbow,/obj/structure/bed,/obj/machinery/button/door{id = "loveshack"; name = "love shack lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "ay" = (/obj/effect/overlay/palmtree_r,/obj/effect/overlay/coconut,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "az" = (/obj/structure/mineral_door/wood{name = "toilet"},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) -"aA" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/beach) +"aA" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/structure/table/wood,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "aB" = (/obj/effect/overlay/coconut,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "aC" = (/obj/structure/signpost,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "aD" = (/obj/machinery/door/airlock/sandstone{id_tag = "loveshack"; name = "Lotsu's Love Shack"},/turf/simulated/floor/wood,/area/awaymission/beach) -"aE" = (/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/wood,/area/awaymission/beach) -"aF" = (/obj/machinery/button/door{id = "changing1"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood,/area/awaymission/beach) -"aG" = (/obj/machinery/button/door{id = "changing2"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood,/area/awaymission/beach) +"aE" = (/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aF" = (/obj/machinery/button/door{id = "changing1"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aG" = (/obj/machinery/button/door{id = "changing2"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "aH" = (/obj/machinery/door/airlock/sandstone{id_tag = "changing1"; name = "changing room"},/turf/simulated/floor/wood,/area/awaymission/beach) "aI" = (/obj/machinery/door/airlock/sandstone{id_tag = "changing2"; name = "changing room"},/turf/simulated/floor/wood,/area/awaymission/beach) "aJ" = (/obj/structure/bedsheetbin{pixel_y = -6},/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) "aK" = (/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/structure/closet/crate,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) "aL" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plasteel/sandy,/area/awaymission/beach) -"aM" = (/obj/structure/closet/gmcloset,/turf/simulated/floor/wood,/area/awaymission/beach) -"aN" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/wood,/area/awaymission/beach) -"aO" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/wood,/area/awaymission/beach) -"aP" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/wood,/area/awaymission/beach) -"aQ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood,/area/awaymission/beach) -"aR" = (/obj/structure/table/wood,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood,/area/awaymission/beach) -"aS" = (/obj/effect/mob_spawn/human/bartender/alive,/turf/simulated/floor/wood,/area/awaymission/beach) -"aT" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/awaymission/beach) -"aU" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/awaymission/beach) -"aV" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/awaymission/beach) -"aW" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/awaymission/beach) +"aM" = (/obj/structure/closet/gmcloset,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aN" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aO" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aP" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aQ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aR" = (/obj/structure/table/wood,/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aS" = (/obj/effect/mob_spawn/human/bartender/alive,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aT" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aU" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aV" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aW" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "aX" = (/obj/structure/mineral_door/wood{name = "bar"},/turf/simulated/floor/wood,/area/awaymission/beach) -"aY" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/ale,/turf/simulated/floor/wood,/area/awaymission/beach) -"aZ" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/beach) -"ba" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,/turf/simulated/floor/wood,/area/awaymission/beach) -"bb" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/simulated/floor/wood,/area/awaymission/beach) +"aY" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/ale,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"aZ" = (/obj/structure/table/wood,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"ba" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) +"bb" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "bc" = (/obj/item/toy/beach_ball,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "bd" = (/obj/structure/table,/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,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "be" = (/obj/structure/table,/obj/item/clothing/under/color/rainbow,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/head/collectable/petehat{pixel_y = 5},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) diff --git a/code/game/turfs/simulated/floor/misc_floor.dm b/code/game/turfs/simulated/floor/misc_floor.dm index 2fdfe294a1f..e77afab01b2 100644 --- a/code/game/turfs/simulated/floor/misc_floor.dm +++ b/code/game/turfs/simulated/floor/misc_floor.dm @@ -36,18 +36,22 @@ /turf/simulated/floor/plating/beach/sand name = "Sand" icon_state = "sand" + baseturf = /turf/simulated/floor/plating/beach/sand /turf/simulated/floor/plating/beach/coastline_t name = "Coastline" icon_state = "sandwater_t" + baseturf = /turf/simulated/floor/plating/beach/coastline_t /turf/simulated/floor/plating/beach/coastline_b name = "Coastline" icon_state = "sandwater_b" + baseturf = /turf/simulated/floor/plating/beach/coastline_b /turf/simulated/floor/plating/beach/water name = "Water" icon_state = "water" + baseturf = /turf/simulated/floor/plating/beach/water /turf/simulated/floor/plating/ironsand/New() ..() diff --git a/code/game/turfs/simulated/floor/plasteel_floor.dm b/code/game/turfs/simulated/floor/plasteel_floor.dm index 54c1aa0d204..0d98df7bb52 100644 --- a/code/game/turfs/simulated/floor/plasteel_floor.dm +++ b/code/game/turfs/simulated/floor/plasteel_floor.dm @@ -440,6 +440,7 @@ /turf/simulated/floor/plasteel/sandy icon_state = "sandy" + baseturf = /turf/simulated/floor/plating/beach/sand /turf/simulated/floor/plasteel/sandeffect icon_state = "sandeffect" From b9128fe1b107304ef25828b6868c74c2d17c0b7c Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 20:58:36 -0500 Subject: [PATCH 28/77] Thoroughness in placement checking; can't place on dense turfs can place on dense objects can't place if there's someone in a large view() --- code/game/gamemodes/blob/powers.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/game/gamemodes/blob/powers.dm b/code/game/gamemodes/blob/powers.dm index 55fd500f9b8..41d3fa14386 100644 --- a/code/game/gamemodes/blob/powers.dm +++ b/code/game/gamemodes/blob/powers.dm @@ -18,6 +18,14 @@ if(M.client) src << "There is someone too close to place your blob core!" return 0 + for(var/mob/living/M in view(15, src)) + if(M.client) + src << "Someone could see your blob core from here!" + return 0 + var/turf/T = get_turf(src) + if(T.density) + src << "This spot is too dense to place a blob core on!" + return 0 else if(override == 1) var/turf/T = pick(blobstart) loc = T //got overrided? you're somewhere random, motherfucker From f8860cdca4463b8364850868445c66924f99bd87 Mon Sep 17 00:00:00 2001 From: KazeEspada Date: Wed, 9 Mar 2016 19:01:03 -0700 Subject: [PATCH 29/77] Cabin fixes continued. --- _maps/RandomZLevels/Cabin.dmm | 82 ++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 40 deletions(-) diff --git a/_maps/RandomZLevels/Cabin.dmm b/_maps/RandomZLevels/Cabin.dmm index bd301106c1e..b9b8a6d006c 100644 --- a/_maps/RandomZLevels/Cabin.dmm +++ b/_maps/RandomZLevels/Cabin.dmm @@ -5,8 +5,8 @@ "ae" = (/obj/item/weapon/grown/log/tree,/turf/simulated/floor/plating/asteroid/snow/temperate,/area/awaymission/snowforest) "af" = (/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) "ag" = (/obj/machinery/conveyor_switch/oneway{id = "lumbermill"},/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) -"ah" = (/obj/machinery/conveyor{dir = 4; id = "lumbermill"},/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) -"ai" = (/obj/machinery/recycler/lumbermill,/obj/machinery/conveyor{dir = 4; id = "lumbermill"},/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) +"ah" = (/obj/machinery/conveyor{dir = 4;id = "lumbermill"},/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) +"ai" = (/obj/machinery/recycler/lumbermill,/obj/machinery/conveyor{dir = 4;id = "lumbermill"},/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) "aj" = (/obj/item/weapon/grown/log/tree,/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) "ak" = (/obj/structure/table/wood,/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) "al" = (/obj/structure/table/wood,/obj/item/weapon/grown/log/tree,/turf/simulated/floor/wood/cold,/area/awaymission/snowforest/lumbermill) @@ -16,25 +16,25 @@ "ap" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/wood,/area/awaymission/cabin) "aq" = (/turf/simulated/floor/wood,/area/awaymission/cabin) "ar" = (/obj/machinery/door/airlock/wood{name = "bathroom"},/turf/simulated/floor/wood,/area/awaymission/cabin) -"as" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"at" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"as" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"at" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "au" = (/obj/structure/dresser,/turf/simulated/floor/wood,/area/awaymission/cabin) -"av" = (/obj/machinery/power/apc{dir = 1; name = "cabin APC"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/cabin) -"aw" = (/obj/machinery/power/smes/magical,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) -"ax" = (/obj/structure/closet/toolcloset,/obj/item/device/lightreplacer,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/awaymission/cabin) -"ay" = (/obj/structure{density = 1; desc = "Generates power from lava!"; dir = 1; icon = 'icons/obj/atmospherics/pipes/simple.dmi'; icon_state = "compressor"; name = "geothermal generator"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"av" = (/obj/machinery/power/apc{dir = 1;name = "cabin APC"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/simulated/floor/plating,/area/awaymission/cabin) +"aw" = (/obj/machinery/power/smes/magical,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"ax" = (/obj/structure{density = 1;desc = "Generates power from lava!";dir = 2;icon = 'icons/obj/atmospherics/pipes/simple.dmi';icon_state = "turbine";name = "geothermal generator"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"ay" = (/obj/machinery/light/small,/obj/structure/table/wood,/obj/item/toy/syndicateballoon,/turf/simulated/floor/wood,/area/awaymission/cabin) "az" = (/turf/simulated/floor/carpet,/area/awaymission/cabin) "aA" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/wood,/area/awaymission/cabin) -"aB" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"aB" = (/obj/structure/toilet{icon_state = "toilet00";dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "aC" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "aD" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/awaymission/cabin) -"aE" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/cabin) -"aF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/cabin) -"aG" = (/obj/structure{density = 1; desc = "Generates power from lava!"; dir = 2; icon = 'icons/obj/atmospherics/pipes/simple.dmi'; icon_state = "turbine"; name = "geothermal generator"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"aE" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/simulated/floor/plating,/area/awaymission/cabin) +"aF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/cabin) +"aG" = (/obj/item/weapon/reagent_containers/pill/patch/styptic,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) "aH" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/cabin) -"aI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/cabin) -"aJ" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"aK" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/northleft,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"aI" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/cabin) +"aJ" = (/obj/machinery/shower{icon_state = "shower";dir = 8},/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"aK" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/door/window/northleft,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "aL" = (/turf/simulated/floor/plating,/area/awaymission/cabin) "aM" = (/obj/machinery/telecomms/relay/preset/mining,/turf/simulated/floor/plating,/area/awaymission/cabin) "aN" = (/obj/structure/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/awaymission/cabin) @@ -62,7 +62,7 @@ "bj" = (/obj/structure/toilet,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "bk" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "bl" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/turf/simulated/floor/wood,/area/awaymission/cabin) -"bm" = (/obj/machinery/door/airlock/wood{doorsound = null; name = "stage left"},/turf/simulated/floor/wood,/area/awaymission/cabin) +"bm" = (/obj/machinery/door/airlock/wood{doorsound = null;name = "stage left"},/turf/simulated/floor/wood,/area/awaymission/cabin) "bn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/awaymission/cabin) "bo" = (/obj/structure/window{dir = 4},/turf/simulated/floor/wood,/area/awaymission/cabin) "bp" = (/obj/structure/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/awaymission/cabin) @@ -82,25 +82,25 @@ "bD" = (/obj/structure/table/optable,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "bE" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "bF" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) -"bG" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 2; on = 1},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) +"bG" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80;dir = 2;on = 1},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "bH" = (/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) -"bI" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/eastright,/obj/structure/window{icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"bJ" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"bK" = (/obj/machinery/light/small,/obj/structure/table/wood,/obj/item/weapon/orion_ship,/turf/simulated/floor/wood,/area/awaymission/cabin) +"bI" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/door/window/eastright,/obj/structure/window{icon_state = "window";dir = 1},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"bJ" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"bK" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/reagent_containers/pill/patch/styptic,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) "bL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/patriot,/turf/simulated/floor/wood,/area/awaymission/cabin) "bM" = (/obj/machinery/vending/clothing,/turf/simulated/floor/wood,/area/awaymission/cabin) "bN" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor/wood,/area/awaymission/cabin) "bO" = (/turf/simulated/floor/plasteel/cafeteria,/area/awaymission/cabin) "bP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) -"bQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) +"bQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "bR" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "bS" = (/turf/simulated/floor/wood/cold,/area/awaymission/snowforest) "bT" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/simulated/floor/wood,/area/awaymission/cabin) -"bU" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/wood,/area/awaymission/cabin) +"bU" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/wood,/area/awaymission/cabin) "bV" = (/obj/structure/table,/obj/item/weapon/kitchen/knife/butcher,/turf/simulated/floor/plasteel/cafeteria,/area/awaymission/cabin) -"bW" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/cafeteria,/area/awaymission/cabin) +"bW" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/cafeteria,/area/awaymission/cabin) "bX" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"bY" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/processor,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) +"bY" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/processor,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) "bZ" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/obj/item/weapon/cautery,/obj/item/weapon/surgical_drapes,/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "ca" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "cb" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/wood,/area/awaymission/cabin) @@ -122,13 +122,13 @@ "cr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood/cold,/area/awaymission/snowforest) "cs" = (/obj/structure/table/wood,/obj/item/weapon/wrench,/turf/simulated/floor/wood,/area/awaymission/cabin) "ct" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel/freezer,/area/awaymission/cabin) -"cu" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) -"cv" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) +"cu" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 4},/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) +"cv" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel/white,/area/awaymission/cabin) "cw" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/wood,/area/awaymission/cabin) "cx" = (/obj/machinery/gateway,/turf/simulated/floor/wood,/area/awaymission/cabin) "cy" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/wood,/area/awaymission/cabin) "cz" = (/obj/structure/piano,/turf/simulated/floor/wood,/area/awaymission/cabin) -"cA" = (/obj/machinery/door/airlock/wood{doorsound = null; name = "stage right"},/turf/simulated/floor/wood,/area/awaymission/cabin) +"cA" = (/obj/machinery/door/airlock/wood{doorsound = null;name = "stage right"},/turf/simulated/floor/wood,/area/awaymission/cabin) "cB" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor/wood,/area/awaymission/cabin) "cC" = (/obj/structure/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/awaymission/cabin) "cD" = (/obj/machinery/door/window/westright{name = "bar"},/turf/simulated/floor/wood,/area/awaymission/cabin) @@ -139,18 +139,18 @@ "cI" = (/obj/machinery/door/airlock/wood{name = "backstage"},/turf/simulated/floor/wood,/area/awaymission/cabin) "cJ" = (/obj/machinery/door/airlock/glass_large{name = "medbay"},/turf/simulated/floor/wood,/area/awaymission/cabin) "cK" = (/obj/machinery/door/airlock/wood{name = "cabin"},/turf/simulated/floor/wood,/area/awaymission/cabin) -"cL" = (/obj/structure/sign/barsign{pixel_x = 0; pixel_y = 32; req_access = null},/turf/simulated/floor/wood,/area/awaymission/cabin) +"cL" = (/obj/structure/sign/barsign{pixel_x = 0;pixel_y = 32;req_access = null},/turf/simulated/floor/wood,/area/awaymission/cabin) "cM" = (/obj/machinery/door/airlock/wood{name = "gateway"},/turf/simulated/floor/wood,/area/awaymission/cabin) "cN" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/awaymission/cabin) "cO" = (/obj/machinery/light,/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/awaymission/cabin) "cP" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/awaymission/cabin) -"cQ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/carpet,/area/awaymission/cabin) -"cR" = (/obj/machinery/door/poddoor/shutters{id = 42; name = "garage door"},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) -"cS" = (/obj/machinery/button/door{id = 42; pixel_y = 24},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) +"cQ" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/simulated/floor/carpet,/area/awaymission/cabin) +"cR" = (/obj/machinery/door/poddoor/shutters{id = 42;name = "garage door"},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) +"cS" = (/obj/machinery/button/door{id = 42;pixel_y = 24},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cT" = (/obj/vehicle/atv,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cV" = (/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) -"cW" = (/obj/structure/closet,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) +"cW" = (/obj/structure/closet,/obj/item/key,/obj/item/key,/obj/item/key,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cX" = (/obj/machinery/light,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/cabin) "cY" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/asteroid/snow/temperate,/area/awaymission/snowforest) "cZ" = (/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) @@ -173,7 +173,9 @@ "dq" = (/obj/item/weapon/shard,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) "dr" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) "ds" = (/obj/structure/chair{dir = 1},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/snowed/temperate,/area/awaymission/snowforest) -"dt" = (/obj/effect/landmark/mapGenerator/snowy{endTurfX = 159; endTurfY = 157; startTurfX = 37; startTurfY = 35},/turf/simulated/floor/plating/asteroid/snow/temperate,/area/awaymission/snowforest) +"dt" = (/obj/effect/landmark/mapGenerator/snowy{endTurfX = 159;endTurfY = 157;startTurfX = 37;startTurfY = 35},/turf/simulated/floor/plating/asteroid/snow/temperate,/area/awaymission/snowforest) +"dv" = (/obj/structure{density = 1;desc = "Generates power from lava!";dir = 1;icon = 'icons/obj/atmospherics/pipes/simple.dmi';icon_state = "compressor";name = "geothermal generator"},/turf/simulated/floor/plating,/area/awaymission/cabin) +"du" = (/obj/structure/closet/toolcloset,/obj/item/device/lightreplacer,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/awaymission/cabin) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -327,8 +329,8 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacac aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacananaoaoaoanananananananaoaoaoanananaoaoaoanananananananaoaoaoanananaoaoaoanananananananananacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanapaqaqaqaqarasanataraqaqaqaqauanapaqaqaqaqarasanataraqaqaqaqauanapaqaqaqaqarasanavawaxayanacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanauazazazaAanaBanaCanapazazazaAanauazazazaAanaBanaCanapazazazaAanauazazazaAanaBanaDaEaFaGanacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanapaqaqaqaqarasanataraqaqaqaqauanapaqaqaqaqarasanataraqaqaqaqauanapaqaqaqaqarasanavawdudvanacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanauazazazaAanaBanaCanapazazazaAanauazazazaAanaBanaCanapazazazaAanauazazazaAanaBanaDaEaFaxanacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanaHazazazaIanaJanaKanaHazazazaIanaHazazazaIanaJanaKanaHazazazaIanaHazazazaIanaJanaLaLaLaManacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanaNaOaPazaAanananananaNaOaPazaAanaNaOaPazaAanananananaNaOaPazaAanaNaOaPazaAanananaQananananacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanaqaqaqaqaqaRanaSanaTaqaqaqaqaqanaqaqaqaqaqaUanaVanaWaqaqaqaqaqanaqaqaqaqaqaUanaXazaYazaZaoacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -336,7 +338,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacac aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaoaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqbfazazbgazazaoacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaoaqaqbhaqaqaqaqbhaqaqaqaqbhaqaqaqaqbhaqaqaqaqaqaqbhaqaqaqaqaqaqbhaqaqaqaqaqaqanananananbianacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanananananananananananbaanananananananananananananananananananananananananaqaqanbjbkaraqaqanacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanblaqbmaqbnaqbnbobpbpaqbqbrbsbtapaNbuaqbvanbwbxbybzanbAbBbCanbDbEbFbGbHanaqaqanbIbJanbKbLaoacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanblaqbmaqbnaqbnbobpbpaqbqbrbsbtapaNbuaqbvanbwbxbybzanbAbBbCanbDbEbFbGbHanaqaqanbIbJanaybLaoacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacanbMaqanaqaqaqaqbobpbpaqaqaqaqaqaqaNbuaqbNanbObObObOanbBbBbBanbHbHbPbQbRanaqaqanananananananacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacbSbSbSbSbSanbTaqanaqaqaqaqbobpbpaqaqaqaqaqaqaNbuaqbUanbObVbObWanbXbBbYanbZbHbHbPcaanaHaqanaqcbcccdaqanacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacbScecfcgbSanchaqanaqaqaqaqbobpbpaqaqaqciaqaqaNbuaqaqbubOcjbOckanclbBbBancmbHbHbHcnanaqaqanaHcocpcqaqaoacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -370,18 +372,18 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacac aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaccYacacacacacacacaccYacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaccZcZcZdadadadadadadadacZcZcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaccZdbcZdadadadcdadadcdacZcZcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaccZcZcZcZdbcZcZddcZcZcZcZdbcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaccZdbcZdadadadcdadadcdacZaGcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaccZcZcZcZbKcZcZddcZcZcZcZdbcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdededddfdgdfdfdfdfdhdfdbdidiaccYacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdedkcZdfcZdlcZcZcZcZdgcZdmdiacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacacacacacacdedecZdfcZcZdndldbcZdfcZdidiacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacacdedkcZdfdodbcZcZcZdpdfcZdidmacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacacdedkcZdfdodbcZcZcZdpdfaGdidmacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacacdedecZdhcZcZcZdbcZcZdfdddidiacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacdededddfcZdncZcZcZdodfcZdmdiacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacdkdecZdgdbdqcZdbdldpdfcZdidiaccYacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacdkdecZdfdfdfdfdfdfdgdfcZdidiacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacaccZdbcZcZcZcZcZcZcZdbcZcZcZcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacaccZcZdbdrdrdrdsdrdrdsdrcZcZcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacaccZaGdbdrdrdrdsdrdrdsdrcZaGcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacaccYcZcZcZdrdrdrdrdrdsdrdrcZcZcZacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacacaccYacacacacacacacacaccYacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjdjacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa From d16f73add08366c038fa6f14cdbb57ae0bac2898 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Thu, 10 Mar 2016 02:09:08 +0000 Subject: [PATCH 30/77] Tuples --- tools/mapmerge/map_helpers.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tools/mapmerge/map_helpers.py b/tools/mapmerge/map_helpers.py index 2d19bcfe91b..c7c989d02e0 100644 --- a/tools/mapmerge/map_helpers.py +++ b/tools/mapmerge/map_helpers.py @@ -4,13 +4,16 @@ maxx = 0 maxy = 0 key_length = 1 -def merge_map(newfile, backupfile, tgm): +def reset_globals(): global key_length global maxx global maxy key_length = 1 - maxx = 1 - maxy = 1 + maxx = 0 + maxy = 0 + +def merge_map(newfile, backupfile, tgm): + reset_globals() shitmap = parse_map(newfile) shitDict = shitmap["dictionary"] #key to tile data dictionary @@ -46,7 +49,7 @@ def merge_map(newfile, backupfile, tgm): originalData = originalDict[originalKey] #if new tile data at x,y is the same as original tile data at x,y, add to the pile - if frozenset(shitData) == frozenset(originalData): + if shitData == originalData: mergeGrid[x,y] = originalKey known_keys[shitKey] = originalKey unused_keys.remove(originalKey) @@ -192,9 +195,8 @@ def write_grid_coord_small(filename, grid): output.write("{}\n\"}}\n".format(grid[x,maxy-1])) def search_key(dictionary, data): - dataset = frozenset(data) for key, value in dictionary.items(): - if frozenset(value) == dataset: + if value == data: return key return None @@ -327,7 +329,7 @@ def parse_map(map_file): if char == ")": curr_data.append(curr_datum) - dictionary[curr_key] = curr_data + dictionary[curr_key] = tuple(curr_data) curr_data = list() curr_datum = "" curr_key = "" @@ -466,8 +468,6 @@ def string_to_num(s): except ValueError: return -1 -#unused functions - #writes a tile data dictionary the same way Dreammaker does def write_dictionary(filename, dictionary): with open(filename, "w") as output: @@ -490,7 +490,7 @@ def write_grid(filename, grid): output.write("\"}") output.write("\n") -#inflated map grid +#inflated map grid; unused def write_grid_coord(filename, grid): with open(filename, "a") as output: output.write("\n") From 141c8847f910102df4067a96034f5000c7a8222e Mon Sep 17 00:00:00 2001 From: Buggy123 Date: Wed, 9 Mar 2016 21:16:55 -0500 Subject: [PATCH 31/77] Made the emagged Orion's Trail reward stronger --- code/game/machinery/computer/arcade.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index 961b71fbb1c..7fe9bc267eb 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -1089,7 +1089,7 @@ playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 25, 1) sleep(3.6) src.visible_message("[src] explodes!") - explosion(src.loc, 1,2,4, flame_range = 3) + explosion(src.loc, 2,4,8, flame_range = 16) qdel(src) @@ -1108,4 +1108,4 @@ #undef ORION_STATUS_START #undef ORION_STATUS_NORMAL #undef ORION_STATUS_GAMEOVER -#undef ORION_STATUS_MARKET \ No newline at end of file +#undef ORION_STATUS_MARKET From baf007af4ecca3c83c77811af53e3adb9534e53f Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 10 Mar 2016 15:53:53 +1300 Subject: [PATCH 32/77] Don't damage eyes if flash intensity is zero --- code/modules/mob/living/carbon/carbon.dm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index d556b547fca..aa8e0bfa371 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -197,19 +197,19 @@ return if(weakeyes) Stun(2) - switch(damage) - if(1) - src << "Your eyes sting a little." - if(prob(40)) - adjust_eye_damage(1) + + if (damage == 1) + src << "Your eyes sting a little." + if(prob(40)) + adjust_eye_damage(1) - if(2) - src << "Your eyes burn." - adjust_eye_damage(rand(2, 4)) + else if (damage == 2) + src << "Your eyes burn." + adjust_eye_damage(rand(2, 4)) - else - src << "Your eyes itch and burn severely!" - adjust_eye_damage(rand(12, 16)) + else if( damage > 3) + src << "Your eyes itch and burn severely!" + adjust_eye_damage(rand(12, 16)) if(eye_damage > 10) blind_eyes(damage) From a207b37ff06eede35bfc63416df0bc458527a934 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 22:13:29 -0500 Subject: [PATCH 33/77] Blobbernauts and blob spores can now move near blob tiles in no gravity. --- code/game/gamemodes/blob/blobs/blob_mobs.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/gamemodes/blob/blobs/blob_mobs.dm b/code/game/gamemodes/blob/blobs/blob_mobs.dm index fd408e9bf36..aa631c484e9 100644 --- a/code/game/gamemodes/blob/blobs/blob_mobs.dm +++ b/code/game/gamemodes/blob/blobs/blob_mobs.dm @@ -40,6 +40,11 @@ return 1 return ..() +/mob/living/simple_animal/hostile/blob/Process_Spacemove(movement_dir = 0) + for(var/obj/effect/blob/B in range(1, src)) + return 1 + return ..() + /mob/living/simple_animal/hostile/blob/handle_inherent_channels(message, message_mode) if(message_mode == MODE_BINARY) blob_chat(message) From c75d67098e5f9a185e55dc5951cd26136919c724 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 22:35:31 -0500 Subject: [PATCH 34/77] Ghosts remain orbitting the nuclear disc when it is "destroyed" --- code/game/gamemodes/nuclear/nuclearbomb.dm | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm index 77306a0e167..732448e7579 100644 --- a/code/game/gamemodes/nuclear/nuclearbomb.dm +++ b/code/game/gamemodes/nuclear/nuclearbomb.dm @@ -428,14 +428,11 @@ This is here to make the tiles around the station mininuke change when it's arme /obj/item/weapon/disk/nuclear/Destroy() if(blobstart.len > 0) - poi_list.Remove(src) - var/obj/item/weapon/disk/nuclear/NEWDISK = new(pick(blobstart)) - transfer_fingerprints_to(NEWDISK) + var/turf/targetturf = get_turf(pick(blobstart)) var/turf/diskturf = get_turf(src) - message_admins("[src] has been destroyed in ([diskturf.x], [diskturf.y] ,[diskturf.z] - JMP). Moving it to ([NEWDISK.x], [NEWDISK.y], [NEWDISK.z] - JMP).") - log_game("[src] has been destroyed in ([diskturf.x], [diskturf.y] ,[diskturf.z]). Moving it to ([NEWDISK.x], [NEWDISK.y], [NEWDISK.z]).") - return QDEL_HINT_HARDDEL_NOW + forceMove(targetturf) //move the disc, so ghosts remain orbitting it even if it's "destroyed" + message_admins("[src] has been destroyed in ([diskturf.x], [diskturf.y] ,[diskturf.z] - JMP). Moving it to ([targetturf.x], [targetturf.y], [targetturf.z] - JMP).") + log_game("[src] has been destroyed in ([diskturf.x], [diskturf.y] ,[diskturf.z]). Moving it to ([targetturf.x], [targetturf.y], [targetturf.z]).") else - . = QDEL_HINT_LETMELIVE // Cancel destruction throw EXCEPTION("Unable to find a blobstart landmark") - return + return QDEL_HINT_LETMELIVE //Cancel destruction regardless of success From 5bf30d247b795b8464400a848179b62c94b3bff1 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 22:41:15 -0500 Subject: [PATCH 35/77] Morphs now reset alpha when unmorphing --- code/game/gamemodes/miniantags/morph/morph.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/miniantags/morph/morph.dm b/code/game/gamemodes/miniantags/morph/morph.dm index 79a6c4491eb..3a67b886c90 100644 --- a/code/game/gamemodes/miniantags/morph/morph.dm +++ b/code/game/gamemodes/miniantags/morph/morph.dm @@ -103,6 +103,7 @@ return morphed = 0 form = null + alpha = initial(alpha) //anim(loc,src,'icons/mob/mob.dmi',,"morph",,src.dir) From bda7404777f724648420a1209e6c53fe4461982b Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 22:45:24 -0500 Subject: [PATCH 36/77] Dead cyborgs no longer get binary messages twice --- code/modules/mob/living/silicon/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/say.dm b/code/modules/mob/living/silicon/say.dm index 2d8e31e3c97..acb2e55dc96 100644 --- a/code/modules/mob/living/silicon/say.dm +++ b/code/modules/mob/living/silicon/say.dm @@ -17,7 +17,7 @@ M << renderedAI else M << rendered - if(M in dead_mob_list) + if(isobserver(M)) M << "(F) [rendered]" /mob/living/silicon/binarycheck() From 21f04b36ff3caab3a58bdb050e2cc4e6ef06cd3c Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 22:53:19 -0500 Subject: [PATCH 37/77] Sleeping Carp attacks now have attack animations --- code/datums/martial.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/datums/martial.dm b/code/datums/martial.dm index b60de2f15ff..1d88a3d047c 100644 --- a/code/datums/martial.dm +++ b/code/datums/martial.dm @@ -319,6 +319,7 @@ /datum/martial_art/the_sleeping_carp/proc/wristWrench(mob/living/carbon/human/A, mob/living/carbon/human/D) if(!D.stat && !D.stunned && !D.weakened) + A.do_attack_animation(D) D.visible_message("[A] grabs [D]'s wrist and wrenches it sideways!", \ "[A] grabs your wrist and violently wrenches it to the side!") playsound(get_turf(A), 'sound/weapons/thudswoosh.ogg', 50, 1, -1) @@ -331,6 +332,7 @@ /datum/martial_art/the_sleeping_carp/proc/backKick(mob/living/carbon/human/A, mob/living/carbon/human/D) if(A.dir == D.dir && !D.stat && !D.weakened) + A.do_attack_animation(D) D.visible_message("[A] kicks [D] in the back!", \ "[A] kicks you in the back, making you stumble and fall!") step_to(D,get_step(D,D.dir),1) @@ -341,6 +343,7 @@ /datum/martial_art/the_sleeping_carp/proc/kneeStomach(mob/living/carbon/human/A, mob/living/carbon/human/D) if(!D.stat && !D.weakened) + A.do_attack_animation(D) D.visible_message("[A] knees [D] in the stomach!", \ "[A] winds you with a knee in the stomach!") D.audible_message("[D] gags!") @@ -352,6 +355,7 @@ /datum/martial_art/the_sleeping_carp/proc/headKick(mob/living/carbon/human/A, mob/living/carbon/human/D) if(!D.stat && !D.weakened) + A.do_attack_animation(D) D.visible_message("[A] kicks [D] in the head!", \ "[A] kicks you in the jaw!") D.apply_damage(20, BRUTE, "head") @@ -363,6 +367,7 @@ /datum/martial_art/the_sleeping_carp/proc/elbowDrop(mob/living/carbon/human/A, mob/living/carbon/human/D) if(D.weakened || D.resting || D.stat) + A.do_attack_animation(D) D.visible_message("[A] elbow drops [D]!", \ "[A] piledrives you with their elbow!") if(D.stat) @@ -385,6 +390,7 @@ add_to_streak("H",D) if(check_streak(A,D)) return 1 + A.do_attack_animation(D) var/atk_verb = pick("punches", "kicks", "chops", "hits", "slams") D.visible_message("[A] [atk_verb] [D]!", \ "[A] [atk_verb] you!") From 483540c67cef549c01175de3ede6d3ced258cf59 Mon Sep 17 00:00:00 2001 From: c0 Date: Thu, 10 Mar 2016 06:53:46 +0300 Subject: [PATCH 38/77] Removes a single active turf from z4 --- _maps/map_files/generic/z4.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/map_files/generic/z4.dmm b/_maps/map_files/generic/z4.dmm index 5c04db824a6..a9fb68f6d0b 100644 --- a/_maps/map_files/generic/z4.dmm +++ b/_maps/map_files/generic/z4.dmm @@ -952,7 +952,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablfIbjaeaaaaaaaeaelukWoFfdoRipjAfgfgitfgoRfgfgfdoJfghGfgfgfgfdfgfgfgfgfgfdfdfdfdfdfdfdfdfdfghGfgfgfdfgfffgfgfFfgfkfdhWbwiubjivfnoSiyfRivihiviviAiBiCiDgDfUfUfOiaibaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablfBluaaaaaaaaaaaebjfIoMfgfFfFiGoNfgfgfgfgoOfgfdiFfghGfgfghHfdiFoNfgoOfgfdfdfdfdfgfgfgfgfgfghGfgfgfdfgoOfffffgiIfkeDaeaahWhWhWbjeDbwaahWhWhWhWfNfOfUiNfUfUiOfOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaebjaaaaaaaaaaaabjaebjoFfdhtffiZiHjhjhjhjhjhjhjOjhjhjTfgfgfgfdfgfgfgfgfgfgfgitfgiRilililililjUjVfkfkfkfgfgfgfgfgfkeDaeaaaaaaaaaaaaaaaaaaaaaaaagAfOfUfOfUfUiUfOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabloFfdfffFfdfdfdfgfdfdfdiVfdfgfgiWilililiXililiYililililililiSfgfgfgfgfgfghGfkoQfkfkiTfffdoPbwaeaaaaaaaaaaaaaaaaaaaaaaaahWgBfOfUfOfOfOfOfOfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabloFfdfffFfdfdfdfgfdfdfdiVfdfgfgiWilililiXililiYililililililiSfgfgfgfgfgfghGfkoQfkfkiTfffdoPbwaeaaaaaaaaaaaaaaaaaaaaaaaahWjtfOfUfOfOfOfOfOfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafdfFfmfdjditfgfdjditfgfdjejejejfiVjgfdiFfghGfgfgfgfgfgfgfgfkfkfkfkfkfkjWfkphoVfkfdfdfdaaaaaaaaaaaaaaaajiaaaaaeaaaeaefOgDjkfUfUhIjkfUfNfNabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaefffdoToNjmfdoToNoTfdjnpnpnfgfgfgfdfgfgjofgfgfgfgfgfgfgfkbkbkoUbkbkkabkbkblblbwbwbwfyaaaadWaaaaaaaaaaaaaejsjsaeaefOjtfUfUgDfUfUfUfUfNabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaefdfdfdfdfdfdfdfdfdfgpppojufgfgfdfdfdfdfdfdfdfdfdjvfdfkbjbjbjbjbkjqkdbkbloUbkprbwbjaeaaaeaeaeaaaaaaaeaeaeaaaeaahWjyfUfUfUfUgDfUoZfNabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa From 3fab1fa9cb6a09001ca08ba075f72ace94e63d90 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Wed, 9 Mar 2016 23:06:46 -0500 Subject: [PATCH 39/77] Ascended Shadowling phase shift now works --- .../shadowling/ascendant_shadowling.dm | 1 - .../shadowling/shadowling_abilities.dm | 31 +++++++++---------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/code/game/gamemodes/shadowling/ascendant_shadowling.dm b/code/game/gamemodes/shadowling/ascendant_shadowling.dm index 9b51955136e..3195368f124 100644 --- a/code/game/gamemodes/shadowling/ascendant_shadowling.dm +++ b/code/game/gamemodes/shadowling/ascendant_shadowling.dm @@ -12,7 +12,6 @@ health = 100000 maxHealth = 100000 speed = 0 - var/phasing = 0 see_in_dark = 8 see_invisible = SEE_INVISIBLE_MINIMUM diff --git a/code/game/gamemodes/shadowling/shadowling_abilities.dm b/code/game/gamemodes/shadowling/shadowling_abilities.dm index f7d7505c2e2..05143e48dd6 100644 --- a/code/game/gamemodes/shadowling/shadowling_abilities.dm +++ b/code/game/gamemodes/shadowling/shadowling_abilities.dm @@ -759,7 +759,7 @@ sound = 'sound/magic/Staff_Chaos.ogg' /obj/effect/proc_holder/spell/targeted/annihilate/cast(list/targets,mob/living/simple_animal/ascendant_shadowling/user = usr) - if(user.phasing) + if(user.incorporeal_move) user << "You are not in the same plane of existence. Unphase first." revert_cast() return @@ -787,7 +787,7 @@ action_icon_state = "enthrall" /obj/effect/proc_holder/spell/targeted/hypnosis/cast(list/targets,mob/living/simple_animal/ascendant_shadowling/user = usr) - if(user.phasing) + if(user.incorporeal_move) revert_cast() user << "You are not in the same plane of existence. Unphase first." return @@ -824,19 +824,18 @@ clothes_req = 0 action_icon_state = "shadow_walk" -/obj/effect/proc_holder/spell/self/shadowling_phase_shift/cast(list/targets,mob/living/simple_animal/ascendant_shadowling/user = usr) - for(user in targets) - user.phasing = !user.phasing - if(user.phasing) - user.visible_message("[user] suddenly vanishes!", \ - "You begin phasing through planes of existence. Use the ability again to return.") - user.incorporeal_move = 1 - user.alpha = 0 - else - user.visible_message("[user] suddenly appears from nowhere!", \ - "You return from the space between worlds.") - user.incorporeal_move = 0 - user.alpha = 255 +/obj/effect/proc_holder/spell/self/shadowling_phase_shift/cast(mob/living/simple_animal/ascendant_shadowling/user) + user.incorporeal_move = !user.incorporeal_move + if(user.incorporeal_move) + user.visible_message("[user] suddenly vanishes!", \ + "You begin phasing through planes of existence. Use the ability again to return.") + user.density = 0 + user.alpha = 0 + else + user.visible_message("[user] suddenly appears from nowhere!", \ + "You return from the space between worlds.") + user.density = 1 + user.alpha = 255 /obj/effect/proc_holder/spell/aoe_turf/ascendant_storm //Releases bolts of lightning to everyone nearby @@ -850,7 +849,7 @@ sound = 'sound/magic/lightningbolt.ogg' /obj/effect/proc_holder/spell/aoe_turf/ascendant_storm/cast(list/targets,mob/living/simple_animal/ascendant_shadowling/user = usr) - if(user.phasing) + if(user.incorporeal_move) user << "You are not in the same plane of existence. Unphase first." revert_cast() return From 1f177d3ab2e2a94a37ae9bf746eed0d9a12860ba Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 9 Mar 2016 22:42:03 -0600 Subject: [PATCH 40/77] Communications --- code/game/machinery/computer/buildandrepair.dm | 2 -- code/game/machinery/computer/communications.dm | 10 ++++++---- code/modules/admin/verbs/pray.dm | 8 +++++++- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index 0ee1eafa7cb..130f5957266 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -71,8 +71,6 @@ build_path = /obj/machinery/computer/communications origin_tech = "programming=2;magnets=2" var/lastTimeUsed = 0 -/obj/item/weapon/circuitboard/communications/proc/cooldownLeft(deciseconds=600) - return max(deciseconds - (world.time - lastTimeUsed), 0) /obj/item/weapon/circuitboard/card name = "circuit board (ID Console)" diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index f13ce7edf07..cc328392059 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -202,7 +202,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 // OMG CENTCOM LETTERHEAD if("MessageCentcomm") if(src.authenticated==2) - if(CM.cooldownLeft()) + if(CM.lastTimeUsed + 600 < world.time) usr << "Arrays recycling. Please stand by." return var/input = stripped_input(usr, "Please choose a message to transmit to Centcom via quantum entanglement. Please be aware that this process is very expensive, and abuse will lead to... termination. Transmission does not guarantee a response.", "Send a message to Centcomm.", "") @@ -217,7 +217,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 // OMG SYNDICATE ...LETTERHEAD if("MessageSyndicate") if((src.authenticated==2) && (src.emagged)) - if(CM.cooldownLeft()) + if(CM.lastTimeUsed + 600 < world.time) usr << "Arrays recycling. Please stand by." return var/input = stripped_input(usr, "Please choose a message to transmit to \[ABNORMAL ROUTING COORDINATES\] via quantum entanglement. Please be aware that this process is very expensive, and abuse will lead to... termination. Transmission does not guarantee a response.", "Send a message to /??????/.", "") @@ -235,7 +235,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 if("nukerequest") //When there's no other way if(src.authenticated==2) - if(CM.cooldownLeft()) + if(CM.lastTimeUsed + 600 < world.time) usr << "Arrays recycling. Please stand by." return var/input = stripped_input(usr, "Please enter the reason for requesting the nuclear self-destruct codes. Misuse of the nuclear request system will not be tolerated under any circumstances. Transmission does not guarantee a response.", "Self Destruct Code Request.","") @@ -245,7 +245,6 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 usr << "Request sent." log_say("[key_name(usr)] has requested the nuclear codes from Centcomm") priority_announce("The codes for the on-station nuclear self-destruct have been requested by [usr]. Confirmation or denial of this request will be sent shortly.", "Nuclear Self Destruct Codes Requested",'sound/AI/commandreport.ogg') - CM.lastTimeUsed = world.time @@ -612,3 +611,6 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 SSshuttle.autoEvac() return ..() +/obj/machinery/computer/communications/proc/overrideCooldown() + var/obj/item/weapon/circuitboard/communications/CM = circuit + CM.lastTimeUsed = 0 \ No newline at end of file diff --git a/code/modules/admin/verbs/pray.dm b/code/modules/admin/verbs/pray.dm index 5f4a809778c..77eda46d3e8 100644 --- a/code/modules/admin/verbs/pray.dm +++ b/code/modules/admin/verbs/pray.dm @@ -42,14 +42,20 @@ var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN) msg = "CENTCOM:[key_name_admin(Sender)] (?) (PP) (VV) (SM) (FLW) (TP) (BSA) (RPLY): [msg]" admins << msg + for(var/obj/machinery/computer/communications/C in machines) + C.overrideCooldown() /proc/Syndicate_announce(text , mob/Sender) var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN) msg = "SYNDICATE:[key_name_admin(Sender)] (?) (PP) (VV) (SM) (FLW) (TP) (BSA) (RPLY): [msg]" admins << msg + for(var/obj/machinery/computer/communications/C in machines) + C.overrideCooldown() /proc/Nuke_request(text , mob/Sender) var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN) msg = "NUKE CODE REQUEST:[key_name_admin(Sender)] (?) (PP) (VV) (SM) (FLW) (TP) (BSA) (RPLY): [msg]" admins << msg - admins << "At this current time, the nuke must have the code manually set via varedit." \ No newline at end of file + admins << "At this current time, the nuke must have the code manually set via varedit." + for(var/obj/machinery/computer/communications/C in machines) + C.overrideCooldown() From 08f78d7db92595a7fe6a8a5227562b9e94527179 Mon Sep 17 00:00:00 2001 From: PKPenguin321 Date: Wed, 9 Mar 2016 23:02:18 -0800 Subject: [PATCH 41/77] adds reinforced bolas, tweaks uplink throwing star bundle adds reinforced bolas, they do a Weaken(1) and take twice as long to break out of when compared to normal ones. their sprite has a different color moves throwing star bundle to uplink_kits.dm from weaponry.dm and makes it use a syndicate box tweaked the throwing star bundle to be the throwing weapon bundle, updated uplink listing and description accordingly lowered throwing weapon bundle cost to 5 from 6 --- code/game/objects/items/weapons/handcuffs.dm | 11 +++++++++++ .../items/weapons/storage/uplink_kits.dm | 15 ++++++++++++++- code/game/objects/items/weapons/weaponry.dm | 12 ------------ code/modules/uplink/uplink_item.dm | 12 ++++++------ icons/obj/items.dmi | Bin 51393 -> 51624 bytes 5 files changed, 31 insertions(+), 19 deletions(-) diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index 955733fee2a..b742a2a228e 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -287,14 +287,25 @@ icon_state = "bola" breakouttime = 35//easy to apply, easy to break out of gender = NEUTER + var/stun = 0 /obj/item/weapon/restraints/legcuffs/bola/throw_impact(atom/hit_atom) if(..() || !iscarbon(hit_atom))//if it gets caught or the target can't be cuffed, return//abort var/mob/living/carbon/C = hit_atom if(!C.legcuffed) + visible_message("\The [src] ensnares [C]!") C.legcuffed = src src.loc = C C.update_inv_legcuffed() feedback_add_details("handcuffs","B") C << "\The [src] ensnares you!" + if(stun) + C.Weaken(1) + +/obj/item/weapon/restraints/legcuffs/bola/tactical//traitor variant + name = "reinforced bola" + desc = "A strong bola, made with a long steel chain. It looks heavy, enough so that it could trip somebody." + icon_state = "bola_r" + breakouttime = 70 + stun = 1 \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index fd68e7bf3ca..3dc9209938a 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -260,4 +260,17 @@ new /obj/item/device/radio/headset/chameleon(src) new /obj/item/weapon/stamp/chameleon(src) new /obj/item/device/pda/chameleon(src) - new /obj/item/weapon/gun/energy/laser/chameleon(src) \ No newline at end of file + new /obj/item/weapon/gun/energy/laser/chameleon(src) + +//5*(2*4) = 5*8 = 45, 45 damage if you hit one person with all 5 stars. +//Not counting the damage it will do while embedded (2*4 = 8, at 15% chance) +/obj/item/weapon/storage/box/syndie_kit/throwing_weapons/New() + ..() + contents = list() + new /obj/item/weapon/throwing_star(src) + new /obj/item/weapon/throwing_star(src) + new /obj/item/weapon/throwing_star(src) + new /obj/item/weapon/throwing_star(src) + new /obj/item/weapon/throwing_star(src) + new /obj/item/weapon/restraints/legcuffs/bola/tactical(src) + new /obj/item/weapon/restraints/legcuffs/bola/tactical(src) \ No newline at end of file diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm index ea174df13f2..483f1fc85fd 100644 --- a/code/game/objects/items/weapons/weaponry.dm +++ b/code/game/objects/items/weapons/weaponry.dm @@ -130,18 +130,6 @@ sharpness = IS_SHARP materials = list(MAT_METAL=500, MAT_GLASS=500) -//5*(2*4) = 5*8 = 45, 45 damage if you hit one person with all 5 stars. -//Not counting the damage it will do while embedded (2*4 = 8, at 15% chance) -/obj/item/weapon/storage/box/throwing_stars/New() - ..() - contents = list() - new /obj/item/weapon/throwing_star(src) - new /obj/item/weapon/throwing_star(src) - new /obj/item/weapon/throwing_star(src) - new /obj/item/weapon/throwing_star(src) - new /obj/item/weapon/throwing_star(src) - - /obj/item/weapon/switchblade name = "switchblade" diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm index 685fb69e0b0..d6b547e0acc 100644 --- a/code/modules/uplink/uplink_item.dm +++ b/code/modules/uplink/uplink_item.dm @@ -513,12 +513,12 @@ var/list/uplink_items = list() // Global list so we only initialize this once. cost = 17 exclude_modes = list(/datum/game_mode/nuclear, /datum/game_mode/gang) -/datum/uplink_item/stealthy_weapons/throwingstars - name = "Box of Throwing Stars" - desc = "A box of shurikens from ancient Earth martial arts. They are highly effective throwing weapons, \ - and will embed into limbs when possible." - item = /obj/item/weapon/storage/box/throwing_stars - cost = 6 +/datum/uplink_item/stealthy_weapons/throwingweapons + name = "Box of Throwing Weapons" + desc = "A box of shurikens and reinforced bolas from ancient Earth martial arts. They are highly effective \ + throwing weapons. The bolas can knock a target down and the shirukens will embed into limbs." + item = /obj/item/weapon/storage/box/syndie_kit/throwing_weapons + cost = 5 /datum/uplink_item/stealthy_weapons/edagger name = "Energy Dagger" diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 59eb1451d27b654a917e6379e014ba5e92a6f1fc..94e8ccc97785e7e308aae8074d8ae15562f45e24 100644 GIT binary patch delta 12941 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 delta 12708 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 @pdhuF%)RnTTz$r@PQRhaKNk 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 R;v>L6@8wiwE2YhX{tvJ*XPp25 From b03b3e423d3db5ce67a56c5e8a99beba8aca38f2 Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Thu, 10 Mar 2016 13:55:19 +0000 Subject: [PATCH 42/77] Automatic changelog generation for PR #15984 --- html/changelogs/AutoChangeLog-pr-15984.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-15984.yml diff --git a/html/changelogs/AutoChangeLog-pr-15984.yml b/html/changelogs/AutoChangeLog-pr-15984.yml new file mode 100644 index 00000000000..23409b939a2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-15984.yml @@ -0,0 +1,20 @@ +author: Joan +delete-after: True +changes: + - rscadd: "The blob can now be shocked by the tesla." + - tweak: "Strong blobs are now much more resistant to brute damage." + - wip: "Tweaks blob reagents;" + - rscdel: "Removes Ripping Tendrils." + - rscdel: "Removes Draining Spikes." + - tweak: "Cryogenic Liquid does less burn damage." + - tweak: "Pressurized Slime does less brute damage." + - tweak: "Reactive Gelatin now has a lower minimum damage." + - tweak: "Poisonous Strands applies its damage over a longer period of time." + - tweak: "Sporing Pods now does much less damage, and is less likely to produce spores when killed." + - tweak: "Regenerative Materia, Hallucinogenic Nectar, and Envenomed Filaments do less toxin damage." + - rscadd: "Energized Fibers no longer heals when hit with stamina damage, and is instead immune to the tesla." + - rscadd: "Boiling Oil now takes damage from extinguisher blasts. Boiling Oil blobbernauts, however, do not." + - tweak: "Replicating Foam now takes increased brute damage and when expanding from damage, will not expand again." + - tweak: "Flammable Goo takes 50% increased burn damage, from 30%." + - tweak: "Explosive Lattice now takes much higher damage from fire, flashbangs, and the tesla." + - experiment: "Electromagnetic Web takes full brute damage, lasers will now one-hit normal blobs, and the death EMP is smaller." From a1077721663a24f8b793ec2dcf8d365958fd51e7 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 10 Mar 2016 10:20:46 -0500 Subject: [PATCH 43/77] fixes --- code/game/gamemodes/blob/overmind.dm | 4 ++-- code/game/gamemodes/blob/powers.dm | 18 ++++++++++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/code/game/gamemodes/blob/overmind.dm b/code/game/gamemodes/blob/overmind.dm index b45b147a3fd..8603e6096a6 100644 --- a/code/game/gamemodes/blob/overmind.dm +++ b/code/game/gamemodes/blob/overmind.dm @@ -23,8 +23,8 @@ var/manualplace_min_time = 600 //in deciseconds //a minute, to get bearings var/autoplace_max_time = 3600 //six minutes, as long as should be needed -/mob/camera/blob/New(loc, placed = 0, mode_made = 0) - if(placed) //we already have a core! +/mob/camera/blob/New(loc, pre_placed = 0, mode_made = 0) + if(pre_placed) //we already have a core! manualplace_min_time = 0 autoplace_max_time = 0 placed = 1 diff --git a/code/game/gamemodes/blob/powers.dm b/code/game/gamemodes/blob/powers.dm index 41d3fa14386..7efa0387a5b 100644 --- a/code/game/gamemodes/blob/powers.dm +++ b/code/game/gamemodes/blob/powers.dm @@ -8,17 +8,21 @@ // Power verbs /mob/camera/blob/proc/place_blob_core(var/point_rate = base_point_rate, var/override = 0) - if(world.time <= manualplace_min_time && world.time <= autoplace_max_time) + if(!override && world.time <= manualplace_min_time && world.time <= autoplace_max_time) src << "It is too early to place your blob core!" return 0 if(placed) return 1 if(!override) for(var/mob/living/M in range(7, src)) + if("blob" in M.faction) + continue if(M.client) src << "There is someone too close to place your blob core!" return 0 - for(var/mob/living/M in view(15, src)) + for(var/mob/living/M in view(13, src)) + if("blob" in M.faction) + continue if(M.client) src << "Someone could see your blob core from here!" return 0 @@ -26,6 +30,16 @@ if(T.density) src << "This spot is too dense to place a blob core on!" return 0 + for(var/obj/O in T) + if(istype(O, /obj/effect/blob)) + if(istype(O, /obj/effect/blob/normal)) + qdel(O) + else + src << "There is already a blob here!" + return 0 + if(O.density) + src << "This spot is too dense to place a blob core on!" + return 0 else if(override == 1) var/turf/T = pick(blobstart) loc = T //got overrided? you're somewhere random, motherfucker From 3656ca9d40075c7e0ff1ad6c024f0439039950be Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 10 Mar 2016 10:29:40 -0500 Subject: [PATCH 44/77] The gravity generator is no longer permanently destroyed by the blob. --- code/modules/power/gravitygenerator.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/power/gravitygenerator.dm b/code/modules/power/gravitygenerator.dm index e93a0fb746c..da76c510940 100644 --- a/code/modules/power/gravitygenerator.dm +++ b/code/modules/power/gravitygenerator.dm @@ -32,6 +32,10 @@ var/const/GRAV_NEEDS_WRENCH = 3 if(severity == 1) // Very sturdy. set_broken() +/obj/machinery/gravity_generator/blob_act() + if(prob(20)) + set_broken() + /obj/machinery/gravity_generator/update_icon() ..() icon_state = "[get_status()]_[sprite_number]" From d5840cdb44c3632c0c23d50b49db62e1fc78053f Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 10 Mar 2016 10:47:21 -0500 Subject: [PATCH 45/77] Boiling Oil does slightly more damage, takes slightly less when extinguished Flammable Goo applies firestacks to targets, but doesn't ignite them. --- code/modules/reagents/chemistry/reagents/blob_reagents.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/blob_reagents.dm b/code/modules/reagents/chemistry/reagents/blob_reagents.dm index 7fbdf46cdb3..87119883e34 100644 --- a/code/modules/reagents/chemistry/reagents/blob_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/blob_reagents.dm @@ -156,12 +156,12 @@ M.adjust_fire_stacks(round(reac_volume/12)) M.IgniteMob() if(M) - M.apply_damage(0.4*reac_volume, BURN) + M.apply_damage(0.5*reac_volume, BURN) if(iscarbon(M)) M.emote("scream") /datum/reagent/blob/boiling_oil/extinguish_reaction(obj/effect/blob/B) - B.take_damage(rand(2, 3), BURN) + B.take_damage(rand(1, 3), BURN) //does burn and toxin damage, explodes into flame when hit with burn damage /datum/reagent/blob/flammable_goo @@ -177,6 +177,7 @@ /datum/reagent/blob/flammable_goo/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message, touch_protection, mob/camera/blob/O) reac_volume = ..() + M.adjust_fire_stacks(round(reac_volume/10)) //apply, but don't ignite M.apply_damage(0.4*reac_volume, TOX) if(M) M.apply_damage(0.2*reac_volume, BURN) From 5f706e5cd1025173a16eeef01125d4ca9c6dc1db Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 10 Mar 2016 11:47:05 -0500 Subject: [PATCH 46/77] this is old code --- code/game/gamemodes/blob/blobs/core.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/blob/blobs/core.dm b/code/game/gamemodes/blob/blobs/core.dm index f38cc74d236..eb0955b150a 100644 --- a/code/game/gamemodes/blob/blobs/core.dm +++ b/code/game/gamemodes/blob/blobs/core.dm @@ -15,7 +15,7 @@ var/point_rate = 2 -/obj/effect/blob/core/New(loc, var/client/new_overmind = null, var/new_rate = 2, var/placed = 0) +/obj/effect/blob/core/New(loc, client/new_overmind = null, new_rate = 2, placed = 0) blob_cores += src SSobj.processing |= src update_icon() //so it atleast appears From 32420d2152c592f7be007acafa3d49833679caf1 Mon Sep 17 00:00:00 2001 From: sybil-tgstation13 Date: Thu, 10 Mar 2016 16:57:24 +0000 Subject: [PATCH 47/77] Automatic changelog compile --- html/changelog.html | 22 ++++++++++++++++++ html/changelogs/.all_changelog.yml | 26 ++++++++++++++++++++++ html/changelogs/AutoChangeLog-pr-15984.yml | 20 ----------------- 3 files changed, 48 insertions(+), 20 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-15984.yml diff --git a/html/changelog.html b/html/changelog.html index e393e993f85..9c6ba8962bd 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -55,6 +55,28 @@ -->
+

10 March 2016

+

Joan updated:

+
    +
  • The blob can now be shocked by the tesla.
  • +
  • Strong blobs are now much more resistant to brute damage.
  • +
  • Tweaks blob reagents;
  • +
  • Removes Ripping Tendrils.
  • +
  • Removes Draining Spikes.
  • +
  • Cryogenic Liquid does less burn damage.
  • +
  • Pressurized Slime does less brute damage.
  • +
  • Reactive Gelatin now has a lower minimum damage.
  • +
  • Poisonous Strands applies its damage over a longer period of time.
  • +
  • Sporing Pods now does much less damage, and is less likely to produce spores when killed.
  • +
  • Regenerative Materia, Hallucinogenic Nectar, and Envenomed Filaments do less toxin damage.
  • +
  • Energized Fibers no longer heals when hit with stamina damage, and is instead immune to the tesla.
  • +
  • Boiling Oil now takes damage from extinguisher blasts. Boiling Oil blobbernauts, however, do not.
  • +
  • Replicating Foam now takes increased brute damage and when expanding from damage, will not expand again.
  • +
  • Flammable Goo takes 50% increased burn damage, from 30%.
  • +
  • Explosive Lattice now takes much higher damage from fire, flashbangs, and the tesla.
  • +
  • Electromagnetic Web takes full brute damage, lasers will now one-hit normal blobs, and the death EMP is smaller.
  • +
+

09 March 2016

Joan updated:

    diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index fcd75a7811f..31b3cae5234 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -3857,3 +3857,29 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. balls should now be more stable! Growing quicker and dissipating slower. It seems to also move around a touch more but that shouldn't be an issue as the the tesla escaping containment is unheard of! +2016-03-10: + Joan: + - rscadd: The blob can now be shocked by the tesla. + - tweak: Strong blobs are now much more resistant to brute damage. + - wip: Tweaks blob reagents; + - rscdel: Removes Ripping Tendrils. + - rscdel: Removes Draining Spikes. + - tweak: Cryogenic Liquid does less burn damage. + - tweak: Pressurized Slime does less brute damage. + - tweak: Reactive Gelatin now has a lower minimum damage. + - tweak: Poisonous Strands applies its damage over a longer period of time. + - tweak: Sporing Pods now does much less damage, and is less likely to produce spores + when killed. + - tweak: Regenerative Materia, Hallucinogenic Nectar, and Envenomed Filaments do + less toxin damage. + - rscadd: Energized Fibers no longer heals when hit with stamina damage, and is + instead immune to the tesla. + - rscadd: Boiling Oil now takes damage from extinguisher blasts. Boiling Oil blobbernauts, + however, do not. + - tweak: Replicating Foam now takes increased brute damage and when expanding from + damage, will not expand again. + - tweak: Flammable Goo takes 50% increased burn damage, from 30%. + - tweak: Explosive Lattice now takes much higher damage from fire, flashbangs, and + the tesla. + - experiment: Electromagnetic Web takes full brute damage, lasers will now one-hit + normal blobs, and the death EMP is smaller. diff --git a/html/changelogs/AutoChangeLog-pr-15984.yml b/html/changelogs/AutoChangeLog-pr-15984.yml deleted file mode 100644 index 23409b939a2..00000000000 --- a/html/changelogs/AutoChangeLog-pr-15984.yml +++ /dev/null @@ -1,20 +0,0 @@ -author: Joan -delete-after: True -changes: - - rscadd: "The blob can now be shocked by the tesla." - - tweak: "Strong blobs are now much more resistant to brute damage." - - wip: "Tweaks blob reagents;" - - rscdel: "Removes Ripping Tendrils." - - rscdel: "Removes Draining Spikes." - - tweak: "Cryogenic Liquid does less burn damage." - - tweak: "Pressurized Slime does less brute damage." - - tweak: "Reactive Gelatin now has a lower minimum damage." - - tweak: "Poisonous Strands applies its damage over a longer period of time." - - tweak: "Sporing Pods now does much less damage, and is less likely to produce spores when killed." - - tweak: "Regenerative Materia, Hallucinogenic Nectar, and Envenomed Filaments do less toxin damage." - - rscadd: "Energized Fibers no longer heals when hit with stamina damage, and is instead immune to the tesla." - - rscadd: "Boiling Oil now takes damage from extinguisher blasts. Boiling Oil blobbernauts, however, do not." - - tweak: "Replicating Foam now takes increased brute damage and when expanding from damage, will not expand again." - - tweak: "Flammable Goo takes 50% increased burn damage, from 30%." - - tweak: "Explosive Lattice now takes much higher damage from fire, flashbangs, and the tesla." - - experiment: "Electromagnetic Web takes full brute damage, lasers will now one-hit normal blobs, and the death EMP is smaller." From 9531ff401afb93446204354c817782d02d40e127 Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 10 Mar 2016 18:09:18 +0100 Subject: [PATCH 48/77] Fixes ruins repeating --- code/datums/helper_datums/map_template.dm | 1 + code/modules/awaymissions/zlevel.dm | 22 ++++++++++++---------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/code/datums/helper_datums/map_template.dm b/code/datums/helper_datums/map_template.dm index 8d564b565ea..e01b6e375b9 100644 --- a/code/datums/helper_datums/map_template.dm +++ b/code/datums/helper_datums/map_template.dm @@ -4,6 +4,7 @@ var/height = 0 var/mappath = null var/mapfile = null + var/loaded = 0 // Times loaded this round /datum/map_template/New(path = null, map = null, rename = null) if(path) diff --git a/code/modules/awaymissions/zlevel.dm b/code/modules/awaymissions/zlevel.dm index 696774a5c12..aba9d98157a 100644 --- a/code/modules/awaymissions/zlevel.dm +++ b/code/modules/awaymissions/zlevel.dm @@ -105,18 +105,20 @@ var/global/list/potentialRandomZlevels = generateMapList(filename = "config/away invisibility = 0 /obj/effect/ruin_loader/proc/Load(list/potentialRuins = space_ruins_templates, datum/map_template/template = null) - if(potentialRuins.len) - world << "Loading ruins..." - if(!template) - template = potentialRuins[pick(potentialRuins)] - template.load(get_turf(src),centered = TRUE) - potentialRuins -= template //Don't want to load the same one twice - world << "Ruins loaded." - - else + var/list/possible_ruins = list() + for(var/A in potentialRuins) + var/datum/map_template/T = A + if(!T.loaded) + possible_ruins += T + world << "Loading ruins..." + if(!template && possible_ruins.len) + template = possible_ruins[pick(possible_ruins)] + if(!template) world << "No ruins found." return - + template.load(get_turf(src),centered = TRUE) + template.loaded++ + world << "Ruins loaded." qdel(src) From 391f761ac9262c995549e187328faab5d0cb34b8 Mon Sep 17 00:00:00 2001 From: PKPenguin321 Date: Thu, 10 Mar 2016 12:26:35 -0800 Subject: [PATCH 49/77] maybe fixes metastation --- _maps/map_files/MetaStation/MetaStation.v41I.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/MetaStation/MetaStation.v41I.dmm b/_maps/map_files/MetaStation/MetaStation.v41I.dmm index 6aafc048227..08c57490c65 100644 --- a/_maps/map_files/MetaStation/MetaStation.v41I.dmm +++ b/_maps/map_files/MetaStation/MetaStation.v41I.dmm @@ -230,7 +230,7 @@ "aev" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Sanitarium"; req_access_txt = "2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/prison) "aew" = (/turf/simulated/wall/r_wall,/area/ai_monitored/security/armory) "aex" = (/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/obj/item/clothing/suit/armor/laserproof,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/ai_monitored/security/armory) -"aey" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/projectile/automatic/pistol = 5, /obj/item/weapon/gun/projectile/shotgun/automatic/combat = 5, /obj/item/weapon/gun/projectile/revolver/mateba, /obj/item/weapon/gun/projectile/automatic/pistol/deagle, /obj/item/weapon/storage/box/throwing_stars = 3)},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/ai_monitored/security/armory) +"aey" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/projectile/automatic/pistol = 5, /obj/item/weapon/gun/projectile/shotgun/automatic/combat = 5, /obj/item/weapon/gun/projectile/revolver/mateba, /obj/item/weapon/gun/projectile/automatic/pistol/deagle, /obj/item/weapon/storage/box/syndie_kit/throwing_weapons = 3)},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/ai_monitored/security/armory) "aez" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 32},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 23},/obj/machinery/button/door{id = "hosspace"; name = "Space Shutters Control"; pixel_x = -26; pixel_y = 34},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "aeA" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "aeB" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) @@ -4178,7 +4178,7 @@ "bCr" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "bCs" = (/obj/machinery/smartfridge/drinks{icon_state = "boozeomat"},/turf/simulated/wall,/area/crew_quarters/bar) "bCt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCu" = (/obj/structure/table/wood/poker,/obj/effect/spawner/lootdrop{loot = list(/obj/item/weapon/gun/projectile/revolver/russian = 5, /obj/item/weapon/storage/box/throwing_stars, /obj/item/toy/cards/deck/syndicate = 2); name = "gambling valuables spawner"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCu" = (/obj/structure/table/wood/poker,/obj/effect/spawner/lootdrop{loot = list(/obj/item/weapon/gun/projectile/revolver/russian = 5, /obj/item/weapon/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2); name = "gambling valuables spawner"},/turf/simulated/floor/wood,/area/crew_quarters/bar) "bCv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) "bCw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) "bCx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) From 733e157ae774921563f0a3b16239b0a6d32e363d Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 10 Mar 2016 16:03:43 -0500 Subject: [PATCH 50/77] All of the bottom gateway parts are passable --- code/modules/awaymissions/gateway.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index 593b004d2bf..e91ddab3e66 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -20,13 +20,14 @@ var/obj/machinery/gateway/centerstation/the_gateway = null /obj/machinery/gateway/centerstation/Destroy() if(the_gateway == src) the_gateway = null - ..() + return ..() /obj/machinery/gateway/initialize() update_icon() - if(dir == 2) - density = 0 + switch(dir) + if(SOUTH,SOUTHEAST,SOUTHWEST) + density = 0 /obj/machinery/gateway/update_icon() From eee1799259982f87ad89e1b86a9ba1c506b96ae2 Mon Sep 17 00:00:00 2001 From: oranges Date: Fri, 11 Mar 2016 10:37:57 +1300 Subject: [PATCH 51/77] Tweak wording --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 30ae2afd884..64020280af8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -272,4 +272,4 @@ There is no strict process when it comes to merging pull requests, pull requests * If you are proposing multiple changes, which change many different aspects of the code, you are expected to section them off into different pull requests in order to make it easier to review them and to deny/accept the changes that are deemed acceptable. -* If your pull request is accepted, the code you add is no longer exclusively yours but everyones, everyone is free to work on it but you are also free to object to any changes being made, which will be noted by a Project Lead or Project Manager. It is a shame this has to be explicitly told but there have been cases where this would've saved some trouble. +* If your pull request is accepted, the code you add is no longer exclusively yours but everyones, everyone is free to work on it but you are also free to object to any changes being made, which will be noted by a Project Lead or Project Manager. It is a shame this has to be explicitly said but there have been cases where this would've saved some trouble. From ece0ac04745bf282e3b32a469d68172a67d8720f Mon Sep 17 00:00:00 2001 From: oranges Date: Fri, 11 Mar 2016 13:28:14 +1300 Subject: [PATCH 52/77] Duncathan the writer --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64020280af8..1e8673bc449 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -272,4 +272,4 @@ There is no strict process when it comes to merging pull requests, pull requests * If you are proposing multiple changes, which change many different aspects of the code, you are expected to section them off into different pull requests in order to make it easier to review them and to deny/accept the changes that are deemed acceptable. -* If your pull request is accepted, the code you add is no longer exclusively yours but everyones, everyone is free to work on it but you are also free to object to any changes being made, which will be noted by a Project Lead or Project Manager. It is a shame this has to be explicitly said but there have been cases where this would've saved some trouble. +* If your pull request is accepted, the code you add no longer belongs exclusively to you but to everyone; everyone is free to work on it, but you are also free to object to any changes being made, which will be noted by a Project Lead or Project Manager. It is a shame this has to be explicitly said, but there have been cases where this would've saved some trouble. From 0c497debcab5d52f09e17e78c9383e84f34dca2c Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Thu, 10 Mar 2016 19:14:33 -0800 Subject: [PATCH 53/77] Make reset var handle lists properly --- code/game/pooling/pool.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/game/pooling/pool.dm b/code/game/pooling/pool.dm index d7ddbbeb082..338d8be84fd 100644 --- a/code/game/pooling/pool.dm +++ b/code/game/pooling/pool.dm @@ -106,14 +106,20 @@ var/list/pooledvariables = list() for(var/key in vars) if(key in exclude) continue - pooledvariables[type][key] = initial(vars[key]) + if(islist(vars[key])) + pooledvariables[type][key] = list() + else + pooledvariables[type][key] = initial(vars[key]) /datum/proc/ResetVars() if(!pooledvariables[type]) createVariables(args) for(var/key in pooledvariables[type]) - vars[key] = pooledvariables[type][key] + if (islist(pooledvariables[type][key])) + vars[key] = list() + else + vars[key] = pooledvariables[type][key] /atom/movable/ResetVars() ..() From 3be53bb7a47183566388c9e558bf0a81788e0f5d Mon Sep 17 00:00:00 2001 From: PKPenguin321 Date: Thu, 10 Mar 2016 19:33:54 -0800 Subject: [PATCH 54/77] changes var for bola stunning now instead of a TRUE/FALSE toggle, it's the actual amount of Weaken() applied. default is 0 (no stun) also fixes small typo in uplink_item.dm --- code/game/objects/items/weapons/handcuffs.dm | 7 +++---- code/modules/uplink/uplink_item.dm | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index b742a2a228e..a526ea5644c 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -287,7 +287,7 @@ icon_state = "bola" breakouttime = 35//easy to apply, easy to break out of gender = NEUTER - var/stun = 0 + var/weaken = 0 /obj/item/weapon/restraints/legcuffs/bola/throw_impact(atom/hit_atom) if(..() || !iscarbon(hit_atom))//if it gets caught or the target can't be cuffed, @@ -300,12 +300,11 @@ C.update_inv_legcuffed() feedback_add_details("handcuffs","B") C << "\The [src] ensnares you!" - if(stun) - C.Weaken(1) + C.Weaken(weaken) /obj/item/weapon/restraints/legcuffs/bola/tactical//traitor variant name = "reinforced bola" desc = "A strong bola, made with a long steel chain. It looks heavy, enough so that it could trip somebody." icon_state = "bola_r" breakouttime = 70 - stun = 1 \ No newline at end of file + weaken = 1 \ No newline at end of file diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm index d6b547e0acc..97cd1eea830 100644 --- a/code/modules/uplink/uplink_item.dm +++ b/code/modules/uplink/uplink_item.dm @@ -516,7 +516,7 @@ var/list/uplink_items = list() // Global list so we only initialize this once. /datum/uplink_item/stealthy_weapons/throwingweapons name = "Box of Throwing Weapons" desc = "A box of shurikens and reinforced bolas from ancient Earth martial arts. They are highly effective \ - throwing weapons. The bolas can knock a target down and the shirukens will embed into limbs." + throwing weapons. The bolas can knock a target down and the shurikens will embed into limbs." item = /obj/item/weapon/storage/box/syndie_kit/throwing_weapons cost = 5 From bd61c535cb18ad672e13eaf188e5ad94c680b6fd Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Fri, 11 Mar 2016 04:37:40 +0000 Subject: [PATCH 55/77] Automatic changelog generation for PR #16007 --- html/changelogs/AutoChangeLog-pr-16007.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-16007.yml diff --git a/html/changelogs/AutoChangeLog-pr-16007.yml b/html/changelogs/AutoChangeLog-pr-16007.yml new file mode 100644 index 00000000000..1785b623fb5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-16007.yml @@ -0,0 +1,4 @@ +author: Joan +delete-after: True +changes: + - bugfix: "Blobbernauts and blob spores can now move near blob tiles in no gravity." From 78e2a10cedbad525a642888aba873625a38f5218 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Fri, 11 Mar 2016 05:29:50 +0000 Subject: [PATCH 56/77] Fixed runtime when smooth atoms spawn adjacent to map border. Map border smoothing. Fix diagonal smoothing runtime when adjacent to map border. --- code/__HELPERS/icon_smoothing.dm | 46 ++++++++++++++++++++----- code/game/turfs/simulated/walls_misc.dm | 8 ----- 2 files changed, 38 insertions(+), 16 deletions(-) diff --git a/code/__HELPERS/icon_smoothing.dm b/code/__HELPERS/icon_smoothing.dm index bb059870961..5651e82e70b 100644 --- a/code/__HELPERS/icon_smoothing.dm +++ b/code/__HELPERS/icon_smoothing.dm @@ -35,8 +35,11 @@ #define SMOOTH_FALSE 0 //not smooth #define SMOOTH_TRUE 1 //smooths with exact specified types or just itself -#define SMOOTH_MORE 2 //smooths with all subtypes of specified types or just itself +#define SMOOTH_MORE 2 //smooths with all subtypes of specified types or just itself (this value can replace SMOOTH_TRUE) #define SMOOTH_DIAGONAL 4 //if atom should smooth diagonally, this should be present in 'smooth' var +#define SMOOTH_BORDER 8 //atom will smooth with the borders of the map + +#define NULLTURF_BORDER 123456789 #define DEFAULT_UNDERLAY_ICON 'icons/turf/floors.dmi' #define DEFAULT_UNDERLAY_ICON_STATE "plating" @@ -65,27 +68,42 @@ for(var/direction in cardinal) AM = find_type_in_direction(A, direction) - if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) + if(AM == NULLTURF_BORDER) + if((A.smooth & SMOOTH_BORDER)) + adjacencies |= 1 << direction + else if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) adjacencies |= 1 << direction if(adjacencies & N_NORTH) if(adjacencies & N_WEST) AM = find_type_in_direction(A, NORTHWEST) - if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) + if(AM == NULLTURF_BORDER) + if((A.smooth & SMOOTH_BORDER)) + adjacencies |= N_NORTHWEST + else if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) adjacencies |= N_NORTHWEST if(adjacencies & N_EAST) AM = find_type_in_direction(A, NORTHEAST) - if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) + if(AM == NULLTURF_BORDER) + if((A.smooth & SMOOTH_BORDER)) + adjacencies |= N_NORTHEAST + else if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) adjacencies |= N_NORTHEAST if(adjacencies & N_SOUTH) if(adjacencies & N_WEST) AM = find_type_in_direction(A, SOUTHWEST) - if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) + if(AM == NULLTURF_BORDER) + if((A.smooth & SMOOTH_BORDER)) + adjacencies |= N_SOUTHWEST + else if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) adjacencies |= N_SOUTHWEST if(adjacencies & N_EAST) AM = find_type_in_direction(A, SOUTHEAST) - if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) + if(AM == NULLTURF_BORDER) + if((A.smooth & SMOOTH_BORDER)) + adjacencies |= N_SOUTHEAST + else if( (AM && !istype(AM)) || (istype(AM) && AM.anchored) ) adjacencies |= N_SOUTHEAST return adjacencies @@ -141,9 +159,9 @@ underlays += image(fixed_underlay["icon"], fixed_underlay["icon_state"], layer=src.layer) else var/turf/T = get_step(src, turn(adjacencies, 180)) - if(T.density) + if(T && T.density) T = get_step(src, turn(adjacencies, 135)) - if(T.density) + if(T && T.density) T = get_step(src, turn(adjacencies, 225)) if(istype(T, /turf/space)) @@ -241,6 +259,9 @@ x_offset -= range var/turf/target_turf = locate(source.x + x_offset, source.y + y_offset, source.z) + if(!target_turf) + return NULLTURF_BORDER + if(source.canSmoothWith) var/atom/A if(source.smooth & SMOOTH_MORE) @@ -341,3 +362,12 @@ return SOUTHEAST else return 0 + +//Example smooth wall +/turf/simulated/wall/smooth + name = "smooth wall" + icon = 'icons/turf/smooth_wall.dmi' + icon_state = "smooth" + walltype = "shuttle" + smooth = SMOOTH_TRUE|SMOOTH_DIAGONAL|SMOOTH_BORDER + canSmoothWith = null \ No newline at end of file diff --git a/code/game/turfs/simulated/walls_misc.dm b/code/game/turfs/simulated/walls_misc.dm index 35ba8754896..ec9a7794770 100644 --- a/code/game/turfs/simulated/walls_misc.dm +++ b/code/game/turfs/simulated/walls_misc.dm @@ -74,14 +74,6 @@ icon_state = "overspace" fixed_underlay = list("space"=1) -/turf/simulated/wall/smooth - name = "smooth wall" - icon = 'icons/turf/smooth_wall.dmi' - icon_state = "smooth" - walltype = "shuttle" - smooth = SMOOTH_TRUE|SMOOTH_DIAGONAL - canSmoothWith = null - //sub-type to be used for interior shuttle walls //won't get an underlay of the destination turf on shuttle move /turf/simulated/wall/shuttle/interior/copyTurf(turf/T) From 4b58841faf8b446bba82886532bae63b9bd1c5a0 Mon Sep 17 00:00:00 2001 From: hornygranny Date: Thu, 10 Mar 2016 22:30:44 -0800 Subject: [PATCH 57/77] renames beach love shack to comply with lore --- _maps/RandomZLevels/beach2.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/RandomZLevels/beach2.dmm b/_maps/RandomZLevels/beach2.dmm index a9210c18c13..ae4130090dd 100644 --- a/_maps/RandomZLevels/beach2.dmm +++ b/_maps/RandomZLevels/beach2.dmm @@ -27,7 +27,7 @@ "aA" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/structure/table/wood,/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "aB" = (/obj/effect/overlay/coconut,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "aC" = (/obj/structure/signpost,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) -"aD" = (/obj/machinery/door/airlock/sandstone{id_tag = "loveshack"; name = "Lotsu's Love Shack"},/turf/simulated/floor/wood,/area/awaymission/beach) +"aD" = (/obj/machinery/door/airlock/sandstone{id_tag = "loveshack"; name = "Mekhi's Cuck Shed"},/turf/simulated/floor/wood,/area/awaymission/beach) "aE" = (/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "aF" = (/obj/machinery/button/door{id = "changing1"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) "aG" = (/obj/machinery/button/door{id = "changing2"; name = "changing room lock"; normaldoorcontrol = 1; pixel_x = 24; specialfunctions = 4},/turf/simulated/floor/wood{baseturf = /turf/simulated/floor/plating/beach/sand},/area/awaymission/beach) From 6b7774a1de2f3ae6ca93aba250a45c8b9eafd205 Mon Sep 17 00:00:00 2001 From: c0 Date: Wed, 9 Mar 2016 15:05:37 +0300 Subject: [PATCH 58/77] fixes --- code/game/gamemodes/nuclear/nuclearbomb.dm | 9 ++-- code/game/machinery/cloning.dm | 31 +++++++------- code/game/objects/items/robot/ai_upgrades.dm | 8 ++-- code/modules/hydroponics/grown.dm | 20 ++++----- code/modules/hydroponics/grown/banana.dm | 2 - code/modules/hydroponics/grown/tomato.dm | 1 - code/modules/hydroponics/growninedible.dm | 19 ++++----- code/modules/hydroponics/plant_genes.dm | 42 +++++++++++++++++-- code/modules/hydroponics/seeds.dm | 19 ++++++--- code/modules/research/designs.dm | 5 +-- code/modules/research/research.dm | 11 ++--- icons/obj/cloning.dmi | Bin 9868 -> 8985 bytes icons/obj/module.dmi | Bin 4088 -> 9771 bytes 13 files changed, 98 insertions(+), 69 deletions(-) diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm index 77306a0e167..fb100742d3b 100644 --- a/code/game/gamemodes/nuclear/nuclearbomb.dm +++ b/code/game/gamemodes/nuclear/nuclearbomb.dm @@ -407,13 +407,16 @@ This is here to make the tiles around the station mininuke change when it's arme SetTurfs() //==========DAT FUKKEN DISK=============== +/obj/item/weapon/disk + icon = 'icons/obj/module.dmi' + w_class = 1 + item_state = "card-id" + icon_state = "datadisk0" + /obj/item/weapon/disk/nuclear name = "nuclear authentication disk" desc = "Better keep this safe." - icon = 'icons/obj/items.dmi' icon_state = "nucleardisk" - item_state = "card-id" - w_class = 1 /obj/item/weapon/disk/nuclear/New() ..() diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index ab1c078c395..85b3363e073 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -51,13 +51,25 @@ //TO-DO: Make the genetics machine accept them. /obj/item/weapon/disk/data name = "cloning data disk" - icon = 'icons/obj/cloning.dmi' icon_state = "datadisk0" //Gosh I hope syndies don't mistake them for the nuke disk. - item_state = "card-id" - w_class = 1 var/list/fields = list() var/read_only = 0 //Well,it's still a floppy disk +//Disk stuff. +/obj/item/weapon/disk/data/New() + ..() + icon_state = "datadisk[rand(0,6)]" + overlays += "datadisk_gene" + + +/obj/item/weapon/disk/data/attack_self(mob/user) + read_only = !read_only + user << "You flip the write-protect tab to [src.read_only ? "protected" : "unprotected"]." + +/obj/item/weapon/disk/data/examine(mob/user) + ..() + user << "The write-protect tab is set to [src.read_only ? "protected" : "unprotected"]." + //Find a dead mob with a brain and client. /proc/find_dead_player(find_key) @@ -78,19 +90,6 @@ break return selected -//Disk stuff. -/obj/item/weapon/disk/data/New() - ..() - icon_state = "datadisk[pick(0,1,2)]" - -/obj/item/weapon/disk/data/attack_self(mob/user) - read_only = !read_only - user << "You flip the write-protect tab to [src.read_only ? "protected" : "unprotected"]." - -/obj/item/weapon/disk/data/examine(mob/user) - ..() - user << "The write-protect tab is set to [src.read_only ? "protected" : "unprotected"]." - //Health Tracker Implant /obj/item/weapon/implant/health diff --git a/code/game/objects/items/robot/ai_upgrades.dm b/code/game/objects/items/robot/ai_upgrades.dm index 7feca692186..97a1fab67d0 100644 --- a/code/game/objects/items/robot/ai_upgrades.dm +++ b/code/game/objects/items/robot/ai_upgrades.dm @@ -5,8 +5,8 @@ /obj/item/device/malf_upgrade name = "combat software upgrade" desc = "A highly illegal, highly dangerous upgrade for artificial intelligence units, granting them a variety of powers as well as the ability to hack APCs." - icon = 'icons/obj/cloning.dmi' - icon_state = "datadisk0" + icon = 'icons/obj/module.dmi' + icon_state = "datadisk3" /obj/item/device/malf_upgrade/afterattack(mob/living/silicon/ai/AI, mob/user) @@ -26,8 +26,8 @@ /obj/item/device/surveillance_upgrade name = "surveillance software upgrade" desc = "A software package that will allow an artificial intelligence to 'hear' from its cameras via lip reading." - icon = 'icons/obj/cloning.dmi' - icon_state = "datadisk0" + icon = 'icons/obj/module.dmi' + icon_state = "datadisk3" /obj/item/device/surveillance_upgrade/afterattack(mob/living/silicon/ai/AI, mob/user) if(!istype(AI)) diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 0c14842f4a1..02226ad0ade 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -24,7 +24,6 @@ // This is for adminspawn or map-placed growns. They get the default stats of their seed type. seed = new seed() seed.potency = 50 - seed.prepare_result(src) else // Something is terribly wrong qdel(src) return @@ -35,16 +34,13 @@ if(dried_type == -1) dried_type = src.type - add_juice() + for(var/datum/plant_gene/trait/T in seed.genes) + T.on_new(src, newloc) + seed.prepare_result(src) + add_juice() transform *= TransformUsingVariable(seed.potency, 100, 0.5) //Makes the resulting produce's sprite larger or smaller based on potency! - var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) - if(G) - if(istype(src.loc,/mob)) - pickup(src.loc)//adjusts the lighting on the mob - else - src.SetLuminosity(G.get_lum(seed)) /obj/item/weapon/reagent_containers/food/snacks/grown/proc/add_juice() @@ -117,7 +113,7 @@ for(var/datum/plant_gene/trait/trait in seed.genes) trait.on_squash(src, target) - for(var/atom/A in T) + for(var/A in T) reagents.reaction(A) qdel(src) @@ -128,9 +124,9 @@ T.on_consume(src, usr) ..() -/obj/item/weapon/reagent_containers/food/snacks/grown/Crossed(AM as mob|obj) +/obj/item/weapon/reagent_containers/food/snacks/grown/Crossed(atom/movable/AM) var/datum/plant_gene/trait/slip/S = seed.get_gene(/datum/plant_gene/trait/slip) - if(S && !ispath(trash, /obj/item/weapon/grown) && istype(AM, /mob/living/carbon)) + if(S && !ispath(trash, /obj/item/weapon/grown) && iscarbon(AM)) var/mob/living/carbon/M = AM var/stun = min(seed.potency * S.rate * 2, 1) var/weaken = min(seed.potency * S.rate, 0.5) @@ -144,7 +140,7 @@ // Glow gene procs /obj/item/weapon/reagent_containers/food/snacks/grown/Destroy() var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) - if(G && istype(loc,/mob)) + if(G && ismob(loc)) loc.AddLuminosity(-G.get_lum(seed)) return ..() diff --git a/code/modules/hydroponics/grown/banana.dm b/code/modules/hydroponics/grown/banana.dm index 95e8ccc6387..a439da93253 100644 --- a/code/modules/hydroponics/grown/banana.dm +++ b/code/modules/hydroponics/grown/banana.dm @@ -100,14 +100,12 @@ icon_state = "banana_blue" trash = /obj/item/weapon/grown/bananapeel/bluespace filling_color = "#0000FF" - origin_tech = "bluespace=3" /obj/item/weapon/grown/bananapeel/bluespace seed = /obj/item/seeds/banana/bluespace name = "bluespace banana peel" desc = "A peel from a bluespace banana." icon_state = "banana_peel_blue" - origin_tech = "bluespace=3" // Other diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm index 338f5318664..2e2dc8815bb 100644 --- a/code/modules/hydroponics/grown/tomato.dm +++ b/code/modules/hydroponics/grown/tomato.dm @@ -86,7 +86,6 @@ name = "blue-space tomato" desc = "So lubricated, you might slip through space-time." icon_state = "bluespacetomato" - origin_tech = "bluespace=3" // Killer Tomato diff --git a/code/modules/hydroponics/growninedible.dm b/code/modules/hydroponics/growninedible.dm index 6a997407847..a97cf99a19e 100644 --- a/code/modules/hydroponics/growninedible.dm +++ b/code/modules/hydroponics/growninedible.dm @@ -18,7 +18,6 @@ // This is for adminspawn or map-placed growns. They get the default stats of their seed type. seed = new seed() seed.potency = 50 - seed.prepare_result(src) else // Something is terribly wrong qdel(src) return @@ -26,16 +25,14 @@ pixel_x = rand(-5, 5) pixel_y = rand(-5, 5) - add_juice() + for(var/datum/plant_gene/trait/T in seed.genes) + T.on_new(src, newloc) + if(istype(src, seed.product)) // no adding reagents if it is just a trash item + seed.prepare_result(src) + add_juice() transform *= TransformUsingVariable(seed.potency, 100, 0.5) - var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) - if(G) - if(istype(src.loc,/mob)) - pickup(src.loc)//adjusts the lighting on the mob - else - src.SetLuminosity(G.get_lum(seed)) /obj/item/weapon/grown/attackby(obj/item/O, mob/user, params) ..() @@ -52,9 +49,9 @@ return 0 -/obj/item/weapon/grown/Crossed(AM as mob|obj) +/obj/item/weapon/grown/Crossed(atom/movable/AM) var/datum/plant_gene/trait/slip/S = seed.get_gene(/datum/plant_gene/trait/slip) - if(S && istype(AM, /mob/living/carbon)) + if(S && iscarbon(AM)) var/mob/living/carbon/M = AM var/stun = min(seed.potency * S.rate * 2, 1) var/weaken = min(seed.potency * S.rate, 0.5) @@ -68,7 +65,7 @@ // Glow gene procs /obj/item/weapon/grown/Destroy() var/datum/plant_gene/trait/glow/G = seed.get_gene(/datum/plant_gene/trait/glow) - if(G && istype(loc,/mob)) + if(G && ismob(loc)) loc.AddLuminosity(-G.get_lum(seed)) return ..() diff --git a/code/modules/hydroponics/plant_genes.dm b/code/modules/hydroponics/plant_genes.dm index 433e4cf1828..364a0b68d2a 100644 --- a/code/modules/hydroponics/plant_genes.dm +++ b/code/modules/hydroponics/plant_genes.dm @@ -85,22 +85,36 @@ /datum/plant_gene/trait var/rate = 0.05 var/examine_line = "" + var/list/origin_tech = null /datum/plant_gene/trait/Copy() var/datum/plant_gene/trait/G = ..() G.rate = rate return G +/datum/plant_gene/trait/proc/on_new(obj/item/weapon/reagent_containers/food/snacks/grown/G, newloc) + if(origin_tech) // This ugly code segment adds RnD tech levels to resulting plants. + if(G.origin_tech) + var/list/tech = params2list(G.origin_tech) + for(var/t in origin_tech) + if(t in tech) + tech[t] = max(tech[t], origin_tech[t]) + else + tech[t] = origin_tech[t] + G.origin_tech = list2params(tech) + else + G.origin_tech = list2params(origin_tech) + return + /datum/plant_gene/trait/proc/on_consume(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/target) return - /datum/plant_gene/trait/proc/on_slip(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/target) return - /datum/plant_gene/trait/proc/on_squash(obj/item/weapon/reagent_containers/food/snacks/grown/G, atom/target) return + /datum/plant_gene/trait/squash // Allows the plant to be squashed when thrown or slipped on, leaving a colored mess and trash type item behind. // Also splashes everything in target turf with reagents and applies other trait effects (teleporting, etc) to the target by on_squash. @@ -128,6 +142,7 @@ // Multiplies max charge by (rate*1000) when used in potato power cells. name = "Electrical Activity" rate = 0.01 + origin_tech = list("powerstorage" = 4) /datum/plant_gene/trait/cell_charge/on_slip(obj/item/weapon/reagent_containers/food/snacks/grown/G, mob/living/carbon/C) var/power = G.seed.potency*rate*5 @@ -168,6 +183,13 @@ /datum/plant_gene/trait/glow/proc/get_lum(obj/item/seeds/S) return round(S.potency*rate) +/datum/plant_gene/trait/glow/on_new(obj/item/weapon/reagent_containers/food/snacks/grown/G, newloc) + ..() + if(ismob(newloc)) + G.pickup(newloc)//adjusts the lighting on the mob + else + G.SetLuminosity(get_lum(G.seed)) + /datum/plant_gene/trait/glow/berry name = "Strong Bioluminescence" rate = 0.2 @@ -178,6 +200,7 @@ // Teleport radius is calculated as max(round(potency*rate), 1) name = "Bluespace Activity" rate = 0.1 + origin_tech = list("bluespace" = 3) /datum/plant_gene/trait/teleport/on_squash(obj/item/weapon/reagent_containers/food/snacks/grown/G, atom/target) if(isliving(target)) @@ -195,4 +218,17 @@ do_teleport(G, T, teleport_radius) else new /obj/effect/decal/cleanable/molten_item(T) //Leave a pile of goo behind for dramatic effect... - qdel(G) \ No newline at end of file + qdel(G) + + +/datum/plant_gene/trait/noreact + // Makes plant NOREACT until squashed. + name = "Separated Chemicals" + +/datum/plant_gene/trait/noreact/on_new(obj/item/weapon/reagent_containers/food/snacks/grown/G, newloc) + ..() + G.flags |= NOREACT + +/datum/plant_gene/trait/noreact/on_squash(obj/item/weapon/reagent_containers/food/snacks/grown/G, atom/target) + G.flags &= ~NOREACT + G.reagents.handle_reactions() \ No newline at end of file diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index e98d0c111c4..26ce249e646 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -51,9 +51,9 @@ if(!nogenes) // not used on Copy() genes += new /datum/plant_gene/core/lifespan(lifespan) genes += new /datum/plant_gene/core/endurance(endurance) - genes += new /datum/plant_gene/core/production(production) if(yield != -1) genes += new /datum/plant_gene/core/yield(yield) + genes += new /datum/plant_gene/core/production(production) if(potency != -1) genes += new /datum/plant_gene/core/potency(potency) @@ -83,6 +83,12 @@ /obj/item/seeds/proc/get_gene(typepath) return (locate(typepath) in genes) +/obj/item/seeds/proc/reagents_from_genes() + reagents_add = list() + for(var/datum/plant_gene/reagent/R in genes) + reagents_add[R.reagent_id] = R.rate + + /obj/item/seeds/bullet_act(obj/item/projectile/Proj) //Works with the Somatoray to modify plant variables. if(istype(Proj, /obj/item/projectile/energy/florayield)) @@ -120,7 +126,6 @@ var/product_name while(t_amount < getYield()) var/obj/item/weapon/reagent_containers/food/snacks/grown/t_prod = new product(output_loc, src) - prepare_result(t_prod) result.Add(t_prod) // User gets a consumable if(!t_prod) return @@ -164,9 +169,10 @@ C.value = endurance /obj/item/seeds/proc/adjust_production(adjustamt) - production = Clamp(production + adjustamt, 2, 10) - var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/production) - C.value = production + if(yield != -1) + production = Clamp(production + adjustamt, 2, 10) + var/datum/plant_gene/core/C = get_gene(/datum/plant_gene/core/production) + C.value = production /obj/item/seeds/proc/adjust_potency(adjustamt) if(potency != -1) @@ -191,7 +197,8 @@ if(yield != -1) text += "- Yield: [yield]\n" text += "- Maturation speed: [maturation]\n" - text += "- Production speed: [production]\n" + if(yield != -1) + text += "- Production speed: [production]\n" text += "- Endurance: [endurance]\n" text += "- Lifespan: [lifespan]\n" if(rarity) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 17de8229dea..8e3f719d11f 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -63,10 +63,7 @@ other types of metals and chemistry for reagents). /obj/item/weapon/disk/design_disk name = "Component Design Disk" desc = "A disk for storing device design data for construction in lathes." - icon = 'icons/obj/cloning.dmi' - icon_state = "datadisk2" - item_state = "card-id" - w_class = 1 + icon_state = "datadisk1" materials = list(MAT_METAL=30, MAT_GLASS=10) var/datum/design/blueprint diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index 154cd02b932..552765519cb 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -105,15 +105,15 @@ research holder datum. for(var/datum/tech/PT in possible_tech) if(TechHasReqs(PT)) AddTech2Known(PT) - + for(var/datum/design/PD in possible_designs) if(DesignHasReqs(PD)) AddDesign2Known(PD) - + for(var/v in known_tech) var/datum/tech/T = known_tech[v] T.level = Clamp(T.level, 1, 20) - + for(var/v in known_designs) var/datum/design/D = known_designs[v] D.CalcReliability(known_tech) @@ -275,10 +275,7 @@ research holder datum. /obj/item/weapon/disk/tech_disk name = "Technology Disk" desc = "A disk for storing technology data for further research." - icon = 'icons/obj/cloning.dmi' - icon_state = "datadisk2" - item_state = "card-id" - w_class = 1 + icon_state = "datadisk0" materials = list(MAT_METAL=30, MAT_GLASS=10) var/datum/tech/stored diff --git a/icons/obj/cloning.dmi b/icons/obj/cloning.dmi index a65c2a43f786ea808c670db8c7afbb4b3a15a07a..5aa439df6bce468e12b350385cd61c7f07d1ec8f 100644 GIT binary patch literal 8985 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 O07y+&wMyA4^uGb4$&f?< diff --git a/icons/obj/module.dmi b/icons/obj/module.dmi index fb68f0bcc653ae3132a4c2db12cae72871804d06..e317e004860ff0132a42e4f8cd9ad5757f57b811 100644 GIT binary patch literal 9771 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 B)Z+jE From 6bfe0e921aa8083647ba3f28bc6de21107d88067 Mon Sep 17 00:00:00 2001 From: Boredone Date: Fri, 11 Mar 2016 01:52:59 -0700 Subject: [PATCH 59/77] This replaces the FAcid spray on Mediborgs with a Poisonous Hypospray --- code/modules/mob/living/silicon/robot/robot_modules.dm | 7 +------ code/modules/reagents/reagent_containers/borghydro.dm | 4 ++++ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index 1cd5dba11a2..7cc98d8464f 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -157,17 +157,12 @@ add_module(new /obj/item/stack/medical/gauze/cyborg()) - emag = new /obj/item/weapon/reagent_containers/spray(src) - emag.reagents.add_reagent("facid", 250) - emag.name = "Fluacid spray" + emag = new /obj/item/weapon/reagent_containers/borghypo/hacked(src) fix_modules() /obj/item/weapon/robot_module/medical/respawn_consumable(mob/living/silicon/robot/R, coeff = 1) ..() - if(R.emagged && istype(emag, /obj/item/weapon/reagent_containers/spray)) - emag.reagents.add_reagent("facid", 2 * coeff) - /obj/item/weapon/robot_module/engineering diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index f19f14880b5..87898b22227 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -127,6 +127,10 @@ Borg Hypospray if(empty) usr << "It is currently empty! Allow some time for the internal syntheszier to produce more." +/obj/item/weapon/reagent_containers/borghypo/hacked + icon_state = "borghypo_s" + reagent_ids = list ("facid", "mutetoxin", "cyanide", "sodium_thiopental", "heparin", "teslium") + /obj/item/weapon/reagent_containers/borghypo/syndicate name = "syndicate cyborg hypospray" desc = "An experimental piece of Syndicate technology used to produce powerful restorative nanites used to very quickly restore injuries of all types. Also metabolizes potassium iodide, for radiation poisoning, and morphine, for offense." From c3f28bb3950fda3b32e1aefea138b0dd82e538cb Mon Sep 17 00:00:00 2001 From: Jordie0608 Date: Fri, 11 Mar 2016 20:35:10 +1100 Subject: [PATCH 60/77] show-server-revision tells if test pr is merged --- code/datums/helper_datums/getrev.dm | 43 +++++++++++++++-------------- code/game/gamemodes/game_mode.dm | 4 +-- code/world.dm | 2 +- 3 files changed, 26 insertions(+), 23 deletions(-) diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm index 0a48e574eaa..dd8c8848297 100644 --- a/code/datums/helper_datums/getrev.dm +++ b/code/datums/helper_datums/getrev.dm @@ -1,38 +1,41 @@ var/global/datum/getrev/revdata = new() /datum/getrev - var/revision + var/parentcommit + var/commit + var/testmerge var/date - var/showinfo /datum/getrev/New() - var/list/head_log = file2list(".git/logs/HEAD", "\n") - for(var/line=head_log.len, line>=1, line--) - if(head_log[line]) - var/list/last_entry = splittext(head_log[line], " ") - if(last_entry.len < 2) - continue - revision = last_entry[2] - // Get date/time - if(last_entry.len >= 5) - var/unix_time = text2num(last_entry[5]) - if(unix_time) - date = unix2date(unix_time) - break + var/head_file = return_file_text(".git/logs/HEAD") + var/regex/head_log = new("(\\w{40}) (\\w{40}).+> (\\d{10}).+\n\\Z") + head_log.Find(head_file) + parentcommit = head_log.group[1] + commit = head_log.group[2] + var/unix_time = text2num(head_log.group[3]) + if(SERVERTOOLS && fexists("..\\..\\prtestjob.lk")) + testmerge = return_file_text("..\\..\\prtestjob.lk") + date = unix2date(unix_time) world.log << "Running /tg/ revision:" - world.log << date - world.log << revision + world.log << "[date]" + world.log << commit + if(testmerge) + world.log << "Test merge active of PR #[testmerge]" + world.log << "Based off master commit [parentcommit]" world.log << "Current map - [MAP_NAME]" //can't think of anywhere better to put it - return /client/verb/showrevinfo() set category = "OOC" set name = "Show Server Revision" set desc = "Check the current server code revision" - if(revdata.revision) + if(revdata.commit) src << "Server revision compiled on: [revdata.date]" - src << "[revdata.revision]" + if(revdata.testmerge) + src << "Test merge active of PR #[revdata.testmerge]" + src << "Based off master commit [revdata.parentcommit]" + else + src << "[revdata.commit]" else src << "Revision unknown" src << "Current Infomational Settings:" diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 978f58a3fad..d7c63098f28 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -80,8 +80,8 @@ feedback_set_details("round_start","[time2text(world.realtime)]") if(ticker && ticker.mode) feedback_set_details("game_mode","[ticker.mode]") - if(revdata.revision) - feedback_set_details("revision","[revdata.revision]") + if(revdata.commit) + feedback_set_details("revision","[revdata.commit]") feedback_set_details("server_ip","[world.internet_address]:[world.port]") if(report) spawn (rand(waittime_l, waittime_h)) diff --git a/code/world.dm b/code/world.dm index 49c7ceea5f5..9a7c720095b 100644 --- a/code/world.dm +++ b/code/world.dm @@ -107,7 +107,7 @@ var/last_irc_status = 0 s["host"] = host ? host : null s["active_players"] = get_active_player_count() s["players"] = clients.len - s["revision"] = revdata.revision + s["revision"] = revdata.commit s["revision_date"] = revdata.date var/list/adm = get_admin_counts() From 5ee92abad3d2b136464efefe4c74394e2480cceb Mon Sep 17 00:00:00 2001 From: Jordie0608 Date: Fri, 11 Mar 2016 21:43:32 +1100 Subject: [PATCH 61/77] fixes broken regex --- code/controllers/subsystem/jobs.dm | 4 ++-- code/modules/admin/sql_notes.dm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm index c68f1f27928..2ff5e25cb7b 100644 --- a/code/controllers/subsystem/jobs.dm +++ b/code/controllers/subsystem/jobs.dm @@ -428,8 +428,8 @@ var/datum/subsystem/job/SSjob for(var/datum/job/J in occupations) var/regex/jobs = new("[J.title]=(-1|\\d+),(-1|\\d+)") jobs.Find(jobstext) - J.total_positions = text2num(jobs.group[2]) - J.spawn_positions = text2num(jobs.group[3]) + J.total_positions = text2num(jobs.group[1]) + J.spawn_positions = text2num(jobs.group[2]) /datum/subsystem/job/proc/HandleFeedbackGathering() for(var/datum/job/job in occupations) diff --git a/code/modules/admin/sql_notes.dm b/code/modules/admin/sql_notes.dm index c38ed7d242b..7050f968d16 100644 --- a/code/modules/admin/sql_notes.dm +++ b/code/modules/admin/sql_notes.dm @@ -185,9 +185,9 @@ server = config.server_name var/regex/note = new("^(\\d{2}-\\w{3}-\\d{4}) \\| (.+) ~(\\w+)$", "i") note.Find(notetext) - var/timestamp = note.group[2] - notetext = note.group[3] - var/adminckey = note.group[4] + var/timestamp = note.group[1] + notetext = note.group[2] + var/adminckey = note.group[3] var/DBQuery/query_convert_time = dbcon.NewQuery("SELECT ADDTIME(STR_TO_DATE('[timestamp]','%d-%b-%Y'), '0')") if(!query_convert_time.Execute()) var/err = query_convert_time.ErrorMsg() From e5be8c778448660ccdda24a7c39ac52197ecaf81 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Fri, 11 Mar 2016 16:32:48 +0000 Subject: [PATCH 62/77] detective has loyalty implant --- code/modules/jobs/job_types/security.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/jobs/job_types/security.dm b/code/modules/jobs/job_types/security.dm index 1ca0b3a11be..cec80a42b50 100644 --- a/code/modules/jobs/job_types/security.dm +++ b/code/modules/jobs/job_types/security.dm @@ -160,6 +160,14 @@ Detective var/obj/item/clothing/mask/cigarette/cig = H.wear_mask cig.light("") + if(visualsOnly) + return + + var/obj/item/weapon/implant/loyalty/L = new/obj/item/weapon/implant/loyalty(H) + L.imp_in = H + L.implanted = 1 + H.sec_hud_set_implants() + /* Security Officer */ From e4cc342b13319de19f58750617a09bab78be6e5d Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Fri, 11 Mar 2016 16:34:54 +0000 Subject: [PATCH 63/77] Automatic changelog generation for PR #16020 --- html/changelogs/AutoChangeLog-pr-16020.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-16020.yml diff --git a/html/changelogs/AutoChangeLog-pr-16020.yml b/html/changelogs/AutoChangeLog-pr-16020.yml new file mode 100644 index 00000000000..58584ff48dd --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-16020.yml @@ -0,0 +1,5 @@ +author: Joan +delete-after: True +changes: + - tweak: "Boiling Oil does slightly more damage and takes slightly less damage when extinguished." + - rscadd: "Flammable Goo now applies firestacks to targets, but does not ignite them." From 189c06b21baac0122d21e5d3c349ad9268b64cc5 Mon Sep 17 00:00:00 2001 From: Boredone Date: Fri, 11 Mar 2016 10:06:31 -0700 Subject: [PATCH 64/77] Removed Proc --- code/modules/mob/living/silicon/robot/robot_modules.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index 7cc98d8464f..ac9b07754d4 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -161,10 +161,6 @@ fix_modules() -/obj/item/weapon/robot_module/medical/respawn_consumable(mob/living/silicon/robot/R, coeff = 1) - ..() - - /obj/item/weapon/robot_module/engineering name = "engineering robot module" From 1ca98500d93a460a16de238db4625c8d3e239b68 Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Fri, 11 Mar 2016 18:50:34 +0000 Subject: [PATCH 65/77] Automatic changelog generation for PR #15819 --- html/changelogs/AutoChangeLog-pr-15819.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-15819.yml diff --git a/html/changelogs/AutoChangeLog-pr-15819.yml b/html/changelogs/AutoChangeLog-pr-15819.yml new file mode 100644 index 00000000000..c422b5c347f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-15819.yml @@ -0,0 +1,7 @@ +author: xxalpha +delete-after: True +changes: + - rscadd: "Detective can be a Traitor/Double Agent." + - tweak: "Removed Detective's access to security lockers and secbots." + - tweak: "Removed bowman's headset from Detective's locker." + - tweak: "Box Brig Security Office and Locker Room require a higher access level (Security Officer level)." From 84a1192114652960a13124ac59a3eca622daa25d Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Fri, 11 Mar 2016 18:52:52 +0000 Subject: [PATCH 66/77] Automatic changelog generation for PR #15825 --- html/changelogs/AutoChangeLog-pr-15825.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-15825.yml diff --git a/html/changelogs/AutoChangeLog-pr-15825.yml b/html/changelogs/AutoChangeLog-pr-15825.yml new file mode 100644 index 00000000000..0ecb6337e1a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-15825.yml @@ -0,0 +1,4 @@ +author: tkdrg +delete-after: True +changes: + - tweak: "The detective's revolver now takes three full seconds to reload." From 63efc6989e6df4a0737c2aaf4702e365e780d9ba Mon Sep 17 00:00:00 2001 From: KyrahAbattoir Date: Fri, 11 Mar 2016 21:08:16 +0100 Subject: [PATCH 67/77] [Ministation] Removed a few unconnected pipes. --- _maps/map_files/MiniStation/MiniStation.dmm | 51 ++++++--------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/_maps/map_files/MiniStation/MiniStation.dmm b/_maps/map_files/MiniStation/MiniStation.dmm index 042dfea3c25..122399a67ce 100644 --- a/_maps/map_files/MiniStation/MiniStation.dmm +++ b/_maps/map_files/MiniStation/MiniStation.dmm @@ -1648,9 +1648,6 @@ pixel_x = 3; pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -1975,9 +1972,6 @@ name = "Research Division" }) "et" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2143,9 +2137,6 @@ }, /area/hallway/primary/central) "eJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2309,9 +2300,6 @@ }, /area/security/brig) "eW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -4112,9 +4100,6 @@ name = "Research Division" }) "iy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /obj/structure/table, /obj/item/weapon/stock_parts/console_screen, /obj/item/weapon/stock_parts/console_screen, @@ -10821,16 +10806,15 @@ icon_state = "0-2"; d2 = 2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9; - pixel_y = 0 - }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, /turf/simulated/floor/plating, /area/engine/gravity_generator) "wq" = ( @@ -10838,7 +10822,6 @@ icon_state = "0-4"; d2 = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -12185,10 +12168,13 @@ /turf/simulated/wall/r_wall, /area/engine/engineering) "zd" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/turf/simulated/wall/r_wall, -/area/engine/engineering) +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) "ze" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -15232,15 +15218,6 @@ name = "Telecommunications"; req_access_txt = "61" }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/tcommsat/computer) "Gx" = ( @@ -48201,7 +48178,7 @@ fX lY fX fX -iM +iO fX iT fX @@ -48697,7 +48674,7 @@ ex he ga ga -iO +zd jp fL kv @@ -53613,7 +53590,7 @@ am aa aa aa -zd +zc zo zO zo @@ -53870,7 +53847,7 @@ am aa aa aa -zd +zc zo zP zo From 198e81d82f891e042f17b5004add8d3063370b2a Mon Sep 17 00:00:00 2001 From: Boredone Date: Fri, 11 Mar 2016 14:38:14 -0700 Subject: [PATCH 68/77] Switched out Teslium for Lexorin --- code/modules/reagents/reagent_containers/borghydro.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index 87898b22227..679999b573c 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -129,7 +129,7 @@ Borg Hypospray /obj/item/weapon/reagent_containers/borghypo/hacked icon_state = "borghypo_s" - reagent_ids = list ("facid", "mutetoxin", "cyanide", "sodium_thiopental", "heparin", "teslium") + reagent_ids = list ("facid", "mutetoxin", "cyanide", "sodium_thiopental", "heparin", "lexorin") /obj/item/weapon/reagent_containers/borghypo/syndicate name = "syndicate cyborg hypospray" From 51028dff6bd5800e99a39992e1a8d60d2af1eb07 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Fri, 11 Mar 2016 18:00:58 -0500 Subject: [PATCH 69/77] Updates Dreamstation & image --- .../map_files/DreamStation/dreamstation04.dmm | 151583 ++++++++++++++- 1 file changed, 143658 insertions(+), 7925 deletions(-) diff --git a/_maps/map_files/DreamStation/dreamstation04.dmm b/_maps/map_files/DreamStation/dreamstation04.dmm index 1032aaea6a0..b4ac3d8a59c 100644 --- a/_maps/map_files/DreamStation/dreamstation04.dmm +++ b/_maps/map_files/DreamStation/dreamstation04.dmm @@ -1,7928 +1,143661 @@ -"aaa" = (/turf/space,/area/space) -"aab" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) -"aac" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"aad" = (/obj/structure/lattice,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/space,/area/space) -"aae" = (/obj/structure/lattice,/turf/space,/area/space) -"aaf" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/simulated/floor/plating/airless,/area/storage/secure) -"aag" = (/turf/simulated/wall,/area/storage/secure) -"aah" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/secure) -"aai" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/secure) -"aaj" = (/turf/simulated/wall,/area/aisat) -"aak" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/aisat) -"aal" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aam" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aan" = (/obj/machinery/computer/monitor,/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aao" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aap" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/camera{c_tag = "AI Satellite Storage"; network = list("Sat"); start_active = 1},/mob/living/simple_animal/bot/floorbot{on = 0},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aaq" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/aisat) -"aar" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"aas" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aat" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aau" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aav" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/bot/secbot/pingsky,/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aaw" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aax" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aay" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/secure) -"aaz" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"aaA" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/aisat) -"aaB" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "AI Satellite Northwest"; dir = 8; network = list("Sat"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"aaC" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aaD" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning/corner,/area/storage/secure) -"aaE" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/darkwarning,/area/storage/secure) -"aaF" = (/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (NORTH)"; icon_state = "warndarkcorners"; dir = 1},/area/storage/secure) -"aaG" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel/black,/area/storage/secure) -"aaH" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "AI Satellite Northeast"; dir = 4; network = list("Sat"); start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"aaI" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/aisat) -"aaJ" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/darkwarning,/area/storage/secure) -"aaK" = (/obj/structure/cable/yellow,/obj/machinery/power/terminal{dir = 4},/obj/machinery/status_display{layer = 3; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/storage/secure) -"aaL" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/blue,/obj/structure/cable/white{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/light,/turf/simulated/floor/plating,/area/storage/secure) -"aaM" = (/obj/machinery/shieldgen,/obj/structure/cable/white{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/storage/secure) -"aaN" = (/obj/machinery/shieldgen,/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning,/area/storage/secure) -"aaO" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/aisat) -"aaP" = (/turf/simulated/wall,/area/turret_protected/ai) -"aaQ" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aaR" = (/obj/structure/cable/white{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aaS" = (/obj/structure/cable/white{tag = "icon-5-10"; icon_state = "5-10"},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aaT" = (/obj/machinery/porta_turret_construct,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/ai) -"aaU" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aaV" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aaW" = (/obj/machinery/flasher{id = "AI"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/white{tag = "icon-2-5"; icon_state = "2-5"},/obj/machinery/camera{c_tag = "AI Chamber North"; network = list("Sat"); start_active = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aaX" = (/obj/machinery/porta_turret_construct,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) -"aaY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aaZ" = (/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/turret_protected/ai) -"aba" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"abb" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/ai) -"abc" = (/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/ai) -"abd" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abe" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abf" = (/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"abg" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/ai) -"abh" = (/obj/structure/window/reinforced,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abi" = (/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window{name = "AI Core Door"; req_access_txt = "16"},/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abj" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) -"abk" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abl" = (/turf/simulated/wall/r_wall,/area/aisat) -"abm" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abn" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abo" = (/obj/effect/landmark/start{name = "AI"},/obj/structure/cable/white,/obj/machinery/power/apc{auto_name = 1; cell_type = 5000; dir = 2; name = "AI Chamber APC"; pixel_y = -24},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = -27; pixel_y = -9},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 29; pixel_y = 0},/obj/machinery/button/flasher{id = "AI"; pixel_x = 26; pixel_y = -24},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = -22; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abp" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abr" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/aisat) -"abs" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "AI Satellite West 1"; dir = 8; network = list("Sat"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"abt" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/aisat) -"abu" = (/turf/space,/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The six is slightly darker than the other numbers."; tag = "six"},/obj/item/weapon/paper/crumpled{info = "Or were they somewhere else, hmm..."},/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/obj/item/clothing/under/chameleon,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/turret_protected/ai) -"abv" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -2},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -28},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 23},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abw" = (/obj/machinery/door/window{dir = 8; name = "AI Core Door"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abx" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/ai) -"aby" = (/obj/machinery/flasher{id = "AI"; pixel_x = 24; pixel_y = 0},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abz" = (/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abA" = (/obj/machinery/door/window{dir = 4; name = "AI Core Door"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abB" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = 28; pixel_y = -2},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 23},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abC" = (/turf/space,/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The five is slightly darker than the other numbers."; tag = "five"},/obj/item/weapon/paper/crumpled{info = "The seventh is locked safe away..."},/obj/item/device/batterer{max_uses = 1; origin_tech = "magnets=3;combat=3"},/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/turret_protected/ai) -"abD" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "AI Satellite East 1"; dir = 4; network = list("Sat"); start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"abE" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/white{tag = "icon-0-10"; icon_state = "0-10"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abF" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_n"; name = "north of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"abG" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) -"abH" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{tag = "icon-2-5"; icon_state = "2-5"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abI" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/door/window{dir = 1; name = "AI SMES Door"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{d2 = 2; icon_state = "0-2"; tag = "icon-0-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abJ" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/requests_console{department = "AI"; departmentType = 5; name = "AI RC"; pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abK" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/ai) -"abL" = (/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"abM" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abN" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abO" = (/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/ai) -"abP" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"abQ" = (/obj/structure/cable/white{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"abR" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/ai) -"abS" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"abT" = (/obj/structure/cable/white{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/turret_protected/ai) -"abU" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/porta_turret_construct,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) -"abW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"abZ" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/machinery/flasher{id = "AI"; pixel_x = 24; pixel_y = -24},/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai) -"aca" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "AI Chamber South"; dir = 1; network = list("Sat"); start_active = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"acb" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"acc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"acd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/porta_turret_construct,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/ai) -"ace" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"acf" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"acg" = (/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "closed"; locked = 1; name = "AI Chamber"; req_access_txt = "16"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai) -"ach" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"aci" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"acj" = (/turf/space,/obj/machinery/porta_turret/syndicate{dir = 9},/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"ack" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) -"acl" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters"; name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"acm" = (/turf/indestructible/opshuttle,/area/shuttle/syndicate) -"acn" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "AI Satellite West 2"; dir = 8; network = list("Sat"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating,/area/aisat) -"aco" = (/turf/simulated/wall,/area/turret_protected/aisat_interior) -"acp" = (/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) -"acq" = (/obj/structure/table,/obj/item/weapon/secbot_assembly,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acr" = (/obj/machinery/porta_turret/ai,/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acs" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/aisat_interior) -"act" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/structure/cable/white,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/aisat_interior) -"acu" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/machinery/camera/motion{c_tag = "AI Antechamber Motion Sensor"; desc = "It watches you carefully."; name = "motion-sensitive security camera"; network = list("Sat")},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/aisat_interior) -"acv" = (/obj/structure/table,/obj/item/robot_parts/robot_suit,/obj/item/robot_parts/head,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acw" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "AI Satellite East 2"; dir = 4; network = list("Sat"); start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"acx" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acy" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acz" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acA" = (/obj/machinery/computer/shuttle/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acB" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acC" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acD" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/aisat) -"acE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"acF" = (/obj/structure/table,/obj/item/robot_parts/l_arm,/obj/item/robot_parts/chest,/obj/item/robot_parts/l_arm,/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/turret_protected/aisat_interior) -"acG" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"acH" = (/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"acI" = (/obj/structure/table,/obj/item/robot_parts/r_arm,/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/laser_pointer/upgraded,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) -"acJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"acK" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acL" = (/turf/space,/obj/machinery/porta_turret/syndicate{dir = 5},/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"acM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/lattice,/turf/space,/area/space) -"acN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"acO" = (/obj/structure/table,/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/device/assembly/flash/handheld,/obj/item/robot_parts/r_leg,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"acP" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acQ" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acR" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/turret_protected/aisat_interior) -"acS" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acT" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"acU" = (/obj/structure/table,/obj/item/robot_parts/l_leg,/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/item/device/mmi,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"acV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"acW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/lattice,/turf/space,/area/space) -"acX" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acY" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"acZ" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ada" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/lattice,/turf/space,/area/space) -"adb" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/turret_protected/aisat_interior) -"add" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) -"ade" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) -"adf" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice,/turf/space,/area/space) -"adh" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"adi" = (/obj/machinery/door/window{name = "Cockpit"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"adj" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"adk" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the AI."; dir = 1; name = "AI Satellite Monitor"; network = list("Sat"); pixel_x = 0; pixel_y = -30},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/turret_protected/aisat_interior) -"adl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"adm" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adn" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"ado" = (/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/turret_protected/aisat_interior) -"adp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/space,/area/space) -"adq" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"adr" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties{pixel_x = 1; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ads" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"adt" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adu" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adv" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/turret_protected/aisat_interior) -"adx" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ady" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"adz" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/aisat) -"adA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"adB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/space,/area/space) -"adC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/lattice,/turf/space,/area/space) -"adD" = (/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior) -"adE" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"adF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/lattice,/turf/space,/area/space) -"adG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/space,/area/space) -"adH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"adI" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/aisat) -"adJ" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"adK" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "AI Satellite Southwest"; dir = 8; network = list("Sat"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"adL" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "AI Satellite Antechamber"; req_one_access_txt = "65"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior) -"adM" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "AI Satellite Southeast"; dir = 4; network = list("Sat"); start_active = 1},/turf/simulated/floor/plating,/area/aisat) -"adN" = (/obj/machinery/suit_storage_unit/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"adO" = (/obj/structure/closet/syndicate/nuclear,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"adP" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/aisat) -"adQ" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"adR" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/aisat) -"adS" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/aisat) -"adT" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/aisat) -"adU" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/aisat) -"adV" = (/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/camera{c_tag = "AI Satellite Access"; network = list("Sat"); start_active = 1},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/aisat) -"adW" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/aisat) -"adX" = (/obj/machinery/turretid{control_area = "AI Satellite Antechamber"; enabled = 1; icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_x = 0; pixel_y = 24; req_access = list(65)},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/aisat) -"adY" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/aisat) -"adZ" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/aisat) -"aea" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/aisat) -"aeb" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/aisat) -"aec" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"aed" = (/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/aisat) -"aee" = (/obj/machinery/porta_turret/syndicate{dir = 4},/turf/indestructible/opshuttle,/area/shuttle/syndicate) -"aef" = (/obj/structure/table,/obj/item/device/aicard,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeg" = (/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeh" = (/obj/machinery/door/poddoor{auto_close = 300; id = "smindicate"; name = "outer blast door"},/obj/machinery/button/door{id = "smindicate"; name = "external door control"; pixel_x = -26; pixel_y = 0; req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate"; name = "syndicate infiltrator"; roundstart_move = "syndicate_away"; travelDir = 180; width = 18},/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_nw"; name = "northwest of station"; turf_type = /turf/space; width = 18},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aei" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aej" = (/turf/simulated/floor/plasteel/darkwarning,/area/aisat) -"aek" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel/darkwarning,/area/aisat) -"ael" = (/obj/machinery/status_display{layer = 3; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (NORTH)"; icon_state = "warndarkcorners"; dir = 1},/area/aisat) -"aem" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/aisat) -"aen" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/plasteel/black,/area/aisat) -"aeo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/aisat) -"aep" = (/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel/black,/area/aisat) -"aeq" = (/turf/simulated/floor/plasteel/black,/area/aisat) -"aer" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/aisat) -"aes" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/abandoned) -"aet" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/abandoned) -"aeu" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/abandoned) -"aev" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/indestructible/opshuttle,/area/shuttle/syndicate) -"aew" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plating,/area/aisat) -"aex" = (/obj/machinery/teleport/station,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plating,/area/aisat) -"aey" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plating,/area/aisat) -"aez" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/aisat) -"aeA" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/mob/living/simple_animal/bot/cleanbot{on = 0},/turf/simulated/floor/plasteel/black,/area/aisat) -"aeB" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/aisat) -"aeC" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel/black,/area/aisat) -"aeD" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f13"; icon_state = "swall_f13"},/area/shuttle/abandoned) -"aeE" = (/obj/machinery/sleeper,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aeF" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aeG" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aeH" = (/obj/structure/table/optable,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aeI" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f11"; icon_state = "swall_f11"},/area/shuttle/abandoned) -"aeJ" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/abandoned) -"aeK" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"aeL" = (/obj/machinery/door/window{dir = 4; name = "EVA Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeM" = (/obj/structure/table,/obj/item/weapon/c4{pixel_x = 2; pixel_y = -5},/obj/item/weapon/c4{pixel_x = -3; pixel_y = 3},/obj/item/weapon/c4{pixel_x = 2; pixel_y = -3},/obj/item/weapon/c4{pixel_x = -2; pixel_y = -1},/obj/item/weapon/c4{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeN" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/black,/area/aisat) -"aeO" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/black,/area/aisat) -"aeP" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/black,/area/aisat) -"aeQ" = (/obj/machinery/door/airlock/external{name = "AI Satellite External Access"; req_access = null; req_access_txt = "65;13"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/aisat) -"aeR" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/abandoned) -"aeS" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aeT" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f18"; icon_state = "swall_f18"},/area/shuttle/abandoned) -"aeU" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"aeV" = (/obj/machinery/door/window{name = "Ready Room"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeW" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "EVA Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"aeY" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aeZ" = (/obj/structure/transit_tube{icon_state = "D-SE"},/obj/structure/lattice,/turf/space,/area/space) -"afa" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/lattice,/turf/space,/area/space) -"afb" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/space,/area/space) -"afc" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/space,/area/space) -"afd" = (/obj/structure/lattice,/obj/structure/transit_tube,/turf/space,/area/space) -"afe" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/simulated/floor/plating,/area/aisat) -"aff" = (/obj/structure/transit_tube,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/aisat) -"afg" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/transit_tube/station/reverse{tag = "icon-closed (NORTH)"; icon_state = "closed"; dir = 1},/turf/simulated/floor/plasteel/black,/area/aisat) -"afh" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/transit_tube{tag = "icon-Block (WEST)"; icon_state = "Block"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/aisat) -"afi" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/aisat) -"afj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/aisat) -"afk" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/abandoned) -"afl" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f14"; icon_state = "swall_f14"},/area/shuttle/abandoned) -"afm" = (/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"afn" = (/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"afo" = (/obj/item/weapon/circuitboard/operating,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"afp" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/abandoned) -"afq" = (/turf/simulated/floor/plating,/area/shuttle/abandoned) -"afr" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"afs" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aft" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/obj/structure/lattice,/turf/space,/area/space) -"afu" = (/obj/structure/transit_tube{icon_state = "D-NW"},/obj/structure/lattice,/turf/space,/area/space) -"afv" = (/obj/structure/lattice/catwalk,/turf/space,/area/space) -"afw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/aisat) -"afx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue,/turf/simulated/floor/plating,/area/aisat) -"afy" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/aisat) -"afz" = (/obj/machinery/door/airlock/external{name = "AI Satellite External Access"; req_access = null; req_access_txt = "65;13"},/obj/structure/cable/green{tag = "icon-1-10"; icon_state = "1-10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/aisat) -"afA" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/abandoned) -"afB" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/abandoned) -"afC" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"afD" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"afE" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"afF" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_ne"; name = "northeast of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"afG" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"afH" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"afI" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"afJ" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"afK" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"afL" = (/obj/structure/table,/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"afM" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area/space) -"afN" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/space,/area/space) -"afO" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/turf/space,/area/space) -"afP" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/space,/area/space) -"afQ" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/meter,/turf/space,/area/space) -"afR" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-5-8"; icon_state = "5-8"},/turf/space,/area/space) -"afS" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/space,/area/space) -"afT" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"afU" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"afV" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) -"afW" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plating,/area/shuttle/abandoned) -"afX" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f16"; icon_state = "swall_f16"},/area/shuttle/abandoned) -"afY" = (/obj/structure/tank_dispenser/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"afZ" = (/obj/machinery/door/window/westright{name = "Tool Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aga" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"agb" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/green{tag = "icon-5-10"; icon_state = "5-10"},/turf/space,/area/space) -"agc" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agd" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"age" = (/obj/machinery/door/window{dir = 8; name = "Tool Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"agf" = (/obj/structure/transit_tube{icon_state = "S-NE"},/obj/structure/lattice,/turf/space,/area/space) -"agg" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f12"; icon_state = "swall_f12"},/area/shuttle/abandoned) -"agh" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agi" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"agj" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agk" = (/obj/structure/sign/bluecross_2,/turf/indestructible/opshuttle,/area/shuttle/syndicate) -"agl" = (/obj/machinery/door/window{dir = 4; name = "Infirmary"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agm" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"agn" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"ago" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/space,/area/space) -"agp" = (/obj/machinery/door/window,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"agq" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"agr" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Infirmary"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"ags" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"agt" = (/obj/machinery/door/window{dir = 1; name = "Surgery"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agu" = (/obj/structure/transit_tube{icon_state = "N-S-Pass"},/obj/structure/lattice,/turf/space,/area/space) -"agv" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-2-5"; icon_state = "2-5"},/turf/space,/area/space) -"agw" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agx" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agy" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agz" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/robot_parts/r_arm,/obj/item/robot_parts/l_arm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agA" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agB" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agC" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"agD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agE" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agF" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"agG" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/space,/area/space) -"agH" = (/obj/machinery/computer/shuttle/white_ship,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agI" = (/obj/structure/chair{dir = 8},/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agJ" = (/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agK" = (/obj/item/weapon/ectoplasm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agL" = (/obj/machinery/door/airlock/glass,/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agM" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (SOUTHWEST)"; icon_state = "tracks"; dir = 10},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agN" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (WEST)"; icon_state = "tracks"; dir = 8},/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agO" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)"; icon_state = "tracks"; dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agP" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (WEST)"; icon_state = "tracks"; dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agQ" = (/obj/machinery/door/airlock/shuttle,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (WEST)"; icon_state = "tracks"; dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agR" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)"; icon_state = "tracks"; dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agS" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"agT" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"agU" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/floor/plating,/area/shuttle/syndicate) -"agV" = (/obj/structure/table,/obj/item/weapon/gun/energy/laser/retro,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"agW" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"agX" = (/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor5"},/area/shuttle/abandoned) -"agY" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/abandoned) -"agZ" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/abandoned) -"aha" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahb" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahc" = (/obj/structure/chair,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahd" = (/obj/structure/rack,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahe" = (/obj/item/weapon/stock_parts/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahf" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f15"; icon_state = "swall_f15"},/area/shuttle/abandoned) -"ahg" = (/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahh" = (/obj/machinery/door/poddoor{id = "oldship_gun"; name = "pod bay door"},/turf/simulated/floor/plating,/area/shuttle/abandoned) -"ahi" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "oldship_gun"},/turf/simulated/floor/plating,/area/shuttle/abandoned) -"ahj" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f17"; icon_state = "swall_f17"},/area/shuttle/abandoned) -"ahk" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/arrival) -"ahl" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/arrival) -"ahm" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f10"; dir = 2},/area/shuttle/arrival) -"ahn" = (/obj/machinery/computer/pod{id = "oldship_gun"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aho" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/arrival) -"ahp" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahq" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahr" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahs" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"aht" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/entry) -"ahu" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dheight = 0; dir = 1; dwidth = 11; height = 22; id = "whiteship"; launch_status = 0; name = "NT Medical Ship"; roundstart_move = "whiteship_away"; travelDir = 180; width = 35},/obj/docking_port/stationary{dir = 1; dwidth = 11; height = 22; id = "whiteship_home"; name = "SS13 Arrival Docking"; width = 35},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"ahv" = (/turf/simulated/wall,/area/hallway/secondary/entry) -"ahw" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahx" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/arrival) -"ahy" = (/turf/simulated/wall/shuttle{icon_state = "swall8"; dir = 2},/area/shuttle/arrival) -"ahz" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahA" = (/turf/simulated/wall/shuttle{icon_state = "swall4"; dir = 2},/area/shuttle/arrival) -"ahB" = (/obj/machinery/door/airlock/external{glass = 1; name = "Port Docking Bay 4"; opacity = 0; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahC" = (/obj/machinery/door/airlock/external{glass = 1; name = "Port Docking Bay 3"; opacity = 0; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahD" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_1) -"ahE" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_1) -"ahF" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_1) -"ahG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Escape Pod 1"; network = list("SS13")},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahH" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/hallway/secondary/entry) -"ahI" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry) -"ahJ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahK" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahL" = (/turf/simulated/floor/plasteel{icon_state = "arrival"; dir = 8},/area/hallway/secondary/entry) -"ahM" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"ahN" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahO" = (/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahP" = (/obj/docking_port/stationary/random{dir = 8; id = "pod_asteroid1"; name = "asteroid"},/turf/space,/area/space) -"ahQ" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_1) -"ahR" = (/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_x = 0; pixel_y = -32; possible_destinations = "pod_asteroid1"; shuttleId = "pod1"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"ahS" = (/obj/structure/chair{dir = 8},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -26},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"ahT" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8; id = "pod1"; name = "escape pod 1"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"ahU" = (/obj/machinery/door/airlock/external{name = "Escape Pod One"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahV" = (/turf/simulated/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"ahW" = (/obj/machinery/door/airlock/external{glass = 1; name = "Port Docking Bay 1"; opacity = 0},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahX" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "arrival_home"; name = "port bay 1"; width = 15},/obj/docking_port/mobile{dir = 4; dwidth = 5; height = 7; id = "arrival"; name = "arrival shuttle"; travelDir = -90; width = 15},/turf/simulated/floor/plating,/area/shuttle/arrival) -"ahY" = (/obj/structure/chair{dir = 1},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ahZ" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/simulated/floor/plating,/area/shuttle/arrival) -"aia" = (/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aib" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/warning,/area/hallway/secondary/entry) -"aic" = (/turf/simulated/floor/plasteel/warning,/area/hallway/secondary/entry) -"aid" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"aie" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_1) -"aif" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_1) -"aig" = (/obj/structure/closet/emcloset,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aih" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/hallway/secondary/entry) -"aii" = (/obj/machinery/camera{c_tag = "Arrivals Northwest"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/hallway/secondary/entry) -"aij" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aik" = (/obj/machinery/camera{c_tag = "Arrivals Shuttle"; dir = 4; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ail" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"aim" = (/obj/machinery/camera{c_tag = "Arrivals Northeast"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"ain" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/hallway/secondary/entry) -"aio" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/space,/area/solar/auxport) -"aip" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiq" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"air" = (/obj/structure/closet/wardrobe/green,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ais" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"ait" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/hallway/secondary/entry) -"aiu" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiv" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_2) -"aiw" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_2) -"aix" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_2) -"aiy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Escape Pod 2"; network = list("SS13")},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aiz" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/hallway/secondary/entry) -"aiA" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"aiB" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"aiC" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiD" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiE" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiF" = (/obj/machinery/camera{c_tag = "Arrivals East Docking Bays"; dir = 1; network = list("SS13")},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiG" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-6"; icon_state = "0-6"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"aiH" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"aiI" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/auxport) -"aiJ" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-10"; icon_state = "0-10"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"aiK" = (/obj/docking_port/stationary/random{dir = 8; id = "pod_asteroid2"; name = "asteroid"},/turf/space,/area/space) -"aiL" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_2) -"aiM" = (/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_x = 0; pixel_y = -32; possible_destinations = "pod_asteroid2"; shuttleId = "pod2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"aiN" = (/obj/structure/chair{dir = 8},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -26},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"aiO" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8; id = "pod2"; name = "escape pod 2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"aiP" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aiQ" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"aiR" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"aiS" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aiT" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"aiU" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"aiV" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"aiW" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/auxport) -"aiX" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aiY" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/space,/area/solar/auxport) -"aiZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"aja" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"ajb" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"ajc" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_2) -"ajd" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_2) -"aje" = (/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/hallway/secondary/entry) -"ajf" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ajg" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"ajh" = (/turf/simulated/floor/plasteel/warning{dir = 4},/area/hallway/secondary/entry) -"aji" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"ajj" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) -"ajk" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) -"ajl" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) -"ajm" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) -"ajn" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/transport) -"ajo" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-5"; icon_state = "0-5"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"ajp" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"ajq" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-9"; icon_state = "0-9"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"ajr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-6"; icon_state = "1-6"},/turf/space,/area/space) -"ajs" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"ajt" = (/obj/machinery/requests_console{department = "Arrival Shuttle"; name = "Arrival Shuttle RC"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"aju" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ajv" = (/obj/structure/chair,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajw" = (/obj/machinery/computer/shuttle/ferry/request,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajx" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajy" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f5"},/area/shuttle/transport) -"ajz" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/space,/area/space) -"ajA" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-9"; icon_state = "4-9"},/turf/space,/area/space) -"ajB" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/turf/space,/area/space) -"ajC" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/space,/area/space) -"ajD" = (/turf/simulated/wall,/area/maintenance/aft) -"ajE" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/aft) -"ajF" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/meatproduct,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/xeno,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/bear,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/spider,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/killertomato,/turf/simulated/floor/plating,/area/maintenance/aft) -"ajG" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/aft) -"ajH" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/aft) -"ajI" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"ajJ" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"ajK" = (/obj/machinery/door/airlock/external{glass = 1; id_tag = null; name = "Port Docking Bay 2"; opacity = 0; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ajL" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 4; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; roundstart_move = "ferry_away"; travelDir = 180; width = 5},/obj/docking_port/stationary{dir = 4; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/space; width = 5},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajM" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajN" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajO" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-2-9"; icon_state = "2-9"},/turf/simulated/floor/plating,/area/maintenance/aft) -"ajP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"ajQ" = (/turf/simulated/floor/plating,/area/maintenance/aft) -"ajR" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/aft) -"ajS" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/aft) -"ajT" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) -"ajU" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"ajV" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/arrival) -"ajW" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) -"ajX" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"; dir = 2},/area/shuttle/arrival) -"ajY" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"ajZ" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) -"aka" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f6"},/area/shuttle/transport) -"akb" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/transport) -"akc" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/auxport) -"akd" = (/obj/structure/transit_tube{tag = "icon-N-SE"; icon_state = "N-SE"},/obj/structure/lattice,/turf/space,/area/space) -"ake" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/lattice,/turf/space,/area/space) -"akf" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/engine/engineering) -"akg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engine/engineering) -"akh" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/engine/engineering) -"aki" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akj" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/aft) -"akk" = (/obj/item/weapon/reagent_containers/food/snacks/meat/steak/spider,/turf/simulated/floor/plating,/area/maintenance/aft) -"akl" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/arrival) -"akm" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) -"akn" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) -"ako" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) -"akp" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area/shuttle/arrival) -"akq" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/hallway/secondary/entry) -"akr" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) -"aks" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) -"akt" = (/obj/structure/transit_tube{tag = "icon-E-NW"; icon_state = "E-NW"},/obj/structure/lattice,/turf/space,/area/space) -"aku" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/simulated/floor/plating,/area/engine/engineering) -"akv" = (/obj/structure/transit_tube,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/engine/engineering) -"akw" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/transit_tube/station/reverse,/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"akx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/transit_tube{tag = "icon-Block (WEST)"; icon_state = "Block"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/engine/engineering) -"aky" = (/turf/simulated/wall/r_wall,/area/engine/engineering) -"akz" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akA" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akB" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Arrivals West"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitecorner"},/area/hallway/secondary/entry) -"akC" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Arrivals East"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "bluecorner"},/area/hallway/secondary/entry) -"akD" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"akE" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"akF" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"akG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"akH" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"akI" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akJ" = (/turf/simulated/wall/rust,/area/maintenance/aft) -"akK" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/aft) -"akL" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akM" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/aft) -"akO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"akP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"akQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"akR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"akS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitecorner"},/area/hallway/secondary/entry) -"akT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "arrival"; dir = 1},/area/hallway/secondary/entry) -"akU" = (/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "bluecorner"},/area/hallway/secondary/entry) -"akV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"akW" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"akX" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fpmaint2) -"akY" = (/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"akZ" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ala" = (/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alb" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fpmaint2) -"alc" = (/turf/simulated/wall,/area/maintenance/fpmaint2) -"ald" = (/obj/item/roller,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ale" = (/obj/item/weapon/reagent_containers/blood/empty,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alf" = (/obj/structure/bedsheetbin,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/engine/engineering) -"alh" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/engine/engineering) -"ali" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"alj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Engineering AI Satellite Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/engine/engineering) -"alk" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/aft) -"all" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft) -"alm" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/aft) -"aln" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"alo" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) -"alp" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"alq" = (/obj/structure/rack,/obj/item/weapon/stock_parts/scanning_module,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"alr" = (/obj/structure/rack,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"als" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/security/vacantoffice) -"alt" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alu" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alv" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alw" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alx" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/secondary/entry) -"aly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/entry) -"alz" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/secondary/entry) -"alA" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/secondary/entry) -"alB" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/newscaster{hitstaken = 0; pixel_x = 0; pixel_y = -32; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alD" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"alE" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alF" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alG" = (/obj/structure/rack,/obj/item/stack/cable_coil/green{amount = 1; icon_state = "coil_green1"; pixel_x = -3; pixel_y = -1; tag = "icon-coil_green1"},/obj/item/weapon/stock_parts/capacitor,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alH" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alI" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alJ" = (/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alK" = (/obj/structure/computerframe,/obj/item/weapon/circuitboard/operating,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alL" = (/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"alM" = (/turf/simulated/wall/rust,/area/maintenance/fpmaint2) -"alN" = (/turf/simulated/wall,/area/engine/engineering) -"alO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "AI Satellite Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"alP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/engineering) -"alQ" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/engine/engineering) -"alR" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Engineering"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) -"alS" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/aft) -"alT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"alU" = (/turf/simulated/wall,/area/security/vacantoffice) -"alV" = (/turf/simulated/wall/rust,/area/security/vacantoffice) -"alW" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/entry) -"alX" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"alY" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"alZ" = (/turf/simulated/wall,/area/security/checkpoint) -"ama" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amb" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amc" = (/obj/structure/lattice,/turf/space,/area/space/nearstation) -"amd" = (/turf/simulated/floor/plating/airless,/area/space/nearstation) -"ame" = (/turf/space,/area/space/nearstation) -"amf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amg" = (/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amh" = (/obj/structure/table/optable,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ami" = (/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amj" = (/obj/item/weapon/circuitboard/sleeper,/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amk" = (/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aml" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"amm" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"amn" = (/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/structure/grille,/obj/structure/cable/green{tag = "icon-2-6"; icon_state = "2-6"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"amo" = (/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"amp" = (/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/obj/structure/grille,/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"amq" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"amr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engine/engineering) -"ams" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/engine/engineering) -"amt" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (EAST)"; icon_state = "bluecorner"; dir = 4},/area/engine/engineering) -"amu" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/engine/engineering) -"amv" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/engine/engineering) -"amw" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/table,/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel,/area/engine/engineering) -"amx" = (/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/obj/item/stack/cable_coil/green,/obj/item/stack/cable_coil/green,/turf/simulated/floor/plasteel,/area/engine/engineering) -"amy" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"amz" = (/turf/simulated/floor/plasteel/delivery,/area/engine/engineering) -"amA" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/wood,/area/security/vacantoffice) -"amB" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/security/vacantoffice) -"amC" = (/obj/machinery/camera{c_tag = "Vacant Office"; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/wood,/area/security/vacantoffice) -"amD" = (/obj/machinery/light/small{dir = 1},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/wood,/area/security/vacantoffice) -"amE" = (/turf/simulated/floor/wood,/area/security/vacantoffice) -"amF" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/hallway/secondary/entry) -"amG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/entry) -"amH" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"amI" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/storage/fancy/cigarettes/cigpack_midori,/obj/item/weapon/lighter/greyscale,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"amJ" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"amK" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"amL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"amM" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"amN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/hallway/secondary/entry) -"amO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = null; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred,/area/security/checkpoint) -"amP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/checkpoint) -"amQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/checkpoint) -"amR" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/checkpoint) -"amS" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amT" = (/obj/structure/closet/coffin,/obj/item/weapon/firstaid_arm_assembly,/obj/item/weapon/ore/diamond,/turf/simulated/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/space/nearstation) -"amU" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amV" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amW" = (/obj/structure/table,/obj/item/wallframe/firealarm,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amX" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amY" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"amZ" = (/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ana" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"anb" = (/obj/structure/cable/green{tag = "icon-2-6"; icon_state = "2-6"},/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"anc" = (/obj/structure/cable/green{tag = "icon-4-9"; icon_state = "4-9"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"and" = (/obj/structure/cable/green{tag = "icon-5-8"; icon_state = "5-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ane" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"anf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ang" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"anh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engineering) -"ani" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"anj" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"ank" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"anl" = (/turf/simulated/floor/plasteel,/area/engine/engineering) -"anm" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"ann" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/turf/simulated/floor/wood,/area/security/vacantoffice) -"ano" = (/obj/structure/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/security/vacantoffice) -"anp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/security/vacantoffice) -"anq" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/security/vacantoffice) -"anr" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/folder/blue,/turf/simulated/floor/wood,/area/security/vacantoffice) -"ans" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) -"ant" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"anu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/secondary/entry) -"anv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/entry) -"anw" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"anx" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"any" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"anz" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"anA" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"anB" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"anC" = (/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/hallway/secondary/entry) -"anD" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint) -"anE" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{dir = 8},/area/security/checkpoint) -"anF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/security/checkpoint) -"anG" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/security,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Security Checkpoint"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/checkpoint) -"anH" = (/obj/structure/rack,/obj/item/weapon/newspaper,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anI" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anJ" = (/obj/machinery/iv_drip,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anK" = (/obj/structure/table/glass,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anL" = (/obj/structure/table/glass,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anM" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anN" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anP" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/space,/area/solar/auxstarboard) -"anQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/space,/area/solar/auxport) -"anR" = (/turf/simulated/wall,/area/maintenance/asmaint) -"anS" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"anT" = (/obj/structure/cable/green,/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/engine/engineering) -"anU" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engineering) -"anV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"anW" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"anX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"anY" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/structure/closet/wardrobe/engineering_yellow,/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},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"anZ" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/security/vacantoffice) -"aoa" = (/turf/simulated/floor/carpet,/area/security/vacantoffice) -"aob" = (/obj/structure/chair/office/dark{dir = 4},/turf/simulated/floor/carpet,/area/security/vacantoffice) -"aoc" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/security/vacantoffice) -"aod" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Vacant Office"; req_access_txt = "32"},/turf/simulated/floor/wood,/area/security/vacantoffice) -"aoe" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/secondary/entry) -"aof" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/entry) -"aog" = (/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"aoh" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/obj/machinery/door/window/westright{dir = 4; name = "Security Checkpoint"; req_access_txt = "1"},/turf/simulated/floor/plasteel/darkred,/area/security/checkpoint) -"aoi" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{dir = 8},/area/security/checkpoint) -"aoj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/checkpoint) -"aok" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/computer/card,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/checkpoint) -"aol" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aom" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aon" = (/turf/simulated/wall,/area/maintenance/incinerator) -"aoo" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/space,/area/solar/auxstarboard) -"aop" = (/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/circuitboard/microwave,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint) -"aoq" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aor" = (/obj/structure/computerframe{anchored = 1},/obj/item/weapon/circuitboard/arcade/orion_trail,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aos" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aot" = (/obj/structure/table,/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aou" = (/obj/structure/cable/green{tag = "icon-2-5"; icon_state = "2-5"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aov" = (/obj/structure/lattice/catwalk,/turf/space,/area/space/nearstation) -"aow" = (/obj/structure/cable/green{tag = "icon-4-9"; icon_state = "4-9"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aox" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) -"aoy" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating,/area/engine/engineering) -"aoz" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aoA" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aoB" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency{pixel_y = 6},/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aoC" = (/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/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aoD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aoE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/bot,/area/engine/engineering) -"aoF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aoG" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/machinery/disposal/bin,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aoH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/aft) -"aoI" = (/obj/structure/table/wood,/obj/item/weapon/pen/blue,/turf/simulated/floor/wood,/area/security/vacantoffice) -"aoJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/security/vacantoffice) -"aoK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/security/vacantoffice) -"aoL" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/folder/red,/turf/simulated/floor/wood,/area/security/vacantoffice) -"aoM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) -"aoN" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"aoO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/secondary/entry) -"aoP" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/entry) -"aoQ" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"aoR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"aoS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Meeting Room"; dir = 10; icon_state = "camera"; network = list("SS13"); tag = ""},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"aoT" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"aoU" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/paper,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"aoV" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aoW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aoX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint) -"aoY" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/checkpoint) -"aoZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/darkred/side,/area/security/checkpoint) -"apa" = (/obj/structure/closet/wardrobe/red,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/checkpoint) -"apb" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apc" = (/obj/item/device/assembly/mousetrap/armed,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apd" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ape" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apf" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fpmaint2) -"apg" = (/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aph" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = 32},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/incinerator) -"api" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4; name = "input gas connector port"},/obj/machinery/portable_atmospherics/canister,/obj/structure/sign/nosmoking_2{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Incinerator to Output"; on = 0},/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apm" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apn" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"apo" = (/obj/structure/table,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/cell,/obj/item/wallframe/airalarm,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"app" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"apq" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/blood/old,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"apr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"aps" = (/obj/structure/table,/obj/item/weapon/stock_parts/scanning_module,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"apt" = (/obj/machinery/camera/emp_proof{c_tag = "Containment Northwest"; dir = 4; icon_state = "camera"; network = list("Singularity"); tag = "icon-camera (EAST)"},/obj/structure/cable/green{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"apu" = (/obj/machinery/power/emitter{anchored = 1; state = 2},/obj/structure/cable/green,/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space/nearstation) -"apv" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) -"apw" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/rad_collector{anchored = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) -"apx" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating,/area/engine/engineering) -"apy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"apz" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/chair/stool,/turf/simulated/floor/plasteel,/area/engine/engineering) -"apA" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"apB" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"apC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"apD" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"apE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"apF" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/turf/simulated/floor/wood,/area/security/vacantoffice) -"apG" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/security/vacantoffice) -"apH" = (/obj/structure/table/wood,/obj/machinery/light/small,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/security/vacantoffice) -"apI" = (/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/wood,/area/security/vacantoffice) -"apJ" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/hallway/secondary/entry) -"apK" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/hallway/secondary/entry) -"apL" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"apM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/checkpoint) -"apN" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/checkpoint) -"apO" = (/obj/item/weapon/vending_refill/cigarette,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apP" = (/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"apQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"apR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"apS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"apT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/atmos_control) -"apU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"apV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"apW" = (/obj/machinery/disposal/bin,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/incinerator) -"apX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apY" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"apZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aqa" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aqb" = (/obj/machinery/camera{c_tag = "Turbine Vent"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"aqc" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/turf/space,/area/space) -"aqd" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"aqe" = (/obj/machinery/camera/emp_proof{c_tag = "Containment Northeast"; dir = 8; icon_state = "camera"; network = list("Singularity"); tag = "icon-camera (WEST)"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aqf" = (/obj/structure/table,/obj/item/weapon/stock_parts/capacitor,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); name = "random sheet material spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aqg" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"aqh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aqi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aqj" = (/obj/structure/table,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aqk" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/obj/structure/cable/green{tag = "icon-2-5"; icon_state = "2-5"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aql" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating,/area/engine/engineering) -"aqm" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aqn" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aqo" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aqp" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aqq" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aqr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aqs" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aqt" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aqu" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"aqv" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) -"aqw" = (/obj/machinery/vending/snack,/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) -"aqx" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/obj/machinery/camera{c_tag = "Arrivals South"; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) -"aqy" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) -"aqz" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) -"aqA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aqB" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aqC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/hallway/secondary/entry) -"aqD" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/security/checkpoint) -"aqE" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqF" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqG" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqH" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqI" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqJ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqL" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqN" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqQ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/atmos_control) -"aqS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aqT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/door/airlock/atmos{name = "Turbine Access"; req_access_txt = "32"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"aqU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/maintenance/incinerator) -"aqV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aqW" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aqX" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aqY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aqZ" = (/obj/machinery/airalarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"ara" = (/turf/simulated/wall/r_wall,/area/maintenance/incinerator) -"arb" = (/obj/machinery/door/poddoor{id = "auxincineratorvent"; name = "Auxiliary Incinerator Vent"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"arc" = (/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"ard" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"are" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"arf" = (/obj/item/weapon/screwdriver,/turf/space,/area/space/nearstation) -"arg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"arh" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ari" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"arj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ark" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/toy/toy_xeno,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"arl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"arm" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/asmaint) -"arn" = (/obj/machinery/door/airlock/maintenance{locked = 1; name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aro" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/maintenance/asmaint) -"arp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"arq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/cardboard,/obj/item/weapon/holosign_creator,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"arr" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ars" = (/obj/item/clothing/gloves/color/yellow,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"art" = (/obj/machinery/field/generator{anchored = 1; state = 2},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aru" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating,/area/engine/engineering) -"arv" = (/obj/structure/rack,/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"arw" = (/obj/structure/closet/radiation,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/camera{c_tag = "Engineering North"; dir = 10; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) -"arx" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/simulated/floor/plasteel/yellow/corner,/area/engine/engineering) -"ary" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/engine/engineering) -"arz" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft) -"arA" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"arB" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/aft) -"arC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plating,/area/maintenance/aft) -"arD" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"arE" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/aft) -"arF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall,/area/hallway/secondary/entry) -"arG" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"arH" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"arI" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"arJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"arK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"arL" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"arM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/secondary/entry) -"arN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fpmaint2) -"arR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"arS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"arT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"arU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"arV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"arW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"arX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall,/area/maintenance/atmos_control) -"arY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/simulated/wall,/area/maintenance/atmos_control) -"arZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"asa" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"asb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"asc" = (/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/structure/cable/green,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "atmospherics mix pump"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"ase" = (/obj/machinery/atmospherics/components/binary/valve{dir = 1; name = "Incinerator to Space"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asf" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "incinerator_airlock_exterior"; idInterior = "incinerator_airlock_interior"; idSelf = "incinerator_access_control"; name = "Incinerator Access Console"; pixel_x = 26; pixel_y = 0; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/incinerator) -"ash" = (/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_exterior"; idSelf = "incinerator_access_control"; layer = 3.1; name = "Incinerator airlock control"; pixel_x = -24; pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine,/area/maintenance/incinerator) -"asi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 0; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"asj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"ask" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"asl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"asm" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"asn" = (/obj/structure/cable/green{tag = "icon-4-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/asmaint) -"aso" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"asp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"asq" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"asr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ass" = (/obj/item/weapon/tank/internals/emergency_oxygen/engi,/turf/space,/area/space/nearstation) -"ast" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "11"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/engine/engineering) -"asu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/engine/engineering) -"asv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"asw" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"asx" = (/obj/structure/rack,/obj/item/weapon/stock_parts/matter_bin,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/aft) -"asy" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"asz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/aft) -"asA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"asB" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) -"asC" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/secondary/entry) -"asD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"asE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"asF" = (/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/secondary/entry) -"asG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"asH" = (/turf/simulated/wall/r_wall,/area/atmos) -"asI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmosmaint"; name = "Atmos Blast Door"; opacity = 0},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/atmos) -"asJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmosmaint"; name = "Atmos Blast Door"; opacity = 0},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/atmos) -"asK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmosmaint"; name = "Atmos Blast Door"; opacity = 0},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/atmos) -"asL" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance"; req_access_txt = "24"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/atmos) -"asM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/maintenance/atmos_control) -"asN" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"asO" = (/obj/machinery/atmospherics/components/unary/tank/toxins{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "plasma tank pump"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asQ" = (/obj/machinery/atmospherics/pipe/manifold4w/general{level = 2},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asR" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Incinerator"; on = 0},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"asU" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "closed"; id_tag = "incinerator_airlock_interior"; locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "32"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine,/area/maintenance/incinerator) -"asV" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine,/area/maintenance/incinerator) -"asW" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "closed"; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "32"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine,/area/maintenance/incinerator) -"asX" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "Incinerator"; luminosity = 2; on = 0},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"asY" = (/obj/machinery/power/compressor{tag = "icon-compressor (WEST)"; icon_state = "compressor"; dir = 8; luminosity = 2; comp_id = "incineratorturbine"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"asZ" = (/obj/machinery/power/turbine{tag = "icon-turbine (EAST)"; icon_state = "turbine"; dir = 4; luminosity = 2},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"ata" = (/obj/machinery/door/poddoor{id = "turbinevent"; name = "Turbine Vent"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"atb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"atc" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"atd" = (/turf/simulated/wall/r_wall,/area/maintenance/auxsolarport) -"ate" = (/obj/machinery/camera{c_tag = "Fore Port Solar Control Room"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarport) -"atf" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarport) -"atg" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Fore Port Solar Control"; track = 0},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarport) -"ath" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ati" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint) -"atj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/asmaint) -"atk" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"atl" = (/turf/simulated/wall/r_wall,/area/medical/virology) -"atm" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"atn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"ato" = (/obj/machinery/door/airlock/external{glass = 1; name = "Solar Maintenance"; opacity = 0; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"atp" = (/obj/item/weapon/wirecutters,/turf/space,/area/space/nearstation) -"atq" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"atr" = (/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space/nearstation) -"ats" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"att" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/engine/engineering) -"atu" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"atv" = (/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/engine/engineering) -"atw" = (/turf/simulated/floor/plating,/area/engine/engineering) -"atx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) -"aty" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"atz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"atA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Engineering 2"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner,/area/engine/engineering) -"atB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/engine/engine_smes) -"atC" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"atD" = (/turf/simulated/wall,/area/engine/engine_smes) -"atE" = (/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"atF" = (/turf/simulated/wall/rust,/area/engine/engine_smes) -"atG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"atH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/wall,/area/hallway/secondary/entry) -"atI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/hallway/secondary/entry) -"atJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"atK" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"atL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"atM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall,/area/hallway/secondary/entry) -"atN" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/atmos) -"atO" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/atmos) -"atP" = (/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel,/area/atmos) -"atQ" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel,/area/atmos) -"atR" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"atS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter{frequency = 1441; id_tag = "waste_meter"; name = "Waste Loop"},/obj/machinery/button/door{id = "atmosmaint"; name = "Atmospherics Maintenance Shutters"; pixel_x = -24; pixel_y = 24; req_access_txt = "24"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/atmos) -"atT" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"; on = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/atmos) -"atU" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,/obj/machinery/meter{frequency = 1441; id_tag = "distro_meter"; name = "Distribution Loop"},/turf/simulated/floor/plasteel,/area/atmos) -"atV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Air to Distro"; on = 1; target_pressure = 101},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/atmos) -"atW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1; initialize_directions = 11},/obj/machinery/meter,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"atX" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1; initialize_directions = 11},/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Atmospherics North"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/atmos) -"atY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"atZ" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"aua" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4; name = "input gas connector port"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aub" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "input port pump"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"auc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/light/small,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aud" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "Mix to Space"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aue" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/mob/living/simple_animal/mouse,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"auf" = (/obj/machinery/computer/turbine_computer{id = "incineratorturbine"},/obj/machinery/button/door{id = "turbinevent"; name = "Turbine Vent Control"; pixel_x = -6; pixel_y = -24; req_access_txt = "32"},/obj/machinery/button/door{id = "auxincineratorvent"; name = "Auxiliary Vent Control"; pixel_x = 6; pixel_y = -24; req_access_txt = "32"},/obj/machinery/button/ignition{id = "Incinerator"; pixel_x = 24; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"aug" = (/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_interior"; idSelf = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/maintenance/incinerator) -"auh" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "air_in"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/maintenance/incinerator) -"aui" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"auj" = (/turf/simulated/wall/r_wall,/area/maintenance/auxsolarstarboard) -"auk" = (/obj/machinery/camera{c_tag = "Fore Starboard Solar Control Room"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarstarboard) -"aul" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarstarboard) -"aum" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Fore Starboard Solar Control"; track = 0},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarstarboard) -"aun" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auo" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aup" = (/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auq" = (/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aur" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aus" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint) -"aut" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"auu" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"auv" = (/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"auw" = (/obj/structure/grille,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"aux" = (/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"auy" = (/obj/machinery/power/terminal,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"auz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"auA" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"auB" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auC" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auD" = (/obj/item/wallframe/light_fixture,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auE" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auG" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auH" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auI" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"auJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreencorner"},/area/medical/virology) -"auK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreencorner"},/area/medical/virology) -"auL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"auM" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitegreen"},/area/medical/virology) -"auN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/sink{pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreen"},/area/medical/virology) -"auO" = (/obj/machinery/smartfridge/chemistry/virology,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitegreen"},/area/medical/virology) -"auP" = (/turf/simulated/wall,/area/medical/virology) -"auQ" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreencorner"},/area/medical/virology) -"auR" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"auS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Virology Monkey Pen"; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"auT" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreencorner"},/area/medical/virology) -"auU" = (/obj/structure/closet/abductor{name = "strange locker"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/drone_shell,/obj/item/stack/tile/sepia{amount = 6},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"auV" = (/turf/simulated/wall/rust,/area/maintenance/asmaint) -"auW" = (/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space/nearstation) -"auX" = (/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplatecorner"},/area/space/nearstation) -"auY" = (/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/space/nearstation) -"auZ" = (/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (NORTH)"; icon_state = "warnplatecorner"; dir = 1},/area/space/nearstation) -"ava" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space/nearstation) -"avb" = (/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) -"avc" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"avd" = (/obj/machinery/particle_accelerator/control_box,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/engine/engineering) -"ave" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plating,/area/engine/engineering) -"avf" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/engine/engineering) -"avg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"avh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engineering) -"avi" = (/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"avj" = (/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/structure/cable/green{tag = "icon-1-6"; icon_state = "1-6"},/obj/structure/cable/green{tag = "icon-2-6"; icon_state = "2-6"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engine_smes) -"avk" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"avl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/yellow/side,/area/engine/engine_smes) -"avm" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel/yellow/side,/area/engine/engine_smes) -"avn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/yellow/side,/area/engine/engine_smes) -"avo" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft) -"avp" = (/obj/structure/cable/green{tag = "icon-4-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{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft) -"avq" = (/obj/structure/cable/green{tag = "icon-4-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/aft) -"avr" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-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/aft) -"avs" = (/obj/structure/cable/green{tag = "icon-4-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 = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"avt" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHW"; location = "Lockers"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"avu" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"avv" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fpmaint2) -"avx" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"avy" = (/turf/simulated/floor/plasteel,/area/atmos) -"avz" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/plasteel,/area/atmos) -"avA" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/simulated/floor/plasteel,/area/atmos) -"avB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Waste to Filter"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"avC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Incinerator"; on = 0},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"avD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Distro"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"avE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 6; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/plasteel,/area/atmos) -"avF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (EAST)"},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to Mix"; on = 0},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/atmos) -"avG" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (EAST)"},/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 1; layer = 2.5; on = 1; tag = ""},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/atmos) -"avH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (EAST)"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"avI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (EAST)"},/obj/structure/lattice,/turf/space,/area/space/nearstation) -"avJ" = (/obj/machinery/meter,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (EAST)"},/turf/simulated/wall/r_wall,/area/atmos) -"avK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "mix_in"; 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/atmos) -"avL" = (/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"avM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"avN" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"avO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"avP" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating/airless,/area/maintenance/incinerator) -"avQ" = (/obj/machinery/power/terminal,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"avR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"avS" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"avT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"avU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"avV" = (/obj/structure/falsewall,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"avW" = (/obj/machinery/power/smes,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarport) -"avX" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/auxsolarport) -"avY" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarport) -"avZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"awa" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"awb" = (/obj/structure/rack,/obj/item/weapon/light/tube,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/circuitboard/protolathe,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"awc" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"awd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"awe" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"awf" = (/turf/simulated/wall/rust,/area/medical/virology) -"awg" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreencorner"},/area/medical/virology) -"awh" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{tag = "icon-whitegreencorner"; icon_state = "whitegreencorner"; dir = 2},/area/medical/virology) -"awi" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/medical/virology) -"awj" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex,/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"awk" = (/turf/simulated/floor/plasteel/white,/area/medical/virology) -"awl" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{density = 0; pass_flags = 0; pixel_x = 32},/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"awm" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel/whitegreen/corner{tag = "icon-whitegreencorner (WEST)"; icon_state = "whitegreencorner"; dir = 8},/area/medical/virology) -"awn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"awo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"awp" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{tag = "icon-whitegreencorner"; icon_state = "whitegreencorner"; dir = 2},/area/medical/virology) -"awq" = (/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The eight is slightly darker than the other numbers."; tag = "eight"},/obj/item/weapon/paper/crumpled{info = "Your reward is dice."},/turf/simulated/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/engine/engineering) -"awr" = (/obj/structure/particle_accelerator/particle_emitter/center{tag = "icon-emitter_center (WEST)"; icon_state = "emitter_center"; dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"aws" = (/obj/structure/particle_accelerator/power_box{tag = "icon-power_box (WEST)"; icon_state = "power_box"; dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"awt" = (/obj/structure/particle_accelerator/fuel_chamber{tag = "icon-fuel_chamber (WEST)"; icon_state = "fuel_chamber"; dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"awu" = (/obj/structure/particle_accelerator/end_cap{dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"awv" = (/obj/item/weapon/weldingtool,/obj/structure/lattice,/turf/space,/area/space/nearstation) -"aww" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engineering) -"awx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"awy" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"awz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engineering) -"awA" = (/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/green{tag = "icon-5-8"; icon_state = "5-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "SMES Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow,/area/engine/engineering) -"awB" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"awC" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engine_smes) -"awD" = (/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/green{tag = "icon-4-9"; icon_state = "4-9"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "SMES Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow,/area/engine/engine_smes) -"awE" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"awF" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"awG" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"awH" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"awI" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/power/port_gen/pacman,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel{desc = "Marked to indicate placement of a PACMAN generator."; dir = 1; icon_state = "bot"},/area/engine/engine_smes) -"awJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"awK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"awL" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"awM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"awN" = (/obj/machinery/pipedispenser,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/atmos) -"awO" = (/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/plasteel/caution/corner,/area/atmos) -"awP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel/caution/corner{tag = "icon-cautioncorner (WEST)"; icon_state = "cautioncorner"; dir = 8},/area/atmos) -"awQ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Filter"; on = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 1; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (NORTH)"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"awR" = (/obj/machinery/atmospherics/pipe/manifold4w/supplymain/visible{name = "mix pipe"},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"awS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (NORTHWEST)"},/turf/simulated/floor/plasteel,/area/atmos) -"awT" = (/obj/machinery/atmospherics/pipe/manifold4w/green/visible,/obj/machinery/meter,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/atmos) -"awU" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; initialize_directions = 12},/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "mix_in"; name = "Gas Mix Tank Control"; output_tag = "mix_in"; sensors = list("mix_sensor" = "Tank")},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/atmos) -"awV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"awW" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "mix_sensor"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"awX" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"awY" = (/obj/structure/cable/green{tag = "icon-1-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/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/atmos_control) -"awZ" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"axa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"axb" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/space,/area/space) -"axc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/space,/area/space) -"axd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/space,/area/space) -"axe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/space,/area/space) -"axf" = (/obj/machinery/power/smes,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarstarboard) -"axg" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/auxsolarstarboard) -"axh" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/auxsolarstarboard) -"axi" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/obj/item/weapon/mop,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"axj" = (/obj/item/weapon/wrench,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTHEAST)"; icon_state = "tracks"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axl" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axm" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axn" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axo" = (/obj/structure/chair/stool,/obj/machinery/newscaster{pixel_y = 32; tag = "n"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axp" = (/obj/structure/rack,/obj/item/weapon/wirecutters,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axq" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axr" = (/obj/item/trash/can,/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"axs" = (/obj/machinery/door/airlock/engineering{icon_state = "closed"; locked = 0; name = "Fore Starboard Solar Access"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"axt" = (/obj/structure/rack,/obj/item/weapon/light/bulb,/obj/item/wallframe/light_fixture/small,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axu" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"axy" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/simulated/floor/plating,/area/medical/virology) -"axz" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/simulated/floor/plating,/area/medical/virology) -"axA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/light/small{dir = 1},/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/medical/virology) -"axB" = (/obj/machinery/atmospherics/components/binary/valve/open{tag = "icon-mvalve_map (EAST)"; icon_state = "mvalve_map"; dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/medical/virology) -"axC" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/medical/virology) -"axD" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/medical/virology) -"axE" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"axF" = (/obj/machinery/computer/pandemic,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"axG" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Virologist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"axH" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 32; pixel_y = 0},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Virology"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"axI" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/virology) -"axJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"axK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"axL" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/space,/area/space) -"axM" = (/obj/item/weapon/wrench,/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (WEST)"; icon_state = "warnplatecorner"; dir = 8},/area/space/nearstation) -"axN" = (/turf/simulated/floor/plating/airless{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/space/nearstation) -"axO" = (/obj/structure/particle_accelerator/particle_emitter/right{tag = "icon-emitter_right (WEST)"; icon_state = "emitter_right"; dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"axP" = (/obj/machinery/door/airlock/external{glass = 1; name = "Solar Maintenance"; opacity = 0; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"axQ" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"axR" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engineering) -"axS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) -"axT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Engineering SMES Access"; dir = 10; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"axU" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/warning{dir = 4},/area/engine/engine_smes) -"axV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"axW" = (/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"axX" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner,/area/engine/engine_smes) -"axY" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/side,/area/engine/engine_smes) -"axZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/engine_smes) -"aya" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/engine/engine_smes) -"ayb" = (/obj/item/trash/raisins,/turf/simulated/floor/plating,/area/maintenance/aft) -"ayc" = (/obj/machinery/camera{c_tag = "Arrivals Hallway"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"ayd" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aye" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"ayf" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"ayg" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"ayh" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"ayi" = (/turf/simulated/wall,/area/atmos) -"ayj" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel,/area/atmos) -"ayk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/atmos) -"ayl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/atmos) -"aym" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/atmos) -"ayn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop"; req_access_txt = "24"},/turf/simulated/floor/plasteel/yellow,/area/atmos) -"ayo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/atmos) -"ayp" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 8; icon_state = "manifold"; name = "mix pipe"; tag = "icon-manifold (WEST)"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/atmos) -"ayq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (NORTHWEST)"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/atmos) -"ayr" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact-g (NORTHEAST)"; dir = 5; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/atmos) -"ays" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"; on = 0},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/atmos) -"ayt" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Unfiltered & Air to Mix"; on = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/atmos) -"ayu" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"ayv" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/structure/lattice,/turf/space,/area/space/nearstation) -"ayw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"ayx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "mix_in"; pixel_y = 1},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"ayy" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Mix"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) -"ayz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"ayA" = (/turf/simulated/wall/rust,/area/maintenance/incinerator) -"ayB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"ayC" = (/obj/machinery/door/airlock/engineering{icon_state = "closed"; locked = 0; name = "Fore Port Solar Access"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"ayD" = (/obj/effect/landmark{name = "Marauder Entry"},/turf/space,/area/space) -"ayE" = (/obj/item/weapon/caution,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"ayF" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTH)"; icon_state = "tracks"; dir = 1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"ayG" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayH" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/bodybag,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayI" = (/obj/structure/table,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayJ" = (/obj/structure/rack,/obj/item/weapon/lipstick/jade,/obj/item/weapon/wirerod,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayK" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayM" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/asmaint) -"ayN" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/asmaint) -"ayO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/asmaint) -"ayP" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Port Solar Maintenance"; network = list("SS13")},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"ayQ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayR" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayS" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayT" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayU" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ayV" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/rust,/area/medical/virology) -"ayW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Distro to Virology"; on = 1},/turf/simulated/floor/plating,/area/medical/virology) -"ayX" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/machinery/meter,/turf/simulated/floor/plating,/area/medical/virology) -"ayY" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/item/weapon/wrench,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/medical/virology) -"ayZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/medical/virology) -"aza" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreencorner"},/area/medical/virology) -"azb" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreencorner"},/area/medical/virology) -"azc" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"azd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aze" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"azf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreencorner"},/area/medical/virology) -"azg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"azh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"azi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"azj" = (/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/obj/structure/closet/secure_closet/medical1,/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/medical/virology) -"azk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan{tag = "icon-0-8"; icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"azl" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/space,/area/space/nearstation) -"azm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"azn" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"azo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"azp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"azq" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/space,/area/space) -"azr" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/space,/area/space) -"azs" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"azt" = (/obj/machinery/power/grounding_rod{anchored = 1},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"azu" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"azv" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/engine/engineering) -"azw" = (/obj/machinery/light/small,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/engine/engineering) -"azx" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/space,/area/space/nearstation) -"azy" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/engine/engineering) -"azz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"azA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"azB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/engine/engineering) -"azC" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (NORTH)"; icon_state = "darkyellowcorners"; dir = 1},/area/engine/engine_smes) -"azD" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/power/terminal,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/engine_smes) -"azE" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/machinery/door/window{dir = 1; name = "SMES Chamber"; req_access_txt = "32"},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"azF" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/power/terminal,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/engine_smes) -"azG" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (EAST)"; icon_state = "darkyellowcorners"; dir = 4},/area/engine/engine_smes) -"azH" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/aft) -"azI" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/aft) -"azJ" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"azK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"azL" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"azM" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/atmos) -"azN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"azO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) -"azP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plasteel/caution/corner{tag = "icon-cautioncorner (EAST)"; icon_state = "cautioncorner"; dir = 4},/area/atmos) -"azQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"azR" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1; initialize_directions = 11},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"azS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 1; icon_state = "intact"; name = "mix pipe"; tag = "icon-intact (NORTH)"},/turf/simulated/floor/plating,/area/atmos) -"azT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plating,/area/atmos) -"azU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"azV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"azW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4; initialize_directions = 11},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"azX" = (/turf/simulated/wall,/area/maintenance/atmos_control) -"azY" = (/turf/simulated/wall,/area/maintenance/fore) -"azZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aAa" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fore) -"aAb" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/fore) -"aAc" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fore) -"aAd" = (/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/fore) -"aAe" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTH)"; icon_state = "tracks"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAf" = (/obj/structure/statue/sandstone/assistant{desc = "A cheap statue of sandstone for a greyshirt. Seems oddly... realistic."; name = "Statue of an Assistant"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAg" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAh" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAi" = (/obj/structure/rack,/obj/item/weapon/dice/d2,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/exam_room) -"aAm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aAo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/wall,/area/medical/medbay) -"aAp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"aAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/medical/medbay) -"aAr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) -"aAs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreencorner"},/area/medical/virology) -"aAt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitegreencorner"; icon_state = "whitegreencorner"; dir = 2},/area/medical/virology) -"aAu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aAv" = (/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"aAw" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aAx" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"aAy" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreencorner"},/area/medical/virology) -"aAz" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aAA" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aAB" = (/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/obj/structure/closet/l3closet/virology,/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/medical/virology) -"aAC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/medical/virology) -"aAD" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "11"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/warning,/area/engine/engineering) -"aAE" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/engineering) -"aAF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/aft) -"aAG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"aAH" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Engineering SMES Room"; dir = 4; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aAI" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/engine/engine_smes) -"aAJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aAK" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/engine_smes) -"aAL" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aAM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"aAN" = (/obj/structure/girder,/obj/item/stack/sheet/metal{amount = 2},/turf/simulated/floor/plating,/area/maintenance/aft) -"aAO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aAP" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aAQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/hallway/secondary/entry) -"aAR" = (/obj/structure/plasticflaps/mining,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Atmospherics"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/delivery,/area/atmos) -"aAS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "arrival"},/area/atmos) -"aAT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/atmos) -"aAU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/atmos) -"aAV" = (/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = 24; pixel_y = 24; req_access_txt = "24"},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics Desk"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/atmos) -"aAW" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/atmos) -"aAX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel,/area/atmos) -"aAY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to Ports"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aAZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Ports"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aBa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Pure to Ports"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aBb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/atmos) -"aBc" = (/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"aBd" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "escape"},/area/atmos) -"aBe" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"aBf" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/lattice,/turf/space,/area/space/nearstation) -"aBg" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"aBh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/n2o,/area/atmos) -"aBi" = (/turf/simulated/floor/engine/n2o,/area/atmos) -"aBj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aBk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/atmos_control) -"aBl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBn" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBo" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Starboard Solar Maintenance"; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBq" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fore) -"aBs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBt" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fore) -"aBu" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/fore) -"aBv" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/fore) -"aBw" = (/obj/structure/table,/obj/item/wallframe/airalarm,/turf/simulated/floor/plating,/area/maintenance/fore) -"aBx" = (/obj/structure/table,/obj/item/wallframe/airalarm,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBy" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBz" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBB" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBC" = (/obj/structure/rack,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBD" = (/turf/simulated/wall,/area/medical/exam_room) -"aBE" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/exam_room) -"aBF" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/exam_room) -"aBG" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/exam_room) -"aBH" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/exam_room) -"aBI" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"aBJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aBK" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay) -"aBL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aBM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitegreencorner"; icon_state = "whitegreencorner"; dir = 2},/area/medical/medbay) -"aBN" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/medical/virology) -"aBO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/machinery/shower{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) -"aBP" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Virology Access"; network = list("SS13")},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) -"aBQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel/whitegreen/side,/area/medical/virology) -"aBR" = (/obj/structure/sign/biohazard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology) -"aBS" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"aBT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aBU" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"aBV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Break Room"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aBW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/virology) -"aBX" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); name = "random sheet material spawner"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aBY" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aBZ" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aCa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aCb" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aCc" = (/obj/structure/closet/radiation,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Engineering"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aCd" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/airlock_painter,/obj/item/device/pipe_painter,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/engine/engineering) -"aCe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/engine/engineering) -"aCf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/aft) -"aCg" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aCh" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/engine_smes) -"aCi" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aCj" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/engine_smes) -"aCk" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aCl" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aCm" = (/turf/simulated/floor/plasteel/darkblue,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/hallway/secondary/entry) -"aCn" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aCo" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aCp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"aCq" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 4; icon_state = "left"; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel,/area/atmos) -"aCr" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"aCs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aCt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"aCu" = (/obj/machinery/computer/atmos_control,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (NORTHEAST)"; icon_state = "caution"; dir = 5},/area/atmos) -"aCv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"aCw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"aCx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/meter,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"aCy" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"aCz" = (/obj/machinery/hologram/holopad,/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmospherics"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel,/area/atmos) -"aCA" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel,/area/atmos) -"aCB" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"aCC" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"aCD" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aCE" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"aCF" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/atmos) -"aCG" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/turf/simulated/floor/engine/n2o,/area/atmos) -"aCH" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide{valve_open = 1},/turf/simulated/floor/engine/n2o,/area/atmos) -"aCI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine/n2o,/area/atmos) -"aCJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aCK" = (/turf/simulated/wall/rust,/area/maintenance/atmos_control) -"aCL" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aCM" = (/obj/item/stack/sheet/metal{amount = 2},/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aCN" = (/obj/item/stack/sheet/metal{amount = 2},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aCO" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aCP" = (/turf/simulated/wall/rust,/area/maintenance/fore) -"aCQ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aCR" = (/obj/structure/cable/green{tag = "icon-9-10"; icon_state = "9-10"},/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/fore) -"aCS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aCT" = (/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/plating,/area/maintenance/fore) -"aCU" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fore) -"aCV" = (/turf/simulated/floor/plating,/area/maintenance/fore) -"aCW" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aCX" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aCY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aCZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aDa" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"aDb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aDc" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aDd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aDe" = (/obj/machinery/vending/wallmed,/turf/simulated/wall,/area/medical/exam_room) -"aDf" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aDg" = (/turf/simulated/wall,/area/medical/cmo) -"aDh" = (/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"aDi" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/medbay) -"aDj" = (/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -1; pixel_y = -24; req_access_txt = "39"},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "closed"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen,/area/medical/virology) -"aDk" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/whitegreen,/area/medical/virology) -"aDl" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/whitegreen,/area/medical/virology) -"aDm" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/whitegreen,/area/medical/virology) -"aDn" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "closed"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen,/area/medical/virology) -"aDo" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/medical/virology) -"aDp" = (/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aDq" = (/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"aDr" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aDs" = (/obj/machinery/iv_drip,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"aDt" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel/whitegreen/corner{tag = "icon-whitegreencorner (NORTH)"; icon_state = "whitegreencorner"; dir = 1},/area/medical/virology) -"aDu" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aDv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aDw" = (/obj/structure/closet/wardrobe/virology_white,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel/whitegreen/corner{tag = "icon-whitegreencorner (EAST)"; icon_state = "whitegreencorner"; dir = 4},/area/medical/virology) -"aDx" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aDy" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aDz" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/space/nearstation) -"aDA" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aDB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aDC" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aDD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aDE" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"aDF" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aDG" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/engine_smes) -"aDH" = (/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aDI" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/engine/engine_smes) -"aDJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aDK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aDL" = (/obj/structure/rack,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aDM" = (/turf/simulated/floor/plasteel/darkblue,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/hallway/secondary/entry) -"aDN" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aDO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aDP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"aDQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/atmos) -"aDR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"aDS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aDT" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) -"aDU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/computer/atmos_control,/turf/simulated/floor/plasteel/caution{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/atmos) -"aDV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Air to External Air Ports"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"aDW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"aDX" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plating,/area/atmos) -"aDY" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/atmos) -"aDZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Port Mix to Filling Ports"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aEa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Port Mix to Temperature Ports"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aEb" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = "n2o"; on = 1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "escape"},/area/atmos) -"aEc" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/simulated/floor/engine/n2o,/area/atmos) -"aEd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aEe" = (/turf/simulated/wall/mineral/wood,/area/maintenance/atmos_control) -"aEf" = (/obj/structure/girder/displaced,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aEg" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable/green{tag = "icon-2-5"; icon_state = "2-5"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEh" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fore) -"aEi" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fore) -"aEj" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fore) -"aEk" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/wardrobe/white,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aEm" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/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/asmaint) -"aEn" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aEo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aEp" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv1"; name = "Privacy Shutters"; pixel_x = -24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/exam_room) -"aEq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/exam_room) -"aEr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/exam_room) -"aEs" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv2"; name = "Privacy Shutters"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/exam_room) -"aEt" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/bedsheet/cmo,/obj/machinery/airalarm{pixel_y = 23},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aEu" = (/obj/machinery/computer/med_data,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aEv" = (/obj/machinery/computer/crew,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Chief Medical Officer's Office"; network = list("SS13"); start_active = 1},/obj/machinery/button/door{id = "cmoprivacy"; name = "Privacy Shutters Control"; pixel_x = 5; pixel_y = 24},/obj/machinery/keycard_auth{pixel_x = -6; pixel_y = 24},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aEw" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aEx" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/suit_storage_unit/cmo,/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aEy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/medical/cmo) -"aEz" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"aEA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreencorner"},/area/medical/medbay) -"aEB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) -"aEC" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) -"aED" = (/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 31; pixel_y = 8; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/medical/virology) -"aEE" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = -22; pixel_y = 0; req_access_txt = "39"},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel/whitegreen/corner{tag = "icon-whitegreencorner (NORTH)"; icon_state = "whitegreencorner"; dir = 1},/area/medical/virology) -"aEF" = (/obj/structure/cable/cyan,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aEG" = (/obj/structure/table,/obj/item/device/radio/headset/headset_med,/obj/item/stack/sheet/mineral/plasma{amount = 3; layer = 2.9},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitegreen"},/area/medical/virology) -"aEH" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitegreen"},/area/medical/virology) -"aEI" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen/red,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitegreen"},/area/medical/virology) -"aEJ" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/plasteel/whitegreen/corner{tag = "icon-whitegreencorner (WEST)"; icon_state = "whitegreencorner"; dir = 8},/area/medical/virology) -"aEK" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aEL" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "Virology Break Room"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"aEM" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/whitegreen/corner,/area/medical/virology) -"aEN" = (/obj/structure/closet,/obj/item/bodybag,/obj/effect/spawner/lootdrop/maintenance,/obj/item/stack/sheet/cardboard{amount = 14},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aEO" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aEP" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/space,/area/space/nearstation) -"aEQ" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aER" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner,/area/engine/engineering) -"aES" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/engineering) -"aET" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aEU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aEV" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"aEW" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/engine/engine_smes) -"aEX" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aEY" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plasteel/black,/area/engine/engine_smes) -"aEZ" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/darkyellow/corner,/area/engine/engine_smes) -"aFa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aFb" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 2},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"aFc" = (/turf/simulated/floor/plasteel/darkred,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/hallway/secondary/entry) -"aFd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aFf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"aFg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/atmos) -"aFh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) -"aFi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plasteel,/area/atmos) -"aFj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aFk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel/caution{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/atmos) -"aFl" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "External Waste Ports to Filter"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"aFm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) -"aFn" = (/obj/structure/closet/secure_closet/atmospherics,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/atmos) -"aFo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/atmos) -"aFp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/atmos) -"aFq" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/simulated/floor/plasteel/warning{dir = 8},/area/atmos) -"aFr" = (/obj/item/trash/popcorn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aFs" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken"; tag = "icon-wood-broken"},/area/maintenance/atmos_control) -"aFt" = (/obj/structure/chair/comfy/black,/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aFu" = (/obj/structure/chair/comfy/beige,/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aFv" = (/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken5"; tag = "icon-wood-broken5"},/area/maintenance/atmos_control) -"aFw" = (/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken6"; tag = "icon-wood-broken6"},/area/maintenance/atmos_control) -"aFx" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/atmos_control) -"aFy" = (/obj/structure/falsewall,/obj/structure/cable/green{tag = "icon-1-6"; icon_state = "1-6"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aFz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fore) -"aFA" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/maintenance/fore) -"aFB" = (/turf/simulated/wall/r_wall,/area/maintenance/fore) -"aFC" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/maintenance/fore) -"aFD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aFE" = (/turf/simulated/wall/r_wall,/area/medical/exam_room) -"aFF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/exam_room) -"aFG" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/medical/exam_room) -"aFH" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "medpriv1"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/medical/exam_room) -"aFI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room A"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aFJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Patient Room B"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aFK" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "medpriv2"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/medical/exam_room) -"aFL" = (/obj/structure/cable/cyan{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aFM" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aFN" = (/obj/structure/chair/office/light,/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aFO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aFP" = (/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aFQ" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Medbay Northeast"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aFR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aFS" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aFT" = (/obj/structure/girder/reinforced,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aFU" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/space,/area/space/nearstation) -"aFV" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) -"aFW" = (/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/engine/engineering) -"aFX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aFY" = (/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/engine/engineering) -"aFZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint/engineering) -"aGa" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/engineering) -"aGb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/security/checkpoint/engineering) -"aGc" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/aft) -"aGd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"aGe" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"aGf" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/aft) -"aGg" = (/turf/simulated/floor/plasteel/darkred,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/hallway/secondary/entry) -"aGh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aGi" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aGj" = (/obj/structure/sign/atmosplaque{pixel_x = 0; pixel_y = -32},/obj/machinery/disposal/bin,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aGk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aGl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/atmos) -"aGm" = (/obj/machinery/computer/station_alert,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (SOUTHEAST)"; icon_state = "caution"; dir = 6},/area/atmos) -"aGn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/atmos) -"aGo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aGp" = (/obj/machinery/suit_storage_unit/atmos,/turf/simulated/floor/plasteel/warning{dir = 8},/area/atmos) -"aGq" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"aGr" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/structure/chair/stool,/turf/simulated/floor/plasteel,/area/atmos) -"aGs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"aGt" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"aGu" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/atmos) -"aGv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aGw" = (/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aGx" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aGy" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aGz" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aGA" = (/obj/structure/table/wood/poker,/turf/simulated/floor/carpet,/area/maintenance/atmos_control) -"aGB" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_x = 2},/turf/simulated/floor/carpet,/area/maintenance/atmos_control) -"aGC" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aGD" = (/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aGE" = (/obj/item/weapon/paper/crumpled{info = "The second is surrounded by the bustle of crates..."},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aGF" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aGG" = (/obj/structure/barricade/wooden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGH" = (/obj/structure/cable/green{tag = "icon-6-9"; icon_state = "6-9"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aGI" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aGJ" = (/obj/machinery/vending/tool,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGK" = (/obj/structure/table,/obj/item/weapon/relic,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGL" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGM" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 2},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aGN" = (/obj/item/weapon/restraints/handcuffs/cable/zipties/used,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGO" = (/obj/structure/closet,/obj/item/clothing/suit/toggle/owlwings/griffinwings,/obj/item/clothing/shoes/griffin,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/head/griffin,/obj/item/clothing/gloves/color/black,/obj/item/clothing/under/griffin,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGP" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGQ" = (/obj/structure/closet/wardrobe/white/medical,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGR" = (/obj/structure/closet/secure_closet/medical3,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGS" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Medbay Storage"; network = list("SS13")},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGT" = (/obj/structure/sink{pixel_y = 24},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGU" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/rxglasses,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGV" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aGW" = (/obj/machinery/vending/medical{pixel_x = -2},/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30; pixel_y = 0; pixel_z = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aGX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/machinery/camera{c_tag = "Medbay Northwest"; network = list("SS13")},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aGZ" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aHa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aHb" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aHc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aHd" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/medical/cmo) -"aHe" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aHf" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aHg" = (/obj/structure/table/glass,/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aHh" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aHi" = (/obj/machinery/door/window/northright{name = "Chief Medical Officer's Desk Door"; req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cmo,/area/medical/cmo) -"aHj" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"aHk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aHl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aHm" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/medbay) -"aHn" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/genetics) -"aHo" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel,/area/medical/genetics) -"aHp" = (/obj/machinery/light/small{dir = 1},/mob/living/carbon/monkey,/turf/simulated/floor/plasteel,/area/medical/genetics) -"aHq" = (/turf/simulated/floor/plasteel/purple/corner,/area/medical/genetics) -"aHr" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/medical/genetics) -"aHs" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/medical/genetics) -"aHt" = (/obj/structure/table/glass,/obj/machinery/requests_console{department = "Genetics"; departmentType = 0; name = "Genetics RC"; pixel_x = 0; pixel_y = 30},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/medical/genetics) -"aHu" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/area/medical/genetics) -"aHv" = (/turf/simulated/wall/r_wall,/area/medical/genetics) -"aHw" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aHx" = (/obj/structure/cable/green{tag = "icon-4-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/maintenance/asmaint) -"aHy" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aHz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aHA" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/engine/engineering) -"aHB" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engineering) -"aHC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aHD" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aHE" = (/turf/simulated/floor/plasteel/red/corner,/area/engine/engineering) -"aHF" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/checkpoint/engineering) -"aHG" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/checkpoint/engineering) -"aHH" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/table,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Engineering Post RC"; pixel_x = 30; pixel_y = 0},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Engineering Security Post"; network = list("SS13")},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/checkpoint/engineering) -"aHI" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/aft) -"aHJ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aHK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/aft) -"aHL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aHM" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aHN" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aHO" = (/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/secondary/entry) -"aHP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aHQ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aHR" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-cautioncorner"; icon_state = "cautioncorner"; dir = 2},/area/hallway/secondary/entry) -"aHS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plating,/area/atmos) -"aHT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/atmos) -"aHU" = (/obj/structure/fireaxecabinet{pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"aHV" = (/obj/structure/closet/secure_closet/atmospherics,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/atmos) -"aHW" = (/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/atmos) -"aHX" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "tox_in"; name = "Plasma Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/atmos) -"aHY" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aHZ" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aIa" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aIb" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aIc" = (/obj/structure/chair/comfy/beige{dir = 4},/obj/machinery/light/built{tag = "icon-tube1 (WEST)"; icon_state = "tube1"; dir = 8},/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken5"; tag = "icon-wood-broken5"},/area/maintenance/atmos_control) -"aId" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/silver,/turf/simulated/floor/carpet,/area/maintenance/atmos_control) -"aIe" = (/obj/structure/chair/comfy/black{dir = 8},/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aIf" = (/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken7"; tag = "icon-wood-broken7"},/area/maintenance/atmos_control) -"aIg" = (/obj/structure/mineral_door/wood,/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken"; tag = "icon-wood-broken"},/area/maintenance/atmos_control) -"aIh" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aIi" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aIj" = (/turf/simulated/floor/plating/airless,/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The one is slightly darker than the other numbers."; tag = "one"},/turf/simulated/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/space/nearstation) -"aIk" = (/obj/item/weapon/toolbox_tiles_sensor,/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aIl" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fore) -"aIm" = (/obj/machinery/vending/sustenance{desc = "A Nutrivend-brand vending machine which vends nutritious food. If it can be called that, at least."; name = "\improper Nutri-vend"; product_ads = "Sufficiently healthy.;Efficiently produced tofu!;Mmm! So good!;Have a meal.;You need food to live!;Try our new ice cups!"; products = list(/obj/item/weapon/reagent_containers/food/snacks/tofu = 50, /obj/item/weapon/reagent_containers/food/drinks/ice = 50)},/turf/simulated/floor/plating,/area/maintenance/fore) -"aIn" = (/obj/structure/cable/green{tag = "icon-2-9"; icon_state = "2-9"},/obj/structure/chair/office/dark,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aIo" = (/obj/structure/rack,/obj/item/robot_parts/l_arm,/obj/item/stack/sheet/metal{amount = 2},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aIp" = (/obj/structure/closet/cardboard,/turf/simulated/floor/plating,/area/maintenance/fore) -"aIq" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aIr" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aIs" = (/obj/structure/table,/obj/item/weapon/grenade/smokebomb,/obj/item/weapon/grenade/smokebomb,/obj/item/weapon/grenade/smokebomb,/obj/machinery/light/small{dir = 4},/obj/item/weapon/pneumatic_cannon/ghetto{desc = "A gas-powered, object-firing cannon. Seems kind of dirty."; name = "pneumatic cannon"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aIt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint) -"aIu" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30; pixel_y = 0; pixel_z = 0},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteblue"},/area/medical/exam_room) -"aIA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue,/area/medical/exam_room) -"aIB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/exam_room) -"aIC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 1},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aID" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIE" = (/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIF" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIG" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aIH" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aII" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{glass = 0; name = "Chief Medical Officer"; opacity = 1; req_access_txt = "40"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aIJ" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aIK" = (/obj/structure/chair{dir = 1},/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aIL" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aIM" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aIN" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_command{glass = 0; name = "Chief Medical Officer"; opacity = 1; req_access_txt = "40"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aIO" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{sortType = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"aIP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aIQ" = (/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aIR" = (/turf/simulated/floor/plasteel,/area/medical/genetics) -"aIS" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/medical/genetics) -"aIT" = (/obj/machinery/door/window/westleft{name = "Monkey Pen"; req_access_txt = "9"},/turf/simulated/floor/plasteel/purple,/area/medical/genetics) -"aIU" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics) -"aIV" = (/obj/structure/chair/office/light{dir = 1},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aIW" = (/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aIX" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aIY" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics) -"aIZ" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aJa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/maintenance/asmaint) -"aJb" = (/turf/simulated/wall,/area/maintenance/port) -"aJc" = (/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating,/area/engine/engineering) -"aJd" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/space,/area/space/nearstation) -"aJe" = (/obj/machinery/the_singularitygen/tesla{anchored = 1},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aJf" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/engine/engineering) -"aJg" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the singularity chamber."; dir = 4; layer = 4; name = "Engine Containment Telescreen"; network = list("Singularity"); pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aJh" = (/obj/machinery/camera/emp_proof{c_tag = "Particle Accelerator"; dir = 1; network = list("Singularity")},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/engine/engineering) -"aJi" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/space,/area/space/nearstation) -"aJj" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/space,/area/space/nearstation) -"aJk" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/engine/engineering) -"aJl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred,/area/security/checkpoint/engineering) -"aJm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/checkpoint/engineering) -"aJn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/landmark/start/depsec/engineering,/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/checkpoint/engineering) -"aJo" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 11; tag = "e"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/checkpoint/engineering) -"aJp" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/maintenance/aft) -"aJq" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aJr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/rust,/area/maintenance/aft) -"aJs" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"aJt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aJu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/secondary/entry) -"aJv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aJw" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aJx" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/secondary/entry) -"aJy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Atmospherics Entrance"; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 9; icon_state = "caution"},/area/atmos) -"aJz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) -"aJA" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) -"aJB" = (/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/atmos) -"aJC" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plasteel/caution/corner{tag = "icon-cautioncorner (WEST)"; icon_state = "cautioncorner"; dir = 8},/area/atmos) -"aJD" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall,/area/atmos) -"aJE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aJF" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"aJG" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = "plasma"; on = 1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "purple"},/area/atmos) -"aJH" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"aJI" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken6"; tag = "icon-wood-broken6"},/area/maintenance/atmos_control) -"aJJ" = (/obj/structure/chair/comfy/lime{tag = "icon-comfychair (NORTH)"; icon_state = "comfychair"; dir = 1},/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aJK" = (/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken"; tag = "icon-wood-broken"},/area/maintenance/atmos_control) -"aJL" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aJM" = (/obj/structure/rack,/obj/item/weapon/circuitboard/circuit_imprinter,/obj/item/trash/chips,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aJN" = (/obj/structure/table,/obj/item/stack/cable_coil/green,/obj/item/robot_parts/l_arm,/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,/obj/item/weapon/reagent_containers/food/drinks/mug/coco,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJO" = (/obj/structure/table,/obj/item/toy/redbutton,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJP" = (/obj/structure/cable/green,/obj/machinery/computer/monitor,/obj/machinery/light_construct,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJQ" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJR" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/barricade/wooden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJS" = (/obj/structure/rack,/obj/item/wallframe/newscaster,/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aJT" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJU" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJV" = (/obj/item/weapon/restraints/legcuffs/beartrap{armed = 1},/obj/item/weapon/restraints/legcuffs/beartrap{armed = 1},/obj/item/weapon/restraints/legcuffs/beartrap{armed = 1},/obj/item/weapon/restraints/legcuffs/beartrap{armed = 1},/obj/item/weapon/restraints/legcuffs/beartrap{armed = 1},/obj/structure/falsewall/reinforced,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"aJW" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/toy/griffin,/turf/simulated/floor/plating,/area/maintenance/fore) -"aJX" = (/obj/structure/table,/obj/item/weapon/melee/baton,/obj/item/weapon/paper/crumpled{info = "I'll get that Owl and show him just what he's doing for those he captures!!!!!"; name = "crumpled paper"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aJY" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aJZ" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKb" = (/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKe" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aKf" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/exam_room) -"aKg" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aKh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKi" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKj" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aKl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/medical/cmo) -"aKm" = (/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},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aKn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/pet/cat/Runtime,/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aKo" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aKp" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aKq" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/cmo) -"aKr" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"aKs" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aKt" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aKu" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/medical/genetics) -"aKv" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/medical/genetics) -"aKw" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"},/area/medical/genetics) -"aKx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"aKy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/space,/area/space/nearstation) -"aKz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/port) -"aKA" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/port) -"aKB" = (/obj/structure/table,/obj/item/wallframe/firealarm,/turf/simulated/floor/plating,/area/maintenance/port) -"aKC" = (/turf/simulated/wall/rust,/area/maintenance/port) -"aKD" = (/obj/structure/closet/crate,/obj/item/clothing/suit/ianshirt,/obj/item/weapon/coin/twoheaded,/turf/simulated/floor/plating,/area/maintenance/port) -"aKE" = (/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/maintenance/port) -"aKF" = (/turf/simulated/floor/plating,/area/maintenance/port) -"aKG" = (/obj/item/toy/minimeteor,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/port) -"aKH" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/space,/area/space/nearstation) -"aKI" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/space,/area/space/nearstation) -"aKJ" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow,/turf/simulated/floor/plating/airless,/area/space/nearstation) -"aKK" = (/obj/item/weapon/crowbar/large,/turf/space,/area/space/nearstation) -"aKL" = (/obj/structure/closet/emcloset,/obj/machinery/light/small,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aKM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/engine/engineering) -"aKN" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aKO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aKP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/engine/engineering) -"aKQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/engineering) -"aKR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/checkpoint/engineering) -"aKS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/darkred/side,/area/security/checkpoint/engineering) -"aKT" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/filingcabinet,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/checkpoint/engineering) -"aKU" = (/turf/simulated/wall,/area/security/checkpoint/engineering) -"aKV" = (/turf/simulated/floor/plasteel/yellow/side,/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor/plasteel/warningline,/area/engine/engineering) -"aKW" = (/turf/simulated/floor/plasteel/yellow/side,/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/plasteel/warningline,/area/engine/engineering) -"aKX" = (/turf/simulated/floor/plasteel/yellow/side,/obj/machinery/disposal/bin,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Engineering South 2"; network = list("SS13")},/turf/simulated/floor/plasteel/warningline,/area/engine/engineering) -"aKY" = (/turf/simulated/floor/plasteel/yellow/side,/obj/machinery/vending/tool,/turf/simulated/floor/plasteel/warningline,/area/engine/engineering) -"aKZ" = (/turf/simulated/floor/plasteel/yellow/side,/obj/machinery/vending/engivend,/turf/simulated/floor/plasteel/warningline,/area/engine/engineering) -"aLa" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aLb" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aLc" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft) -"aLd" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"aLe" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aLf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aLg" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/secondary/entry) -"aLh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/hallway/secondary/entry) -"aLi" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aLj" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; sortType = 6; tag = "icon-pipe-j1s (NORTH)"},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/secondary/entry) -"aLk" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/yellow,/area/atmos) -"aLl" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) -"aLm" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aLn" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/atmos) -"aLo" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (EAST)"; icon_state = "caution"; dir = 4},/area/atmos) -"aLp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/simulated/floor/plasteel/yellow,/area/atmos) -"aLq" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/caution{tag = "icon-caution (WEST)"; icon_state = "caution"; dir = 8},/area/atmos) -"aLr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/atmos) -"aLs" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"aLt" = (/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics South"; dir = 6; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/atmos) -"aLu" = (/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/atmos) -"aLv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"aLw" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aLx" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel,/area/atmos) -"aLy" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"aLz" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken7"; tag = "icon-wood-broken7"},/area/maintenance/atmos_control) -"aLA" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aLB" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aLC" = (/obj/structure/table/wood,/turf/simulated/floor/wood{broken = 1; icon_state = "wood-broken6"; tag = "icon-wood-broken6"},/area/maintenance/atmos_control) -"aLD" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/turf/simulated/floor/wood,/area/maintenance/atmos_control) -"aLE" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); name = "random sheet material spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aLF" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 2},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aLG" = (/obj/structure/falsewall,/turf/simulated/floor/plating,/area/maintenance/fore) -"aLH" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fore) -"aLI" = (/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/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aLJ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7; pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aLK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/exam_room) -"aLL" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aLM" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aLN" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aLO" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aLP" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/medical/exam_room) -"aLQ" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aLR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aLS" = (/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile{layer = 2.99999},/turf/simulated/floor/plating,/area/medical/cmo) -"aLT" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aLU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aLV" = (/turf/simulated/wall,/area/medical/genetics) -"aLW" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/mannitol,/obj/machinery/camera{c_tag = "Medbay Genetics"; dir = 4; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aLX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aLY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aLZ" = (/obj/structure/closet/secure_closet/personal/patient,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/area/medical/genetics) -"aMa" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/port) -"aMb" = (/obj/effect/spawner/lootdrop/maintenance,/obj/item/robot_parts/l_arm,/turf/simulated/floor/plating,/area/maintenance/port) -"aMc" = (/obj/item/weapon/bucket_sensor,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/port) -"aMd" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/port) -"aMe" = (/turf/simulated/wall/rust,/area/engine/engineering) -"aMf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/obj/machinery/camera{c_tag = "Engineering South 1"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMi" = (/turf/simulated/floor/plasteel/yellow/corner,/area/engine/engineering) -"aMj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/engineering) -"aMk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMl" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMm" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/yellow/corner,/area/engine/engineering) -"aMo" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"aMp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aMq" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aMr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/secondary/entry) -"aMs" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-caution (SOUTHWEST)"; icon_state = "caution"; dir = 10},/area/atmos) -"aMt" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/atmos) -"aMu" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/atmos) -"aMv" = (/obj/structure/tank_dispenser,/turf/simulated/floor/plasteel{dir = 6; icon_state = "caution"},/area/atmos) -"aMw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/caution/corner{tag = "icon-cautioncorner (NORTH)"; icon_state = "cautioncorner"; dir = 1},/area/atmos) -"aMx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/simulated/floor/plasteel,/area/atmos) -"aMy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"aMz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aMA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) -"aMB" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"aMC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"; on = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "caution"},/area/atmos) -"aMD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; 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/atmos) -"aME" = (/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"aMF" = (/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"aMG" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aMH" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aMI" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"aMJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue,/area/medical/exam_room) -"aMK" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/exam_room) -"aML" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/exam_room) -"aMM" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aMN" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aMO" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aMP" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/camera{c_tag = "Medbay Sleepers"; network = list("SS13")},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aMQ" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/medical/exam_room) -"aMR" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aMS" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aMT" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/exam_room) -"aMU" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Medbay Cryogenics"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aMV" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -5; pixel_y = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 2; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aMW" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aMX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) -"aMY" = (/obj/structure/table,/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/genetics) -"aMZ" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Medbay Cloning"; network = list("SS13")},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aNa" = (/obj/machinery/clonepod,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHWEST)"; icon_state = "warnwhite"; dir = 10},/area/medical/genetics) -"aNb" = (/obj/machinery/computer/cloning,/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics) -"aNc" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHEAST)"; icon_state = "warnwhite"; dir = 6},/area/medical/genetics) -"aNd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/whitepurple/corner,/area/medical/genetics) -"aNe" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/mutadone,/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/medical/genetics) -"aNf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aNg" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/whitebot,/area/medical/genetics) -"aNh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aNi" = (/obj/structure/closet/wardrobe/genetics_white,/obj/structure/window/reinforced,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/medical/genetics) -"aNj" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/port) -"aNk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"aNl" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/port) -"aNm" = (/obj/effect/decal/cleanable/ash,/obj/item/weapon/tank/internals/plasmaman/full{name = "plasma tank"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/port) -"aNn" = (/obj/item/weapon/paper/crumpled{info = "Try not to burn out."},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/port) -"aNo" = (/obj/item/stack/medical/ointment,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/port) -"aNp" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/port) -"aNq" = (/obj/structure/closet/wardrobe/engineering_yellow,/turf/simulated/floor/plating,/area/maintenance/port) -"aNr" = (/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/engine/engineering) -"aNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/engine/engineering) -"aNu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/engine/engineering) -"aNv" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aNw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/aft) -"aNx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft) -"aNy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aNz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"aNA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/hallway/secondary/entry) -"aNB" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance"; req_access_txt = "24"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/atmos) -"aNC" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel,/area/atmos) -"aND" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) -"aNE" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel,/area/atmos) -"aNF" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"aNG" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"aNH" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"aNI" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) -"aNJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"aNK" = (/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/atmos) -"aNL" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"aNM" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"aNN" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aNO" = (/obj/structure/rack,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aNP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aNQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aNR" = (/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/exam_room) -"aNS" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aNT" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aNU" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aNV" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aNW" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteblue"},/area/medical/exam_room) -"aNX" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Recovery Room"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue,/area/medical/exam_room) -"aNY" = (/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/exam_room) -"aNZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aOa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/delivery,/area/medical/exam_room) -"aOb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aOc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aOd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aOe" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aOf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aOg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/delivery,/area/medical/exam_room) -"aOh" = (/obj/structure/cable/cyan{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 23},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aOi" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aOj" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue,/area/medical/genetics) -"aOk" = (/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 32},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/genetics) -"aOl" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOm" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOn" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/landmark/start{name = "Geneticist"},/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOo" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOp" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/genetics) -"aOq" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Genetics Lab"; req_access_txt = "5;9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whitepurple,/area/medical/genetics) -"aOr" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/genetics) -"aOs" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOt" = (/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOu" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOv" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aOw" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance"; req_access_txt = "5;9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/genetics) -"aOx" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/port) -"aOy" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"aOz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aOA" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aOB" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"aOC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/port) -"aOD" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aOE" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aOF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/port) -"aOG" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aOH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall,/area/maintenance/port) -"aOI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall/rust,/area/maintenance/port) -"aOJ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall,/area/maintenance/port) -"aOK" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aOL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/port) -"aOM" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"aON" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOP" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOQ" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOR" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOS" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOT" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOU" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOV" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/bot,/area/engine/engineering) -"aOW" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aOX" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-4-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/engine/engineering) -"aOY" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"aOZ" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aPa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aPb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPc" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/atmos_control) -"aPd" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance"; req_access_txt = "24"},/turf/simulated/floor/plating,/area/atmos) -"aPe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel,/area/atmos) -"aPf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Nitrogen Outlet"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aPg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) -"aPh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 Outlet Pump"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"aPi" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/simulated/floor/plasteel,/area/atmos) -"aPj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/atmos) -"aPk" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = "co2"; on = 1},/turf/simulated/floor/plasteel{tag = "icon-caution (SOUTHWEST)"; icon_state = "caution"; dir = 10},/area/atmos) -"aPl" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"aPm" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "co2_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"aPn" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPo" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPq" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/atmos_control) -"aPs" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPt" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPu" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPv" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aPw" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPx" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPy" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPz" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPB" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aPE" = (/obj/structure/rack,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aPF" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aPG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/exam_room) -"aPH" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/exam_room) -"aPI" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitehall"},/area/medical/exam_room) -"aPJ" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/gun/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/camera{c_tag = "Medbay Examination"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aPK" = (/obj/structure/table,/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aPL" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aPM" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aPN" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aPO" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/exam_room) -"aPP" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitebluecorner"},/area/medical/exam_room) -"aPQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aPR" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/delivery,/area/medical/exam_room) -"aPS" = (/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aPT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aPU" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aPV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aPW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aPX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (EAST)"; icon_state = "whiteblue"; dir = 4},/area/medical/medbay) -"aPY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue,/area/medical/genetics) -"aPZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (WEST)"; icon_state = "whiteblue"; dir = 8},/area/medical/genetics) -"aQa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aQb" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aQc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aQd" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4},/area/medical/genetics) -"aQe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/genetics) -"aQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)"; icon_state = "whitepurplecorner"; dir = 1},/area/medical/genetics) -"aQg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aQh" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aQi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/genetics) -"aQj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"aQk" = (/obj/item/wallframe/light_fixture,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQm" = (/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/locker/locker_toilet) -"aQn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"aQp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker) -"aQq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker) -"aQr" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"aQs" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQt" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/locker) -"aQu" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQv" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/port) -"aQw" = (/obj/item/weapon/vending_refill/clothing,/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/port) -"aQx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/port) -"aQy" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aQA" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/port) -"aQB" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/computer) -"aQC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/port) -"aQD" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellowcorner"},/area/engine/engineering) -"aQE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/engine/engineering) -"aQF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/engine/engineering) -"aQG" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aQH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aQI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/bot,/area/engine/engineering) -"aQJ" = (/obj/machinery/computer/monitor,/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/bot,/area/engine/engineering) -"aQK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellowcorner"},/area/engine/engineering) -"aQL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/engine/engineering) -"aQM" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/engine/engineering) -"aQN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/engine/engineering) -"aQO" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/engine/engineering) -"aQP" = (/turf/simulated/wall/r_wall,/area/engine/chiefs_office) -"aQQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aQR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/atmos) -"aQS" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = "n2"; on = 1},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHWEST)"; icon_state = "red"; dir = 9},/area/atmos) -"aQT" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; initialize_directions = 12},/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank")},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/atmos) -"aQU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTHEAST)"; icon_state = "red"; dir = 5},/area/atmos) -"aQV" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) -"aQW" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = "o2"; on = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/atmos) -"aQX" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10; initialize_directions = 12},/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/atmos) -"aQY" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 5; icon_state = "blue"},/area/atmos) -"aQZ" = (/obj/machinery/atmospherics/components/trinary/mixer{node1_concentration = 0.8; node2_concentration = 0.2},/turf/simulated/floor/plasteel/barber,/area/atmos) -"aRa" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "air_in"; name = "Mixed Air Supply Control"; output_tag = "air_out"; sensors = list("air_sensor" = "Tank")},/obj/machinery/light,/turf/simulated/floor/plasteel/barber,/area/atmos) -"aRb" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air Outlet Pump"; on = 1},/turf/simulated/floor/plasteel/barber,/area/atmos) -"aRc" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/simulated/floor/plasteel,/area/atmos) -"aRd" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/atmos_control) -"aRe" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aRf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/atmos_control) -"aRg" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aRh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aRi" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aRj" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fore) -"aRk" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"aRl" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fore) -"aRm" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fore) -"aRn" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/fore) -"aRp" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aRq" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aRr" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aRs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/exam_room) -"aRt" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aRu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aRv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aRw" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aRx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aRy" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/exam_room) -"aRz" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench{pixel_x = 5; pixel_y = -5},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel,/area/medical/exam_room) -"aRA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aRB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) -"aRC" = (/obj/structure/closet/wardrobe/white,/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/genetics) -"aRD" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aRE" = (/obj/structure/table,/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aRF" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/simulated/floor/plasteel/white,/area/medical/genetics) -"aRG" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/genetics) -"aRH" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/genetics) -"aRI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics) -"aRJ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/disks{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics) -"aRK" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/rxglasses,/obj/structure/cable/cyan,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics) -"aRL" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_medsci,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics) -"aRM" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/genetics) -"aRN" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"aRO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"aRP" = (/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"aRQ" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"aRR" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) -"aRS" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) -"aRT" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/crew_quarters/locker) -"aRU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aRV" = (/turf/simulated/wall,/area/crew_quarters/locker) -"aRW" = (/turf/simulated/wall/r_wall,/area/tcommsat/server) -"aRX" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"aRY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/port) -"aRZ" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/port) -"aSa" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/engine/engineering) -"aSb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/engine/engineering) -"aSc" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/engine/engineering) -"aSd" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/engine/engineering) -"aSe" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/engineering) -"aSf" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage"; req_access_txt = "11"; req_one_access_txt = "0"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/engine/engineering) -"aSg" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/engineering) -"aSh" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/engine/chiefs_office) -"aSi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel,/area/engine/chiefs_office) -"aSj" = (/obj/machinery/hologram/holopad,/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/chiefs_office) -"aSk" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/door/window/eastleft{name = "Chief Engineer's Desk Door"; req_access_txt = "56"},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Chief Engineer's Office"; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/engine/chiefs_office) -"aSl" = (/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/engine/chiefs_office) -"aSm" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/item/weapon/bedsheet/ce,/obj/machinery/button/door{id = "ceprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = 0},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/black,/area/engine/chiefs_office) -"aSn" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"aSo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Arrivals Hallway South"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"aSp" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"aSq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5; initialize_directions = 12},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"aSr" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos) -"aSs" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/atmos_control) -"aSt" = (/obj/item/trash/candle,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aSu" = (/obj/structure/rack,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aSv" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aSw" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aSx" = (/obj/item/device/assembly/mousetrap/armed,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aSy" = (/turf/simulated/wall,/area/crew_quarters/courtroom) -"aSz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plating,/area/maintenance/fore) -"aSA" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aSB" = (/obj/structure/rack,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aSC" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aSD" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitecorner"},/area/medical/exam_room) -"aSE" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/exam_room) -"aSF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitecorner"},/area/medical/exam_room) -"aSG" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aSH" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/exam_room) -"aSI" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel/darkblue/corner,/area/medical/exam_room) -"aSJ" = (/obj/structure/table,/obj/item/weapon/storage/box/masks{pixel_x = 0; pixel_y = 0},/obj/item/weapon/storage/box/gloves{pixel_x = 3; pixel_y = 4},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"aSK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aSL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/genetics) -"aSM" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Genetics"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue,/area/medical/genetics) -"aSN" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aSO" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aSP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aSQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aSR" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/crew_quarters/locker) -"aSS" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"aST" = (/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aSU" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/plasteel/brown{dir = 9; icon_state = "brown"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/area/tcommsat/server) -"aSV" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/plasteel/green/side{dir = 5; icon_state = "green"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/area/tcommsat/server) -"aSW" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aSX" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aSY" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/plasteel/darkred/side{dir = 5; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/area/tcommsat/server) -"aSZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/tcommsat/computer) -"aTa" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (NORTHWEST)"; icon_state = "darkyellow"; dir = 9},/area/tcommsat/computer) -"aTb" = (/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) -"aTc" = (/obj/machinery/announcement_system,/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (EAST)"; icon_state = "darkyellowcorners"; dir = 4},/area/tcommsat/computer) -"aTd" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/engine/engineering) -"aTe" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/engine/engineering) -"aTf" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/area/engine/engineering) -"aTg" = (/obj/item/weapon/book/manual/wiki/engineering_hacking,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) -"aTh" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aTi" = (/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aTj" = (/obj/structure/closet/crate{name = "solar pack crate"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/engine/engineering) -"aTk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/tank_dispenser,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/engineering) -"aTl" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/engineering) -"aTm" = (/obj/item/weapon/book/manual/engineering_singularity_safety{pixel_x = -2; pixel_y = 2},/obj/structure/table,/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/item/weapon/wrench,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/engineering) -"aTn" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/multitool,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/engine/engineering) -"aTo" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{desc = "Marked to indicate placement of a PACMAN generator."; dir = 1; icon_state = "bot"},/area/engine/engineering) -"aTp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/engine/chiefs_office) -"aTq" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/engine/chiefs_office) -"aTr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/chiefs_office) -"aTs" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/stamp/ce,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/engine/chiefs_office) -"aTt" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (EAST)"; icon_state = "darkyellowcorners"; dir = 4},/area/engine/chiefs_office) -"aTu" = (/obj/machinery/computer/station_alert,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (NORTHEAST)"; icon_state = "darkyellow"; dir = 5},/area/engine/chiefs_office) -"aTv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/engine/chiefs_office) -"aTw" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/lattice,/turf/space,/area/space/nearstation) -"aTx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/lattice,/turf/space,/area/space/nearstation) -"aTy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-6"; icon_state = "0-6"},/turf/simulated/floor/plating,/area/storage/tech) -"aTz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/storage/tech) -"aTA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-10"; icon_state = "0-10"},/turf/simulated/floor/plating,/area/storage/tech) -"aTB" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/remains/human,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aTC" = (/turf/simulated/wall,/area/lawoffice) -"aTD" = (/obj/structure/closet/secure_closet/courtroom,/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aTE" = (/obj/structure/chair{name = "Bailiff"},/obj/machinery/camera{c_tag = "Courtroom"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aTF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aTG" = (/obj/structure/chair{name = "Judge"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/crew_quarters/courtroom) -"aTH" = (/obj/structure/chair{name = "Judge"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/crew_quarters/courtroom) -"aTI" = (/obj/structure/chair{name = "Judge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 5; icon_state = "blue"},/area/crew_quarters/courtroom) -"aTJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aTK" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/darkred/corner,/area/crew_quarters/courtroom) -"aTL" = (/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/crew_quarters/courtroom) -"aTM" = (/obj/machinery/door/airlock/security{name = "Court Cell"; req_access = null; req_access_txt = "63"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/transfer) -"aTN" = (/turf/simulated/floor/plasteel/black,/area/security/transfer) -"aTO" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/transfer) -"aTP" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fore) -"aTQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aTR" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aTS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fore) -"aTT" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aTU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aTV" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aTW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/exam_room) -"aTX" = (/obj/structure/table/optable,/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aTY" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitehall"},/area/medical/exam_room) -"aTZ" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aUa" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/exam_room) -"aUb" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/exam_room) -"aUc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/medical/exam_room) -"aUd" = (/obj/machinery/door/firedoor,/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/plasteel/blue,/area/medical/exam_room) -"aUe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) -"aUf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/sink{pixel_y = 24},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUg" = (/obj/structure/cable/cyan{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUh" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUi" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUj" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUk" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUl" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUm" = (/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUn" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aUo" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUp" = (/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 9},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUq" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUr" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUs" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUt" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUu" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUv" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) -"aUw" = (/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aUx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) -"aUy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aUz" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay) -"aUA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"aUB" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aUC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aUD" = (/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"aUE" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"aUF" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/plasteel/brown{dir = 10; icon_state = "brown"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/area/tcommsat/server) -"aUG" = (/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor/plasteel/green/side{dir = 6; icon_state = "green"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/area/tcommsat/server) -"aUH" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aUI" = (/obj/machinery/telecomms/broadcaster/preset_right,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aUJ" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aUK" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/plasteel/darkred/side{dir = 6; icon_state = "darkred"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/area/tcommsat/server) -"aUL" = (/obj/machinery/computer/message_monitor,/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (WEST)"; icon_state = "darkyellow"; dir = 8},/area/tcommsat/computer) -"aUM" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) -"aUN" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Telecoms Admin"; departmentType = 5; name = "Telecoms RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) -"aUO" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/port) -"aUP" = (/obj/structure/closet/radiation,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/engine/engineering) -"aUQ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/yellow,/area/engine/engineering) -"aUR" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/area/engine/engineering) -"aUS" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft) -"aUT" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aUU" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aUV" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aUW" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aUX" = (/obj/structure/cable/green{tag = "icon-4-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{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aUY" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aUZ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/engine/engineering) -"aVa" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{glass = 0; name = "Chief Engineer"; opacity = 1; req_access_txt = "56"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/yellow,/area/engine/chiefs_office) -"aVb" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/engine/chiefs_office) -"aVc" = (/obj/structure/chair{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/chiefs_office) -"aVd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/table/reinforced,/obj/item/weapon/paper/monitorkey,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/engine/chiefs_office) -"aVe" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/engine/chiefs_office) -"aVf" = (/obj/machinery/computer/atmos_alert,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (EAST)"; icon_state = "darkyellow"; dir = 4},/area/engine/chiefs_office) -"aVg" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter,/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"aVh" = (/obj/machinery/meter,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/wall/r_wall,/area/atmos) -"aVi" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank In"},/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"aVj" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank Out"},/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) -"aVk" = (/obj/structure/rack,/obj/item/weapon/stock_parts/capacitor,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aVl" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aVm" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/atmos_control) -"aVn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/storage/tech) -"aVo" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHWEST)"; icon_state = "darkblue"; dir = 10},/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},/obj/structure/cable/green{tag = "icon-6-9"; icon_state = "6-9"},/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/structure/cable/green{tag = "icon-1-6"; icon_state = "1-6"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/storage/tech) -"aVp" = (/turf/simulated/floor/plasteel/darkblue/side,/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},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/warningline,/area/storage/tech) -"aVq" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHEAST)"; icon_state = "darkblue"; dir = 6},/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},/obj/structure/cable/green{tag = "icon-5-10"; icon_state = "5-10"},/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/obj/structure/cable/green{tag = "icon-1-10"; icon_state = "1-10"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/storage/tech) -"aVr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/storage/tech) -"aVs" = (/obj/item/device/assembly/mousetrap/armed,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/atmos_control) -"aVt" = (/obj/machinery/requests_console{department = "Law Office"; name = "Law Office RC"; pixel_x = -30; pixel_y = 0},/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/lawoffice) -"aVu" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/item/weapon/cartridge/lawyer,/turf/simulated/floor/wood,/area/lawoffice) -"aVv" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/table/wood,/obj/item/device/taperecorder,/turf/simulated/floor/wood,/area/lawoffice) -"aVw" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/wood,/area/lawoffice) -"aVx" = (/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aVy" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/courtroom) -"aVz" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 0; name = "Station Intercom (Court)"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"aVA" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"aVB" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"aVC" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/crew_quarters/courtroom) -"aVD" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) -"aVE" = (/obj/machinery/door/window/southleft{name = "Court Cell"; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/crew_quarters/courtroom) -"aVF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fore) -"aVG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/simulated/floor/plating,/area/maintenance/fore) -"aVH" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"aVI" = (/obj/structure/table,/obj/item/stack/sheet/cardboard,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aVJ" = (/obj/machinery/constructable_frame/machine_frame,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aVK" = (/obj/machinery/hologram/holopad,/obj/machinery/camera{c_tag = "Medbay Surgery"; dir = 4; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aVL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/exam_room) -"aVM" = (/obj/machinery/computer/operating,/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/white,/area/medical/exam_room) -"aVN" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitehall"},/area/medical/exam_room) -"aVO" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aVP" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/exam_room) -"aVQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/medical/exam_room) -"aVR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Surgery Observation"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/blue,/area/medical/exam_room) -"aVS" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) -"aVT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-whiteyellowcorner"; icon_state = "whiteyellowcorner"; dir = 2},/area/medical/medbay) -"aVU" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 11},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/medbay) -"aVV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whiteyellowcorner (WEST)"; icon_state = "whiteyellowcorner"; dir = 8},/area/medical/medbay) -"aVW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Medbay West"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) -"aVZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = -24; pixel_y = -24; req_access_txt = "0"},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aWa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aWb" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aWc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aWd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aWe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) -"aWf" = (/obj/structure/cable/cyan,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWh" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWk" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Medbay East"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWl" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) -"aWm" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"aWn" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) -"aWo" = (/turf/simulated/floor/plasteel/whitebot/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/medical/medbay) -"aWp" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Medbay"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitebot,/area/medical/medbay) -"aWq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"aWr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/port) -"aWs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/port) -"aWt" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"aWu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"aWv" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aWw" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aWx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aWy" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aWz" = (/obj/structure/window,/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; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"aWA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"aWB" = (/obj/structure/window,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"aWC" = (/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (WEST)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 8; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"aWD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aWE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aWF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 140; on = 1; pressure_checks = 0},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aWG" = (/turf/simulated/floor/bluegrid{icon_state = "darkyellowcorners"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aWH" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (SOUTHWEST)"; icon_state = "darkyellow"; dir = 10},/area/tcommsat/computer) -"aWI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/tcommsat/computer) -"aWJ" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel/darkyellow/corner,/area/tcommsat/computer) -"aWK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/port) -"aWL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/port) -"aWM" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/engine/engineering) -"aWN" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/engine/engineering) -"aWO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/camera{c_tag = "Engineering Access"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/area/engine/engineering) -"aWP" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/aft) -"aWQ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aWR" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aWS" = (/obj/machinery/cell_charger,/obj/structure/table,/obj/item/weapon/stock_parts/cell/high/plus,/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/warning/corner,/area/engine/engineering) -"aWT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/warning,/area/engine/engineering) -"aWU" = (/turf/simulated/floor/plasteel/warning,/area/engine/engineering) -"aWV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/warning,/area/engine/engineering) -"aWW" = (/obj/machinery/requests_console{announcementConsole = 0; department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_y = -30},/obj/machinery/camera{c_tag = "Engineering Power Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/engine/engineering) -"aWX" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aWY" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/engine/engineering) -"aWZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/engine/chiefs_office) -"aXa" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/engine/chiefs_office) -"aXb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/chiefs_office) -"aXc" = (/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/structure/table/reinforced,/obj/item/weapon/cartridge/atmos,/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/engine/chiefs_office) -"aXd" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkyellow/corner,/area/engine/chiefs_office) -"aXe" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/computer/card/minor/ce,/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (SOUTHEAST)"; icon_state = "darkyellow"; dir = 6},/area/engine/chiefs_office) -"aXf" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/atmos_control) -"aXg" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "n2_in"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"aXh" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"aXi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; 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/atmos) -"aXj" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "o2_in"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"aXk" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"aXl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; 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/atmos) -"aXm" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "air_in"},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"aXn" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "air_sensor"},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"aXo" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 1; external_pressure_bound = 0; frequency = 1441; 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/atmos) -"aXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aXq" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/atmos_control) -"aXr" = (/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aXs" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/structure/cable/green{tag = "icon-4-10"; icon_state = "4-10"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light/small,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/storage/tech) -"aXt" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/structure/cable/green{tag = "icon-2-5"; icon_state = "2-5"},/obj/structure/cable/green{tag = "icon-2-9"; icon_state = "2-9"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/storage/tech) -"aXu" = (/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/structure/cable/green{tag = "icon-6-8"; icon_state = "6-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Secure Technical Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/storage/tech) -"aXv" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/turf/simulated/floor/plating,/area/lawoffice) -"aXw" = (/turf/simulated/floor/wood,/area/lawoffice) -"aXx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/wood,/area/lawoffice) -"aXy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor/wood,/area/lawoffice) -"aXz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aXA" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/courtroom) -"aXB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aXC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) -"aXD" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) -"aXE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"aXF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkred/side,/area/security/transfer) -"aXG" = (/obj/structure/chair/stool,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"aXH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aXI" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aXJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitecorner"},/area/medical/exam_room) -"aXK" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/exam_room) -"aXL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitecorner (NORTH)"; icon_state = "whitecorner"; dir = 1},/area/medical/exam_room) -"aXM" = (/obj/structure/table,/obj/item/weapon/razor,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plasteel/black,/area/medical/exam_room) -"aXN" = (/obj/structure/chair{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/exam_room) -"aXO" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/medical/exam_room) -"aXP" = (/turf/simulated/wall,/area/medical/chemistry) -"aXQ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/window/southleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) -"aXR" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"aXS" = (/obj/structure/sign/chemistry,/turf/simulated/wall,/area/medical/chemistry) -"aXT" = (/turf/simulated/wall,/area/medical/medbay) -"aXU" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/medbay) -"aXV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whiteblue,/area/medical/medbay) -"aXW" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel/whiteblue,/area/medical/medbay) -"aXX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/medbay) -"aXY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Desk"; req_access_txt = "5"},/turf/simulated/floor/plasteel/whiteblue,/area/medical/medbay) -"aXZ" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aYa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aYb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aYc" = (/turf/simulated/wall,/area/medical/morgue) -"aYd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/morgue) -"aYe" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/blue,/area/medical/morgue) -"aYf" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/crew_quarters/locker) -"aYg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/crew_quarters/locker) -"aYh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aYi" = (/obj/machinery/requests_console{department = "Locker Room"; name = "Locker Room RC"; pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Locker Room"; dir = 2; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aYk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aYl" = (/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aYm" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aYn" = (/obj/machinery/message_server,/turf/simulated/floor/bluegrid{icon_state = "darkyellowfull"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aYo" = (/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aYp" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/bluegrid{icon_state = "darkyellowcorners"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aYq" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aYr" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (WEST)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 8; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"aYs" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aYt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Control Room"; req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/tcommsat/computer) -"aYu" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/tcommsat/computer) -"aYv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"aYw" = (/turf/simulated/wall,/area/engine/break_room) -"aYx" = (/turf/simulated/wall/r_wall,/area/engine/break_room) -"aYy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/engine/break_room) -"aYz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/engine/break_room) -"aYA" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/engine/break_room) -"aYB" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/turf/simulated/floor/plating,/area/engine/engineering) -"aYC" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/chiefs_office) -"aYD" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/engine/chiefs_office) -"aYE" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/item/weapon/clipboard,/obj/item/weapon/stock_parts/cell/high/plus,/mob/living/simple_animal/parrot/Poly,/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (WEST)"; icon_state = "darkyellowcorners"; dir = 8},/area/engine/chiefs_office) -"aYF" = (/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = 10; pixel_y = -24; req_access_txt = "24"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = 0; pixel_y = -24; req_access_txt = "11"},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -10; pixel_y = -24; req_access_txt = "10"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/engine/chiefs_office) -"aYG" = (/obj/machinery/suit_storage_unit/ce,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = 32; pixel_y = 0},/obj/machinery/newscaster{hitstaken = 0; pixel_x = 0; pixel_y = -32; tag = "s"},/turf/simulated/floor/plasteel/black,/area/engine/chiefs_office) -"aYH" = (/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"aYI" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"aYJ" = (/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"aYK" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"aYL" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"aYM" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"aYN" = (/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"aYO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aYP" = (/turf/simulated/wall,/area/storage/tech) -"aYQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-5"; icon_state = "0-5"},/turf/simulated/floor/plating,/area/storage/tech) -"aYR" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/tech) -"aYS" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/turf/simulated/floor/plating,/area/storage/tech) -"aYT" = (/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) -"aYU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-9"; icon_state = "0-9"},/turf/simulated/floor/plating,/area/storage/tech) -"aYV" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aYW" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/atmos_control) -"aYX" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"aYY" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/lawoffice) -"aYZ" = (/obj/machinery/camera{c_tag = "Law Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/lawoffice) -"aZa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"aZb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"aZc" = (/obj/structure/closet/lawcloset,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"aZd" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/crew_quarters/courtroom) -"aZe" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/courtroom) -"aZf" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/crew_quarters/courtroom) -"aZg" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) -"aZh" = (/obj/structure/chair{dir = 8; name = "Defense"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "green"},/area/crew_quarters/courtroom) -"aZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"aZj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aZk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fore) -"aZl" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fore) -"aZm" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aZn" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"aZo" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/exam_room) -"aZp" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_med,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"aZq" = (/obj/effect/landmark/start{name = "Chemist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowcorner"},/area/medical/chemistry) -"aZr" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellow"},/area/medical/chemistry) -"aZs" = (/obj/machinery/chem_heater,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellowcorner"},/area/medical/chemistry) -"aZt" = (/obj/machinery/chem_dispenser,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHWEST)"; icon_state = "warnwhite"; dir = 10},/area/medical/chemistry) -"aZu" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHEAST)"; icon_state = "warnwhite"; dir = 6},/area/medical/chemistry) -"aZv" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/chemistry) -"aZw" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera{c_tag = "Medbay Waiting Area"; network = list("SS13")},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) -"aZx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aZy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aZz" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aZA" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aZB" = (/obj/structure/chair/office/light,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = -26; req_access_txt = "5"},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)"; icon_state = "whiteblue"; dir = 1},/area/medical/medbay) -"aZC" = (/obj/machinery/computer/med_data,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 30; pixel_y = 0; pixel_z = 0},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) -"aZD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whiteredcorner"; icon_state = "whiteredcorner"; dir = 2},/area/medical/medbay) -"aZE" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitered"},/area/medical/medbay) -"aZF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-whiteredcorner (WEST)"; icon_state = "whiteredcorner"; dir = 8},/area/medical/medbay) -"aZG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aZH" = (/obj/machinery/vending/medical{pixel_x = -2},/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 30; pixel_y = 0; pixel_z = 0},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aZI" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/medical/morgue) -"aZJ" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/medical/morgue) -"aZK" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/medical/morgue) -"aZL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"aZM" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"aZN" = (/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"aZO" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"aZP" = (/obj/machinery/door/airlock{id_tag = "AuxToilet3"; name = "Unit 3"},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aZQ" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Restroom"; dir = 9; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"aZR" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZU" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZX" = (/obj/structure/closet/wardrobe/white,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"aZY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Telecomms Server Racks"; dir = 4; network = list("SS13")},/obj/machinery/airalarm/server{dir = 4; icon_state = "alarm0"; pixel_x = -22; tag = "icon-alarm0 (EAST)"},/turf/simulated/floor/bluegrid{icon_state = "darkyellowfull"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"aZZ" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"baa" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bab" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bac" = (/obj/machinery/telecomms/hub/preset,/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/bluegrid{icon_state = "darkyellowfull"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bad" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bae" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"baf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bag" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/darkyellow,/area/tcommsat/computer) -"bah" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/darkyellow,/area/tcommsat/computer) -"bai" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkyellow,/area/tcommsat/computer) -"baj" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/tcommsat/computer) -"bak" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/tcommsat/computer) -"bal" = (/turf/simulated/floor/plasteel,/area/engine/break_room) -"bam" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Engineering Foyer"; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/engine/break_room) -"ban" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) -"bao" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/engine/break_room) -"bap" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31},/turf/simulated/floor/plasteel,/area/engine/break_room) -"baq" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engine/engineering) -"bar" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/simulated/floor/plating,/area/engine/engineering) -"bas" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plating,/area/engine/engineering) -"bat" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/engine/engineering) -"bau" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{glass = 0; name = "Chief Engineer's Office Maintenance"; opacity = 1; req_access_txt = "56"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/chiefs_office) -"bav" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"baw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"bax" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) -"bay" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) -"baz" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/atmos) -"baA" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/t_scanner,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) -"baB" = (/turf/simulated/floor/plating,/area/storage/tech) -"baC" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plating,/area/storage/tech) -"baD" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/storage/tech) -"baE" = (/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) -"baF" = (/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) -"baG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/tech) -"baH" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plating,/area/storage/tech) -"baI" = (/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/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plating,/area/storage/tech) -"baJ" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/space_heater,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/storage/art) -"baK" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"baL" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"baM" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/lawoffice) -"baN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{glass = 1; name = "Law Office"; opacity = 0; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/lawoffice) -"baO" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/lawoffice) -"baP" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/crew_quarters/courtroom) -"baQ" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 10},/area/crew_quarters/courtroom) -"baR" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) -"baS" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) -"baT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/courtroom) -"baU" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 6},/area/crew_quarters/courtroom) -"baV" = (/obj/structure/chair{dir = 8; name = "Defense"},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/crew_quarters/courtroom) -"baW" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"baX" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/transfer) -"baY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/item/toy/gun,/turf/simulated/floor/plating,/area/maintenance/fore) -"baZ" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/maintenance/fore) -"bba" = (/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/fore) -"bbb" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbd" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbe" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbf" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbg" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/cyan{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbh" = (/obj/structure/cable/cyan{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/exam_room) -"bbi" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbj" = (/obj/item/weapon/vending_refill/snack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/chemistry_white,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/medical/chemistry) -"bbm" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/structure/cable/cyan{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bbn" = (/obj/structure/cable/cyan{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bbo" = (/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bbp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bbq" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) -"bbr" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"bbs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) -"bbt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bbu" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bbv" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bbw" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bbx" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/cell_charger,/obj/machinery/light{dir = 4},/obj/item/weapon/stock_parts/cell/crap,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bby" = (/turf/simulated/wall,/area/security/checkpoint/medical) -"bbz" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"bbA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred,/area/security/checkpoint/medical) -"bbB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"bbC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bbD" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bbE" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bbF" = (/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bbG" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bbH" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bbI" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bbJ" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bbK" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bbL" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/bluegrid{icon_state = "darkyellowfull"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bbM" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (NORTH)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 1; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"bbN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bbO" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (EAST)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 4; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"bbP" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bbQ" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (NORTH)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 1; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"bbR" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/telecomms/receiver/preset_left,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bbS" = (/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (EAST)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 4; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"bbT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/simulated/floor/plating,/area/tcommsat/computer) -"bbU" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/tcommsat/computer) -"bbV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/machinery/camera{c_tag = "Telecomms Control Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/tcommsat/computer) -"bbW" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/break_room) -"bbX" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/break_room) -"bbY" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/break_room) -"bbZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"bca" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/obj/item/device/radio/off,/turf/simulated/floor/plasteel,/area/engine/break_room) -"bcb" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/aft) -"bcc" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) -"bcd" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/aft) -"bce" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"bcf" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/stock_parts/cell/high/plus,/turf/simulated/floor/plating,/area/storage/tech) -"bcg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plating,/area/storage/tech) -"bch" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/cloning{pixel_x = 0},/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,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bci" = (/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/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"bcj" = (/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/battle,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bck" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bcl" = (/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/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bcm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bcn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating,/area/storage/tech) -"bco" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/turf/simulated/floor/plating,/area/storage/tech) -"bcp" = (/turf/simulated/wall,/area/storage/art) -"bcq" = (/obj/structure/table/wood,/obj/item/weapon/stamp/law,/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/wood,/area/lawoffice) -"bcr" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Lawyer"},/turf/simulated/floor/wood,/area/lawoffice) -"bcs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/button/door{id = "lawyer_blast"; name = "Privacy Shutters"; pixel_x = 25; pixel_y = 8},/turf/simulated/floor/wood,/area/lawoffice) -"bct" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"bcu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"; req_access_txt = "42"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) -"bcv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"bcw" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fore) -"bcx" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint) -"bcy" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/stock_parts/micro_laser,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcA" = (/obj/structure/grille,/obj/item/weapon/shard,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcB" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcC" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint) -"bcE" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"bcG" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/chemistry) -"bcH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bcI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bcJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/mob/living/simple_animal/bot/cleanbot{name = "C.L.E.A.N."},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bcK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bcL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bcM" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/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/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) -"bcN" = (/obj/machinery/smartfridge/chemistry,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"bcO" = (/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) -"bcP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bcQ" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whitebot,/area/medical/medbay) -"bcR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bcS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bcT" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/checkpoint/medical) -"bcU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/checkpoint/medical) -"bcV" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/checkpoint/medical) -"bcW" = (/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5; tag = "every single paper bin is edited to this"},/turf/simulated/floor/plating,/area/medical/morgue) -"bcX" = (/obj/structure/filingcabinet,/obj/structure/cable/cyan{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bcY" = (/obj/structure/cable/cyan{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bcZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bda" = (/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/morgue) -"bdb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/port) -"bdc" = (/obj/machinery/door/airlock{id_tag = "AuxToilet2"; name = "Unit 2"},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"bdd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"bde" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"bdf" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdg" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdh" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdi" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdj" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdk" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdl" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bdm" = (/turf/simulated/floor/bluegrid{tag = "icon-darkyellowcorners (NORTH)"; name = "Mainframe Floor"; icon_state = "darkyellowcorners"; dir = 1; oxygen = 0; nitrogen = 100; temperature = 80},/area/tcommsat/server) -"bdn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 140; on = 1; pressure_checks = 0},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bdo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bdp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/tcommsat/computer) -"bdq" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 8; icon_state = "freezer"; on = 1; tag = "icon-freezer (EAST)"},/turf/simulated/floor/plasteel/yellow/side{dir = 9; icon_state = "yellow"; tag = ""},/area/tcommsat/computer) -"bdr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/tcommsat/computer) -"bds" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/tcommsat/computer) -"bdt" = (/obj/machinery/vending/cola,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/cafeteria,/area/engine/break_room) -"bdu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/break_room) -"bdv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bot,/area/engine/break_room) -"bdw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/break_room) -"bdx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) -"bdy" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Foyer Maintenance"; req_access_txt = "0"; req_one_access_txt = "32;19"},/turf/simulated/floor/plating,/area/engine/break_room) -"bdz" = (/obj/machinery/field/generator{anchored = 0; state = 2},/turf/simulated/floor/plating,/area/engine/engineering) -"bdA" = (/obj/machinery/the_singularitygen{anchored = 0},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Engineering Secure Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plating,/area/engine/engineering) -"bdB" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engine/engineering) -"bdC" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft) -"bdD" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"bdE" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"bdF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"bdG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/storage/tech) -"bdH" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) -"bdI" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/storage/tech) -"bdJ" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bdK" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/storage/art) -"bdL" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel,/area/storage/art) -"bdM" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (EAST)"; icon_state = "blackcorner"; dir = 4},/area/storage/art) -"bdN" = (/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bdO" = (/obj/structure/table/wood,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/small{dir = 8},/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/lawoffice) -"bdP" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/wood,/area/lawoffice) -"bdQ" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/item/weapon/folder/red,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/lawoffice) -"bdR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/wood,/area/lawoffice) -"bdS" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/lawoffice) -"bdT" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bdU" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bdV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bdW" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bdX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bdY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/transfer) -"bdZ" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fore) -"bea" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"beb" = (/obj/effect/spawner/structure/window,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bec" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bed" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/weapon/shard{icon_state = "small"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bee" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bef" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"beg" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/obj/machinery/camera{c_tag = "Medbay Chemistry"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bei" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bej" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (EAST)"; icon_state = "whiteyellow"; dir = 4},/area/medical/chemistry) -"bek" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plasteel/whiteyellow,/area/medical/chemistry) -"bel" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whiteyellow/side{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) -"bem" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"ben" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"beo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"bep" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"beq" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/checkpoint/medical) -"ber" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/effect/landmark/start/depsec/medical,/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/security/checkpoint/medical) -"bes" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Medical Post RC"; pixel_x = 30; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/checkpoint/medical) -"bet" = (/obj/effect/gibspawner/human,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/medical/morgue) -"beu" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bev" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bew" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bex" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bey" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bez" = (/obj/structure/closet/wardrobe/mixed,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"beA" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/plasteel/yellow/side{dir = 9; icon_state = "yellow"; nitrogen = 100; oxygen = 0; tag = "icon-yellow (NORTHWEST)"; temperature = 80},/area/tcommsat/server) -"beB" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor/plasteel/neutral/side{dir = 5; icon_state = "neutral"; nitrogen = 100; oxygen = 0; tag = "icon-neutral (NORTHEAST)"; temperature = 80},/area/tcommsat/server) -"beC" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"beD" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whiteblue"; nitrogen = 100; oxygen = 0; tag = "icon-whiteblue (NORTHWEST)"; temperature = 80},/area/tcommsat/server) -"beE" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitepurple"; nitrogen = 100; oxygen = 0; tag = "icon-whitehall (WEST)"; temperature = 80},/area/tcommsat/server) -"beF" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 8; icon_state = "freezer"; on = 1; tag = "icon-freezer (EAST)"},/turf/simulated/floor/plasteel/yellow/side{dir = 8; icon_state = "yellow"; nitrogen = 82.1472; oxygen = 21.8366; tag = ""; temperature = 293.15},/area/tcommsat/computer) -"beG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/tcommsat/computer) -"beH" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/tcommsat/computer) -"beI" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/cafeteria,/area/engine/break_room) -"beJ" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/break_room) -"beK" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/break_room) -"beL" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/break_room) -"beM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft) -"beN" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"beO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/aft) -"beP" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"beQ" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft) -"beR" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/secondary/entry) -"beS" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"beT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/entry) -"beU" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"beV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"beW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"beX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"beY" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"beZ" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/turf/simulated/floor/plating,/area/storage/tech) -"bfa" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/storage/tech) -"bfb" = (/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/item/weapon/circuitboard/teleporter,/obj/item/weapon/circuitboard/circuit_imprinter,/obj/item/weapon/circuitboard/mechfab,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"bfc" = (/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},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bfd" = (/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},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bfe" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bff" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bfg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bfh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plating,/area/storage/tech) -"bfi" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/storage/tech) -"bfj" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/art) -"bfk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/storage/art) -"bfl" = (/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/simulated/floor/plasteel,/area/storage/art) -"bfm" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/atmos_control) -"bfn" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/wood,/area/lawoffice) -"bfo" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/lawoffice) -"bfp" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"bfq" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/lawoffice) -"bfr" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bfs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bft" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bfu" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bfv" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bfw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bfx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"bfy" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bfz" = (/obj/item/weapon/rack_parts,/obj/item/weapon/vending_refill/coffee,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bfA" = (/obj/structure/grille,/obj/item/weapon/shard{icon_state = "medium"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bfB" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bfC" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"bfD" = (/obj/structure/rack,/obj/item/weapon/stock_parts/console_screen,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/wirecutters,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint) -"bfE" = (/obj/structure/rack,/obj/item/weapon/stock_parts/matter_bin,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint) -"bfF" = (/obj/structure/table/glass,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/weapon/screwdriver{pixel_x = -2; pixel_y = 6},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bfG" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bfH" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bfI" = (/obj/machinery/chem_heater,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel/white,/area/medical/chemistry) -"bfJ" = (/obj/machinery/chem_dispenser,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTHWEST)"; icon_state = "warnwhite"; dir = 9},/area/medical/chemistry) -"bfK" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTHEAST)"; icon_state = "warnwhite"; dir = 5},/area/medical/chemistry) -"bfL" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/whiteblue/corner,/area/medical/medbay) -"bfM" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bfN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bfO" = (/obj/structure/cable/cyan{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bfP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bfQ" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/whiteblue/side,/area/medical/medbay) -"bfR" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/whiteblue/corner{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) -"bfS" = (/obj/structure/table,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/checkpoint/medical) -"bfT" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -26; req_access_txt = "5"},/obj/structure/table,/obj/item/device/radio/off,/obj/machinery/camera{c_tag = "Medbay Security Post"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/darkred/side,/area/security/checkpoint/medical) -"bfU" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/filingcabinet,/obj/structure/cable,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/checkpoint/medical) -"bfV" = (/turf/simulated/floor/plating,/area/medical/morgue) -"bfW" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/simulated/floor/plasteel/darkblue/corner,/area/medical/morgue) -"bfX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkblue/side,/area/medical/morgue) -"bfY" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/medical/morgue) -"bfZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"bga" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 1; network = list("SS13")},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bgb" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bgc" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/plasteel/showroomfloor,/area/crew_quarters/locker/locker_toilet) -"bgd" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/locker) -"bge" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bgf" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/locker) -"bgg" = (/obj/structure/closet/wardrobe/green,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) -"bgh" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/plasteel/yellow/side{dir = 10; icon_state = "yellow"; nitrogen = 100; oxygen = 0; tag = "icon-yellow (SOUTHWEST)"; temperature = 80},/area/tcommsat/server) -"bgi" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/plasteel/neutral/side{dir = 6; icon_state = "neutral"; nitrogen = 100; oxygen = 0; tag = "icon-neutral (SOUTHEAST)"; temperature = 80},/area/tcommsat/server) -"bgj" = (/obj/machinery/light,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bgk" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteblue"; nitrogen = 100; oxygen = 0; tag = "icon-whiteblue (SOUTHWEST)"; temperature = 80},/area/tcommsat/server) -"bgl" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitepurple"; nitrogen = 100; oxygen = 0; tag = "icon-whitepurple (SOUTHEAST)"; temperature = 80},/area/tcommsat/server) -"bgm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/tcommsat/computer) -"bgn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 8; icon_state = "freezer"; on = 1; tag = "icon-freezer (EAST)"},/turf/simulated/floor/plasteel/yellow/side{dir = 10; icon_state = "yellow"; tag = ""},/area/tcommsat/computer) -"bgo" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/yellow/corner,/area/tcommsat/computer) -"bgp" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/engine/break_room) -"bgq" = (/turf/simulated/floor/plasteel/yellow/side,/area/engine/break_room) -"bgr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel/yellow/side,/area/engine/break_room) -"bgs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/engine/break_room) -"bgt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel,/area/engine/break_room) -"bgu" = (/obj/item/trash/sosjerky,/turf/simulated/floor/plating,/area/maintenance/aft) -"bgv" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/maintenance/aft) -"bgw" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bgx" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bgy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"bgz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/atmos_control) -"bgA" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bgB" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bgC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bgD" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/atmos_control) -"bgE" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bgF" = (/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,/turf/simulated/floor/plating,/area/storage/tech) -"bgG" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"bgH" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"bgI" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Technical Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plating,/area/storage/tech) -"bgJ" = (/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) -"bgK" = (/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) -"bgL" = (/obj/machinery/requests_console{department = "Tech Storage"; name = "Technical Storage RC"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating,/area/storage/tech) -"bgM" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plating,/area/storage/tech) -"bgN" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/green,/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating,/area/storage/tech) -"bgO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Art Supply Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/storage/art) -"bgP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/art) -"bgQ" = (/obj/structure/table,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/black/corner,/area/storage/art) -"bgR" = (/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bgS" = (/obj/structure/closet/wardrobe/pink,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bgT" = (/obj/structure/rack,/obj/item/weapon/storage/briefcase,/turf/simulated/floor/wood,/area/lawoffice) -"bgU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/lawoffice) -"bgV" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/lawoffice) -"bgW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bgX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bgY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bgZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner,/area/crew_quarters/courtroom) -"bha" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side,/area/crew_quarters/courtroom) -"bhb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/crew_quarters/courtroom) -"bhc" = (/obj/machinery/camera{c_tag = "Courtroom South"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"bhd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"bhe" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"bhf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"bhg" = (/turf/simulated/wall,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bhh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bhi" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bhj" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall,/area/medical/chemistry) -"bhk" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/medical/medbay) -"bhl" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/blue,/area/medical/medbay) -"bhm" = (/obj/machinery/door/firedoor,/obj/structure/cable/cyan{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/blue,/area/medical/medbay) -"bhn" = (/obj/machinery/door/firedoor,/obj/structure/cable/cyan{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/blue,/area/medical/medbay) -"bho" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall,/area/security/checkpoint/medical) -"bhp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkblue,/area/medical/morgue) -"bhq" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/port) -"bhr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bhs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/locker) -"bht" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/locker) -"bhu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/locker) -"bhv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/tcommsat/computer) -"bhw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"bhx" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/break_room) -"bhy" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/engine/break_room) -"bhz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access_txt = "32"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow,/area/engine/break_room) -"bhA" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/break_room) -"bhB" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) -"bhC" = (/turf/simulated/wall,/area/hallway/primary/central) -"bhD" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"bhE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"bhF" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/engine/engineering) -"bhG" = (/turf/simulated/wall,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bhH" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bhI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bhJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"bhK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/tech) -"bhL" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/art) -"bhM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Art Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/art) -"bhN" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/storage/art) -"bhO" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"bhP" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy door"},/turf/simulated/floor/plating,/area/lawoffice) -"bhQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/lawoffice) -"bhR" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy door"},/turf/simulated/floor/plating,/area/lawoffice) -"bhS" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"bhT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) -"bhU" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"bhV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/security/transfer) -"bhW" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bhX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"bhY" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"bhZ" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fore) -"bia" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bib" = (/obj/item/wallframe/light_fixture/small,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint) -"bic" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bid" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bie" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bif" = (/obj/structure/sign/directions{dir = 4; icon_state = "direction_supply"; name = "cargo bay"; pixel_y = 24; tag = "icon-direction_supply"},/obj/structure/sign/directions{dir = 4; icon_state = "direction_bridge"; name = "bridge"; pixel_y = 32; tag = "icon-direction_bridge"},/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 40; tag = "icon-direction_sec (EAST)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Primary Hallway West 3"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"big" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bih" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bii" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bij" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (EAST)"; icon_state = "bluecorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bik" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (EAST)"; icon_state = "bluecorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bil" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bim" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bin" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bio" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bip" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bir" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/blue/corner{tag = "icon-bluecorner (NORTH)"; icon_state = "bluecorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bis" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Primary Hallway West 1"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bit" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biu" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bix" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Port Hallway"; dir = 6; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biA" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biE" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biF" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biJ" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biK" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Port Hallway East 2"; network = list("SS13")},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"biQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"biR" = (/obj/structure/sign/directions/engineering{dir = 8; icon_state = "direction_eng"; pixel_x = -32; pixel_y = 24; tag = "icon-direction_eng (WEST)"},/obj/structure/sign/directions/medical{dir = 8; icon_state = "direction_med"; pixel_x = -32; pixel_y = 32; tag = "icon-direction_med (WEST)"},/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_x = -32; pixel_y = 40; tag = "icon-direction_evac (NORTH)"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"biS" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"biT" = (/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 32; tag = "icon-direction_sec (EAST)"},/obj/structure/sign/directions/science{pixel_x = 32; pixel_y = 24},/obj/structure/sign/directions{dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_x = 32; pixel_y = 40; tag = "icon-direction_bridge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"biU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"biV" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"biW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"biX" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"biY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"biZ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bja" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Fore Starboard Hallway West 1"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjg" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/yellow/side{dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bji" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjl" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjm" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 0; dir = 1; name = "Fore Starboard Hallway APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (NORTH)"; icon_state = "redcorner"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjr" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjs" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bju" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/red/side{tag = "icon-red (NORTH)"; icon_state = "red"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (NORTH)"; icon_state = "redcorner"; dir = 1},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bjB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/security/transfer) -"bjC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/transfer) -"bjD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fore) -"bjE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall/r_wall/rust,/area/security/transfer) -"bjF" = (/turf/simulated/wall/r_wall,/area/security/transfer) -"bjG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjH" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIW"; location = "QM"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjI" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjJ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjM" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjP" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjQ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjR" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjS" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjT" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjU" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjV" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjW" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjX" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjY" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bjZ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bka" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 18},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkb" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkc" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkd" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bke" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bkf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=QM"; location = "CHW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bkg" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/hologram/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "EVA2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bkh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers"; location = "EVA"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bki" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkj" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkk" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkl" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkm" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkn" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bko" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkq" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkr" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bks" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/bot,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkt" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA"; location = "Security"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bku" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkv" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bkw" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"bkx" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/transfer) -"bky" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/transfer) -"bkz" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fore) -"bkA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall/r_wall,/area/security/transfer) -"bkB" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/transfer) -"bkC" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/transfer) -"bkD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/obj/structure/closet/secure_closet/injection,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/transfer) -"bkE" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bkF" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint) -"bkG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkI" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/engineering{dir = 4; icon_state = "direction_eng"; pixel_x = 32; pixel_y = -32; tag = "icon-direction_eng (EAST)"},/obj/structure/sign/directions/science{pixel_x = 32; pixel_y = -40},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkK" = (/obj/machinery/light/small,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Fore Port Hallway West 2"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkR" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkS" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkY" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bkZ" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bla" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/corner,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/green/side,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/green/corner{dir = 8},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"ble" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 0; dir = 2; name = "Fore Port Hallway APC"; pixel_x = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bli" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/newscaster{hitstaken = 0; pixel_x = 0; pixel_y = -32; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bll" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Port Hallway East 1"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bln" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blo" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blq" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/corner,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/yellow/side,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bls" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (WEST)"; icon_state = "yellowcorner"; dir = 8},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Port Hallway East 3"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blu" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"blv" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"blw" = (/obj/structure/sign/directions{dir = 2; icon_state = "direction_supply"; name = "cargo bay"; pixel_x = -32; pixel_y = -32; tag = "icon-direction_supply"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"blx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bly" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"blz" = (/obj/machinery/door/firedoor,/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/plasteel,/area/hallway/primary/central) -"blA" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Fore Starboard Hallway West 2"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blI" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blL" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blN" = (/obj/machinery/airalarm{dir = 1; pixel_x = 32; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blP" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Fore Starboard Hallway"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blW" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Fore Starboard Hallway East 1"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"blZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/corner,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bma" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bmb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bmc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/hallway/secondary/entry) -"bme" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/security/transfer) -"bmf" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/transfer) -"bmg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall,/area/maintenance/fore) -"bmh" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"bmi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/wall/r_wall,/area/security/transfer) -"bmj" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/transfer) -"bmk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/darkred/side,/area/security/transfer) -"bml" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; layer = 2.4},/obj/machinery/door/window/southleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Additional Transfer Methods"; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/transfer) -"bmm" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/escape) -"bmn" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/escape) -"bmo" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/escape) -"bmp" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bmq" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Escape Waiting Area"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bmr" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Escape Waiting Area"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bms" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Escape Waiting Area"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bmt" = (/turf/simulated/wall,/area/library) -"bmu" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/library) -"bmv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/library) -"bmw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bmx" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bmy" = (/turf/simulated/wall,/area/storage/eva) -"bmz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/eva) -"bmA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/storage/eva) -"bmB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/eva) -"bmC" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bmD" = (/turf/simulated/wall,/area/hydroponics) -"bmE" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) -"bmF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/side{dir = 8},/area/hydroponics) -"bmG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{dir = 4},/area/hydroponics) -"bmH" = (/turf/simulated/wall,/area/crew_quarters/bar) -"bmI" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bmJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Bar"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bmK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Bar"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bmL" = (/obj/structure/sign/barsign,/turf/simulated/wall,/area/crew_quarters/bar) -"bmM" = (/turf/simulated/wall,/area/crew_quarters/theatre) -"bmN" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bmO" = (/turf/simulated/wall/r_wall,/area/engine/gravity_generator) -"bmP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/engine/gravity_generator) -"bmQ" = (/turf/simulated/floor/plasteel/yellow,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/warningline,/area/engine/gravity_generator) -"bmR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/gravity_generator) -"bmS" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bmT" = (/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bmU" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/port{name = "Fore Port Hallway"}) -"bmV" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bmW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Central Hallway North"; dir = 4; network = list("SS13")},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bmX" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bmY" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bmZ" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bna" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/turf/simulated/floor/plasteel/darkblue,/area/crew_quarters/heads) -"bnb" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bnc" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bnd" = (/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bne" = (/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bnf" = (/turf/simulated/wall,/area/security/detectives_office) -"bng" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/detectives_office) -"bnh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Detective"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/security/detectives_office) -"bni" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/detectives_office) -"bnj" = (/turf/simulated/wall/r_wall,/area/security/detectives_office) -"bnk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) -"bnl" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/security/brig) -"bnm" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/southleft{name = "Brig Desk"; req_access_txt = "1"},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bnn" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bno" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "briggate"; name = "security blast door"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) -"bnp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/brig) -"bnq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/brig) -"bnr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/transfer) -"bns" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = -25; pixel_y = 5},/obj/machinery/button/flasher{id = "executionflash"; pixel_x = -25; pixel_y = -5},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/transfer) -"bnt" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 1},/obj/item/device/taperecorder{pixel_x = -3; pixel_y = 0},/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bnu" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/transfer) -"bnv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/transfer) -"bnw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/transfer) -"bnx" = (/obj/machinery/flasher{id = "executionflash"; pixel_x = 0; pixel_y = 25},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bny" = (/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/transfer) -"bnz" = (/obj/machinery/door/poddoor{id = "executionspaceblast"; name = "blast door"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/security/transfer) -"bnA" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/escape) -"bnB" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/shuttle/escape) -"bnC" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bnD" = (/turf/simulated/wall,/area/hallway/secondary/exit) -"bnE" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bnF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bnG" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bnH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bnI" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) -"bnJ" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/library) -"bnK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/library) -"bnL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bnM" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/library) -"bnN" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/library) -"bnO" = (/obj/structure/table/wood,/obj/item/weapon/dice/d00,/obj/item/weapon/dice/d10,/turf/simulated/floor/wood,/area/library) -"bnP" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/stack/packageWrap,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/library) -"bnQ" = (/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/wood,/area/library) -"bnR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/wood,/area/library) -"bnS" = (/turf/simulated/floor/wood,/area/library) -"bnT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/library) -"bnU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bnV" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bnW" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fpmaint) -"bnX" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bnY" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bnZ" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel/warning{dir = 4},/area/storage/eva) -"boa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (EAST)"; icon_state = "blackcorner"; dir = 4},/area/storage/eva) -"bob" = (/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/storage/eva) -"boc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/storage/eva) -"bod" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/simulated/floor/plasteel/warning{dir = 8},/area/storage/eva) -"boe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fpmaint) -"bof" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bog" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/watertank,/obj/machinery/light/small{dir = 1},/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/plantbgone,/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"boh" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"boi" = (/obj/structure/sink{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/green,/area/hydroponics) -"boj" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/side{dir = 8},/area/hydroponics) -"bol" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{dir = 4},/area/hydroponics) -"bom" = (/obj/structure/sink{pixel_y = 24},/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/green,/area/hydroponics) -"bon" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"boo" = (/obj/structure/table,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/item/clothing/head/hardhat/cakehat,/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) -"bop" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"boq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bor" = (/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bos" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bot" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bou" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bov" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/piano,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bow" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/chair/stool,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"box" = (/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boy" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boz" = (/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/obj/machinery/camera{c_tag = "Theatre Stage"; dir = 2; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boB" = (/obj/machinery/vending/autodrobe,/obj/machinery/requests_console{department = "Theatre"; departmentType = 0; name = "Theatre RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boC" = (/obj/structure/table/wood,/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boD" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/item/weapon/storage/crayons,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"boF" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boG" = (/obj/structure/cable/yellow{tag = "icon-0-6"; icon_state = "0-6"; d1 = 4; d2 = 8},/obj/machinery/power/smes{charge = 5e+006},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"boH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/turf/simulated/floor/plasteel/yellow,/area/engine/gravity_generator) -"boI" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"boJ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boK" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boL" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boM" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boO" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"boP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"boQ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"boR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"boS" = (/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = -4; pixel_y = 25; req_access_txt = "28"},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 6; pixel_y = 25; req_access_txt = "28"},/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 6; pixel_y = 36},/obj/machinery/pdapainter,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"boT" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/crew_quarters/heads) -"boU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/crew_quarters/heads) -"boV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/obj/machinery/photocopier,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/crew_quarters/heads) -"boW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"boX" = (/obj/structure/rack,/obj/item/device/assembly/mousetrap,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"boY" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"boZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpb" = (/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpc" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpd" = (/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpe" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bpf" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/fore{name = "Fore Starboard Hallway"}) -"bpg" = (/turf/simulated/floor/plasteel/grimy,/area/security/detectives_office) -"bph" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/grimy,/area/security/detectives_office) -"bpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/grimy,/area/security/detectives_office) -"bpj" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Detective's Office"; network = list("SS13")},/turf/simulated/floor/plasteel/grimy,/area/security/detectives_office) -"bpk" = (/obj/structure/filingcabinet,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bpl" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bpm" = (/obj/machinery/computer/med_data,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bpn" = (/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/security/brig) -"bpo" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/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"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/security/brig) -"bpp" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/brig) -"bpq" = (/turf/simulated/wall,/area/security/brig) -"bpr" = (/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/security/brig) -"bps" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/brig) -"bpt" = (/obj/machinery/button/door{id = "briggate"; name = "Desk Shutters"; pixel_x = -26; pixel_y = 6; req_access_txt = "0"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -28; pixel_y = -8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/brig) -"bpu" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/brig) -"bpv" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/window/eastleft{name = "Brig Desk"; req_access_txt = "1"},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bpw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/brig) -"bpx" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Brig Desk"; dir = 8; network = list("SS13","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/brig) -"bpy" = (/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/security/brig) -"bpz" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/brig) -"bpA" = (/obj/machinery/flasher{id = "Cell 4"; pixel_x = -28},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/security/brig) -"bpB" = (/obj/structure/closet/secure_closet/brig{id = "Cell 4"; name = "Cell 4 Locker"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/security/brig) -"bpC" = (/turf/simulated/wall,/area/security/transfer) -"bpD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpF" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/transfer) -"bpI" = (/obj/structure/rack,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/tank/internals/anesthetic{pixel_x = -3; pixel_y = 1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 3},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = -25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = -25; pixel_y = 5; req_access_txt = "7"},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpJ" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpL" = (/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/window/westright{dir = 8; name = "Transfer Room"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpM" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpN" = (/obj/structure/bed,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel/darkred,/area/security/transfer) -"bpO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bpP" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/escape) -"bpQ" = (/obj/machinery/sleeper{dir = 4; icon_state = "sleeper-open"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bpR" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bpS" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bpT" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) -"bpU" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"bpV" = (/obj/structure/closet,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"bpW" = (/turf/simulated/floor/plasteel/delivery,/area/hallway/secondary/exit) -"bpX" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/delivery,/area/hallway/secondary/exit) -"bpY" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/camera{c_tag = "Escape Cargo Storage"; network = list("SS13")},/turf/simulated/floor/plasteel/delivery,/area/hallway/secondary/exit) -"bpZ" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/hallway/secondary/exit) -"bqa" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bqb" = (/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_x = -32; pixel_y = 32; tag = "icon-direction_evac (NORTH)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bqc" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bqd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/secondary/exit) -"bqe" = (/obj/structure/chair/comfy/black{tag = "icon-comfychair (NORTH)"; icon_state = "comfychair"; dir = 1},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/camera{c_tag = "Library North"; dir = 4; network = list("SS13")},/turf/simulated/floor/wood,/area/library) -"bqf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/wood,/area/library) -"bqg" = (/turf/simulated/floor/carpet,/area/library) -"bqh" = (/obj/structure/chair/office/dark,/turf/simulated/floor/carpet,/area/library) -"bqi" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/library) -"bqj" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/library) -"bqk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bql" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bqm" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bqn" = (/obj/structure/closet/cardboard,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bqo" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/warning{dir = 4},/area/storage/eva) -"bqp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/storage/eva) -"bqq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/storage/eva) -"bqr" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/camera{c_tag = "EVA Storage"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/warning{dir = 8},/area/storage/eva) -"bqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bqt" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/clothing/tie/armband/hydro,/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bqu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bqv" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/hydroponics) -"bqw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/hydroponics) -"bqx" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) -"bqy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) -"bqz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) -"bqA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTH)"; icon_state = "green"; dir = 1},/area/hydroponics) -"bqB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/hydroponics) -"bqC" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"bqD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"bqE" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bqF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bqG" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bqH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bqI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/window{dir = 8; name = "Theatre Stage"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Theatre Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqQ" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bqR" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bqS" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"bqT" = (/obj/structure/cable/yellow{tag = "icon-6-9"; icon_state = "6-9"; d1 = 4; d2 = 8},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/engine/gravity_generator) -"bqU" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/gravity_generator) -"bqV" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/engine/gravity_generator) -"bqW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/chair/office/dark{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"bqX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bqY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bqZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint2) -"bra" = (/obj/item/weapon/stock_parts/cell/crap/empty,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"brb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"brc" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint2) -"brd" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bre" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/area/hallway/primary/central) -"brf" = (/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/delivery,/area/hallway/primary/central) -"brg" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 4; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access = null; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; layer = 2.9; name = "Privacy Shutters"},/obj/machinery/flasher{id = "hopflash"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"brh" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bri" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"brj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"brk" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"brl" = (/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"brm" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brn" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bro" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brp" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brq" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brr" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brs" = (/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/bridge/meeting_room{name = "Bridge Storage"}) -"brt" = (/turf/simulated/wall,/area/maintenance/maintcentral) -"bru" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv{density = 0; pixel_x = 3; pixel_y = 2},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/security/detectives_office) -"brv" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/carpet,/area/security/detectives_office) -"brw" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/carpet,/area/security/detectives_office) -"brx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/security/detectives_office) -"bry" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/security/detectives_office) -"brz" = (/obj/structure/chair/office/dark{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) -"brA" = (/obj/machinery/computer/secure_data,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet,/area/security/detectives_office) -"brB" = (/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/turf/simulated/floor/plasteel/red/corner,/area/security/brig) -"brC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/red/side,/area/security/brig) -"brD" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Cell 1"; dir = 8; network = list("SS13","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/security/brig) -"brE" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Cell 2"; dir = 8; network = list("SS13","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/security/brig) -"brF" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -26; pixel_y = 5; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -26; pixel_y = -5; req_access_txt = "63"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/brig) -"brG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/brig) -"brH" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastright{name = "Brig Desk"; req_access_txt = "2"},/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel/black,/area/security/brig) -"brI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/brig) -"brJ" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/brig) -"brK" = (/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/red/corner,/area/security/brig) -"brL" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Cell 3"; dir = 8; network = list("SS13","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/security/brig) -"brM" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Cell 4"; dir = 8; network = list("SS13","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/security/brig) -"brN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{desc = "A small wall mounted cabinet designed to hold a fire extinguisher. Excellent for extinguishing prisoners and or life."; pixel_x = -27; pixel_y = 0; tag = "wsecjoke"},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"brO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/transfer) -"brP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"brQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkred/side{dir = 8},/area/security/transfer) -"brR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 0; icon_state = "closed"; id_tag = null; locked = 0; name = "Prisoner Transfer Centre"; req_access = null; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"brS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/transfer) -"brT" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"brU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/darkred/corner,/area/security/transfer) -"brV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/transfer) -"brW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/transfer) -"brX" = (/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = 0; pixel_y = -25},/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"brY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner,/area/security/transfer) -"brZ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bsa" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"bsb" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/hallway/secondary/exit) -"bsc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bse" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsg" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/hallway/secondary/exit) -"bsh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Escape Storage"; req_one_access_txt = "50"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsi" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{dir = 8},/area/hallway/secondary/exit) -"bsj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsl" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bsn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bso" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bsp" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/carpet,/area/library) -"bsq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bsr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/carpet,/area/library) -"bss" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library Game Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bst" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bsu" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"bsv" = (/obj/structure/table/wood,/obj/item/weapon/dice/d4,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/carpet,/area/library) -"bsw" = (/obj/structure/chair/office/dark{dir = 8},/turf/simulated/floor/carpet,/area/library) -"bsx" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/library) -"bsy" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bsz" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bsA" = (/obj/structure/cable/green{tag = "icon-1-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/plating,/area/maintenance/fpmaint) -"bsB" = (/turf/simulated/wall/rust,/area/maintenance/fpmaint) -"bsC" = (/turf/simulated/wall,/area/maintenance/fpmaint) -"bsD" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/warning{dir = 4},/area/storage/eva) -"bsE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/eva) -"bsF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/eva) -"bsG" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/warning{dir = 8},/area/storage/eva) -"bsH" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Hydroponics"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/hydroponics) -"bsI" = (/turf/simulated/floor/plasteel/delivery,/area/hydroponics) -"bsJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bsK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bsL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bsM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) -"bsN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) -"bsO" = (/obj/effect/landmark/start{name = "Botanist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) -"bsP" = (/obj/machinery/biogenerator,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHWEST)"; icon_state = "green"; dir = 9},/area/hydroponics) -"bsQ" = (/obj/machinery/seed_extractor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (NORTHEAST)"; icon_state = "green"; dir = 5},/area/hydroponics) -"bsR" = (/turf/simulated/floor/plasteel,/area/hydroponics) -"bsS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) -"bsT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bsU" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bsV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bsW" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bsX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bsY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bsZ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bta" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/theatre) -"btb" = (/obj/structure/dresser,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"btc" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/reagent_containers/food/snacks/baguette,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"btd" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Theatre Backstage"; dir = 1; network = list("SS13")},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"bte" = (/obj/structure/mirror{pixel_y = -32},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"btf" = (/obj/structure/dresser,/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"btg" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bth" = (/obj/structure/closet/radiation,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warning,/area/engine/gravity_generator) -"bti" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/warning,/area/engine/gravity_generator) -"btj" = (/obj/structure/cable/yellow{tag = "icon-2-9"; icon_state = "2-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-8-9"; icon_state = "8-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/warning,/area/engine/gravity_generator) -"btk" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/warning,/area/engine/gravity_generator) -"btl" = (/obj/structure/closet/radiation,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warning,/area/engine/gravity_generator) -"btm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"btn" = (/turf/simulated/wall,/area/maintenance/fsmaint2) -"bto" = (/obj/machinery/photocopier,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"btp" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"btq" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/hallway/primary/central) -"btr" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/primary/central) -"bts" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; layer = 2.9; name = "Privacy Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) -"btt" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/computer/card,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"btu" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/crew_quarters/heads) -"btv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"btw" = (/obj/structure/bed/dogbed{anchored = 0; desc = "Ian's bed! Looks comfy."; name = "Ian's bed"},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Head of Personnel's Office"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0; start_active = 1},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"btx" = (/turf/simulated/wall/r_wall/rust,/area/maintenance/maintcentral) -"bty" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/maintenance/maintcentral) -"btz" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room{name = "Bridge Storage"}) -"btA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/bridge/meeting_room{name = "Bridge Storage"}) -"btB" = (/obj/structure/plasticflaps/mining{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; dir = 2; freq = 1400; location = "Bridge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/bridge/meeting_room{name = "Bridge Storage"}) -"btC" = (/turf/simulated/wall/r_wall,/area/bridge) -"btD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) -"btE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/ai_status_display{layer = 3.3},/turf/simulated/floor/plating,/area/bridge) -"btF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/status_display{layer = 3.3},/turf/simulated/floor/plating,/area/bridge) -"btG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/bridge) -"btH" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/requests_console{department = "Detective's Office"; name = "Detective's Office RC"; pixel_x = -30; pixel_y = 0},/obj/effect/landmark/start{name = "Detective"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/carpet,/area/security/detectives_office) -"btI" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet,/area/security/detectives_office) -"btJ" = (/obj/structure/closet/secure_closet/detective,/obj/machinery/newscaster{hitstaken = 0; pixel_x = 0; pixel_y = -32; tag = "s"},/turf/simulated/floor/carpet,/area/security/detectives_office) -"btK" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -26},/obj/item/device/camera/detective,/obj/item/device/taperecorder{pixel_y = 0},/turf/simulated/floor/carpet,/area/security/detectives_office) -"btL" = (/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/turf/simulated/floor/carpet,/area/security/detectives_office) -"btM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/security/brig) -"btN" = (/obj/machinery/door/window/brigdoor{dir = 1; id = "Cell 1"; name = "Cell 1"; req_access_txt = "2"},/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"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"btO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/brig) -"btP" = (/obj/machinery/door/window/brigdoor{dir = 1; id = "Cell 2"; name = "Cell 2"; req_access_txt = "2"},/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"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"btQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Desk"; req_access_txt = "1"},/turf/simulated/floor/plasteel/black,/area/security/brig) -"btR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) -"btS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/brig) -"btT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/brig) -"btU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/brig) -"btV" = (/obj/machinery/door/window/brigdoor{dir = 1; id = "Cell 3"; name = "Cell 3"; req_access_txt = "2"},/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"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"btW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig) -"btX" = (/obj/machinery/door/window/brigdoor{dir = 1; id = "Cell 4"; name = "Cell 4"; req_access_txt = "2"},/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"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"btY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"btZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bua" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bub" = (/turf/simulated/wall/r_wall/rust,/area/security/transfer) -"buc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/security/transfer) -"bud" = (/turf/simulated/wall/r_wall,/area/security/prison) -"bue" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"buf" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/simulated/floor/plating,/area/shuttle/escape) -"bug" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"buh" = (/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bui" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/obj/structure/cable/green{tag = "icon-1-6"; icon_state = "1-6"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"buj" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/hallway/secondary/exit) -"buk" = (/turf/simulated/floor/plasteel/brown,/area/hallway/secondary/exit) -"bul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brown,/area/hallway/secondary/exit) -"bum" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/hallway/secondary/exit) -"bun" = (/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/hallway/secondary/exit) -"buo" = (/obj/structure/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/hallway/secondary/exit) -"bup" = (/obj/machinery/newscaster{hitstaken = 0; pixel_x = -32; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/hallway/secondary/exit) -"buq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bur" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bus" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"but" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"buu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"buv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"buw" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bux" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/carpet,/area/library) -"buy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library Game Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"buz" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"buA" = (/obj/structure/table/wood,/obj/item/weapon/dice/d12,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"buB" = (/obj/structure/table/wood,/obj/item/weapon/dice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/library) -"buC" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/library) -"buD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"buE" = (/obj/item/weapon/poster/legit,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"buF" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"buG" = (/obj/structure/table,/obj/item/device/radio/off{pixel_x = -4},/obj/item/device/radio/off{pixel_x = -4},/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plasteel/warning{dir = 4},/area/storage/eva) -"buH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black/corner,/area/storage/eva) -"buI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/storage/eva) -"buJ" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/obj/item/device/multitool,/turf/simulated/floor/plasteel/warning{dir = 8},/area/storage/eva) -"buK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"buL" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"buM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"buN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"buO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"buP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/hydroponics) -"buQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hydroponics) -"buR" = (/obj/machinery/vending/hydronutrients,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/hydroponics) -"buS" = (/obj/machinery/vending/hydroseeds,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/hydroponics) -"buT" = (/obj/effect/landmark/start{name = "Botanist"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/hydroponics) -"buU" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"buV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"buW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"buX" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"buY" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"buZ" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bva" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bvb" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bvc" = (/obj/structure/table,/obj/item/weapon/kitchen/fork,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bvd" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bve" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bvf" = (/obj/structure/window/reinforced,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bvg" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bvh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) -"bvi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/engine/gravity_generator) -"bvj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Gravity Generator"; req_access_txt = "11"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel/black,/area/engine/gravity_generator) -"bvk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/engine/gravity_generator) -"bvl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) -"bvm" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bvn" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bvo" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bvp" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bvq" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); name = "random sheet material spawner"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bvr" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bvs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/firecloset/full,/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bvt" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bvu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bvv" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bvw" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bvx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) -"bvy" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bvz" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bvA" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bvB" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bvC" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bvD" = (/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bvE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Bridge North"; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) -"bvF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/black,/area/bridge) -"bvG" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/bodybag,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/detectives_office) -"bvH" = (/obj/machinery/door/window{dir = 1; name = "glass door"; pixel_y = 0; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/detectives_office) -"bvI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/brig) -"bvJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bvK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/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"},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/brig) -"bvL" = (/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/brig) -"bvN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bvO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/brig) -"bvP" = (/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{sortType = 7},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; sortType = 8; tag = "icon-pipe-j1s (NORTH)"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvU" = (/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/brig) -"bvW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bvX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/brig) -"bvY" = (/obj/machinery/door_timer{id = "Cell 4"; name = "Cell 4"; pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bvZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/brig) -"bwa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bwb" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/brig) -"bwc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side,/area/security/transfer) -"bwd" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/clothing/head/helmet,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/device/electropack,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/prison) -"bwe" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/prison) -"bwf" = (/turf/simulated/wall,/area/security/prison) -"bwg" = (/obj/structure/bed,/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 25; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/camera{c_tag = "Prison Cell 3"; dir = 4; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwh" = (/obj/machinery/button/door{id = "permabolt3"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwi" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/sustenance{desc = "A Nutri-vend brand vending machine which vends food, as required by section 47-C of the NT's Prisoner Ethical Treatment Agreement."; name = "\improper Nutri-vend"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwk" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwl" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwm" = (/obj/machinery/hydroponics/soil,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bwo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/prison) -"bwp" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/escape) -"bwq" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Infirmary"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bwr" = (/obj/machinery/status_display,/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/escape) -"bws" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) -"bwt" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Cargo"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bwu" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/escape) -"bwv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bww" = (/obj/effect/spawner/structure/window/reinforced,/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/floor/plating,/area/hallway/secondary/exit) -"bwx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Escape Storage"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brown,/area/hallway/secondary/exit) -"bwy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bwz" = (/obj/machinery/ai_status_display,/turf/simulated/wall,/area/hallway/secondary/exit) -"bwA" = (/turf/simulated/floor/plasteel/escape/corner{tag = "icon-escapecorner (WEST)"; icon_state = "escapecorner"; dir = 8},/area/hallway/secondary/exit) -"bwB" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/obj/machinery/camera{c_tag = "Escape East 1"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/exit) -"bwC" = (/obj/structure/bookcase/random/religion,/turf/simulated/floor/wood,/area/library) -"bwD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/wood,/area/library) -"bwE" = (/obj/structure/chair/office/dark{dir = 1},/turf/simulated/floor/carpet,/area/library) -"bwF" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bwG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fpmaint) -"bwH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bwI" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bwJ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bwK" = (/obj/machinery/constructable_frame/machine_frame,/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bwL" = (/turf/simulated/wall/r_wall,/area/storage/eva) -"bwM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/turf/simulated/floor/plasteel,/area/storage/eva) -"bwN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bwO" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/clothing/tie/armband/hydro,/obj/machinery/camera{c_tag = "Hydroponics West"; dir = 4; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bwP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"bwQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/hydroponics) -"bwR" = (/turf/simulated/floor/plasteel/green/side,/area/hydroponics) -"bwS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/green/side,/area/hydroponics) -"bwT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green/side,/area/hydroponics) -"bwU" = (/turf/simulated/floor/plasteel/green/side{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/hydroponics) -"bwV" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bwW" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/kitchen/fork,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bwX" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bwY" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bwZ" = (/obj/structure/table,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bxa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bxb" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/crew_quarters/theatre) -"bxc" = (/obj/item/weapon/vending_refill/autodrobe,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bxd" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint2) -"bxe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkwarning/corner,/area/engine/gravity_generator) -"bxf" = (/turf/simulated/floor/plasteel/darkwarning,/area/engine/gravity_generator) -"bxg" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/simulated/floor/plasteel/darkwarning,/area/engine/gravity_generator) -"bxh" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/darkwarning,/area/engine/gravity_generator) -"bxi" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (NORTH)"; icon_state = "warndarkcorners"; dir = 1},/area/engine/gravity_generator) -"bxj" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bxk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/white{d2 = 2; icon_state = "0-2"; tag = "icon-0-2"},/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"bxl" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bxm" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bxn" = (/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/central) -"bxo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/central) -"bxp" = (/obj/machinery/computer/cargo,/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bxq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bxr" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bxs" = (/obj/structure/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bxt" = (/obj/structure/table,/obj/machinery/recharger,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bxu" = (/obj/item/device/firing_pin/clown/ultra{desc = "Advanced clowntech that can convert any firearm into a far more useful object, at least, in theory."; force_replace = 0},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bxv" = (/obj/item/weapon/paper/crumpled{info = "The fifth and sixth straddle the core..."},/obj/structure/cable/blue,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bxw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Bridge Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bxx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (WEST)"; icon_state = "warndarkcorners"; dir = 8},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bxy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bxz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (EAST)"; icon_state = "warndarkcorners"; dir = 4},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bxA" = (/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bxB" = (/obj/machinery/door/airlock/command{name = "Bridge Storage"; req_access = null; req_access_txt = "19"},/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bxC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) -"bxD" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (NORTHWEST)"; icon_state = "darkyellow"; dir = 9},/area/bridge) -"bxE" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/obj/structure/cable/blue,/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (NORTH)"; icon_state = "darkyellow"; dir = 1},/area/bridge) -"bxF" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel/darkyellow/side{tag = "icon-darkyellow (NORTHEAST)"; icon_state = "darkyellow"; dir = 5},/area/bridge) -"bxG" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/multitool,/turf/simulated/floor/plasteel/black,/area/bridge) -"bxH" = (/obj/structure/table/reinforced,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/recharger,/turf/simulated/floor/plasteel/black,/area/bridge) -"bxI" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/bridge) -"bxJ" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/bridge) -"bxK" = (/obj/machinery/computer/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/bridge) -"bxL" = (/obj/structure/table/reinforced,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plasteel/black,/area/bridge) -"bxM" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bxN" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/detectives_office) -"bxO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/detectives_office) -"bxP" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/item/weapon/paper/crumpled{info = "The fourth follows those fit to command..."},/obj/item/weapon/grenade/chem_grenade/colorful{desc = "Perfect for making the brig a bit less intimidating."},/obj/item/weapon/screwdriver{desc = "A screwdriver with an ultra thin tip."},/turf/simulated/floor/plating,/area/security/brig) -"bxQ" = (/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The three is slightly darker than the other numbers."; tag = "three"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/security/brig) -"bxR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bxS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner,/area/security/brig) -"bxT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side,/area/security/brig) -"bxU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/brig) -"bxV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bxW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bxX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner,/area/security/brig) -"bxY" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/darkred/side,/area/security/brig) -"bxZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/brig) -"bya" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/security/brig) -"byb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/brig) -"byc" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) -"byd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bye" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/black,/area/security/prison) -"byf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/prison) -"byg" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"byh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byj" = (/obj/machinery/door/poddoor/preopen{id = "permacell3"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byk" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bym" = (/obj/machinery/hydroponics/soil,/obj/item/weapon/cultivator,/obj/item/seeds/tower/steel,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byn" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/potato,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byo" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/coffee/robusta,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"byq" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"byr" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bys" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"byt" = (/obj/machinery/camera/emp_proof{c_tag = "Containment Southwest"; dir = 5; icon_state = "camera"; network = list("Singularity"); tag = "icon-camera (NORTHEAST)"},/obj/structure/cable/green{tag = "icon-2-9"; icon_state = "2-9"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"byu" = (/turf/simulated/floor/plasteel/escape{tag = "icon-escape (NORTHWEST)"; icon_state = "escape"; dir = 9},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/hallway/secondary/exit) -"byv" = (/turf/simulated/floor/plasteel/escape{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/hallway/secondary/exit) -"byw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/escape{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/hallway/secondary/exit) -"byx" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/escape{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/hallway/secondary/exit) -"byy" = (/obj/structure/chair,/turf/simulated/floor/plasteel{tag = "icon-escape (NORTH)"; icon_state = "escape"; dir = 1},/area/hallway/secondary/exit) -"byz" = (/obj/structure/chair,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 5},/area/hallway/secondary/exit) -"byA" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"byB" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/hallway/secondary/exit) -"byC" = (/obj/machinery/vending/cola,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"byD" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/library) -"byE" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) -"byF" = (/obj/structure/table/wood,/obj/item/weapon/dice/d20,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/library) -"byG" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "Library Game Room"; dir = 1; network = list("SS13")},/turf/simulated/floor/wood,/area/library) -"byH" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/library) -"byI" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"byJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/eva) -"byK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/storage/eva) -"byL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/eva) -"byM" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/storage/eva) -"byN" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hydroponics) -"byO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light/small,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/hydrofloor,/area/hydroponics) -"byP" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/hydroponics) -"byQ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/green,/area/hydroponics) -"byR" = (/obj/machinery/hydroponics/constructable,/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; name = "Hydroponics RC"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"byS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitecorner"},/area/hydroponics) -"byT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitecorner"},/area/hydroponics) -"byU" = (/obj/machinery/hydroponics/constructable,/obj/machinery/camera{c_tag = "Hydroponics"; dir = 1; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"byV" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/black,/area/hydroponics) -"byW" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/green,/area/hydroponics) -"byX" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"byY" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"byZ" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bza" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bzb" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bzc" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bzd" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bze" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bzf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bzg" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bzh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/gravity_generator) -"bzi" = (/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/engine/gravity_generator) -"bzj" = (/turf/simulated/floor/plasteel/black,/area/engine/gravity_generator) -"bzk" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/engine/gravity_generator) -"bzl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Engineering Gravity Generator Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/engine/gravity_generator) -"bzm" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bzn" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/obj/structure/table,/obj/item/weapon/aiModule/supplied/protectStation,/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/turret_protected/ai_upload) -"bzo" = (/obj/machinery/computer/upload/ai,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bzp" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/obj/structure/table,/obj/item/weapon/aiModule/core/full/corp,/obj/structure/cable/white{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/turret_protected/ai_upload) -"bzq" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/structure/cable/white{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bzr" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/space,/area/space/nearstation) -"bzs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice,/turf/space,/area/space/nearstation) -"bzt" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/space,/area/space/nearstation) -"bzu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bzv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/central) -"bzw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/central) -"bzx" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (EAST)"; icon_state = "loadingarea"; dir = 4},/area/hallway/primary/central) -"bzy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/crew_quarters/heads) -"bzz" = (/obj/structure/closet/secure_closet/hop,/obj/item/weapon/bedsheet/hop,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bzA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/crew_quarters/heads) -"bzB" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/crew_quarters/heads) -"bzC" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/obj/machinery/newscaster{hitstaken = 0; pixel_x = 0; pixel_y = -32; tag = "s"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/crew_quarters/heads) -"bzD" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/black,/area/crew_quarters/heads) -"bzE" = (/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The four is slightly darker than the other numbers."; tag = "four"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/maintcentral) -"bzF" = (/obj/item/weapon/ore/bluespace_crystal,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bzG" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bzH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bzI" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bzJ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/bridge/meeting_room{name = "Bridge Storage"}) -"bzK" = (/obj/machinery/photocopier,/turf/simulated/floor/plasteel/black,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bzL" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = -30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) -"bzM" = (/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (NORTH)"; icon_state = "darkyellowcorners"; dir = 1},/area/bridge) -"bzN" = (/obj/structure/chair{dir = 1; name = "Engineering Station"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bzO" = (/turf/simulated/floor/plasteel/darkyellow/corner{tag = "icon-darkyellowcorners (EAST)"; icon_state = "darkyellowcorners"; dir = 4},/area/bridge) -"bzP" = (/turf/simulated/floor/plasteel/black,/area/bridge) -"bzQ" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bzR" = (/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/bridge) -"bzS" = (/obj/structure/chair{dir = 1; name = "Security Station"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bzT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/bridge) -"bzU" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bzV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) -"bzW" = (/turf/simulated/wall/r_wall,/area/security/main) -"bzX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/wall,/area/security/main) -"bzY" = (/turf/simulated/wall,/area/security/main) -"bzZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/sign/securearea{pixel_x = -32},/turf/simulated/floor/plating,/area/security/main) -"bAa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/main) -"bAb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred,/area/security/main) -"bAc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/main) -"bAd" = (/turf/simulated/wall,/area/security/warden) -"bAe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/warden) -"bAf" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 2; name = "Armory Desk"; req_access_txt = "3"},/obj/structure/disposalpipe/segment,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/darkred,/area/security/warden) -"bAg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Briefing Room"; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred,/area/security/brig) -"bAh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/brig) -"bAi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bAj" = (/obj/machinery/button/door{id = "permacell3"; name = "Cell 3 Lockdown"; pixel_x = 25; pixel_y = 4; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 3"; pixel_x = 24; pixel_y = -6},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bAk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/prison) -"bAl" = (/obj/structure/table,/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bAm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bAn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bAo" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bAp" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bAq" = (/obj/structure/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bAr" = (/obj/structure/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bAs" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bAt" = (/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) -"bAu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bAv" = (/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 4},/area/hallway/secondary/exit) -"bAw" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bAx" = (/obj/structure/bookcase/random/fiction,/turf/simulated/floor/wood,/area/library) -"bAy" = (/obj/structure/bookcase/random/reference,/turf/simulated/floor/wood,/area/library) -"bAz" = (/obj/structure/disposalpipe/segment,/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bAA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bAB" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/obj/machinery/requests_console{department = "EVA"; name = "EVA RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/eva) -"bAC" = (/turf/simulated/floor/plasteel,/area/storage/eva) -"bAD" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/bot,/area/storage/eva) -"bAE" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/warning{dir = 8},/area/storage/eva) -"bAF" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bAG" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"bAH" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/window/eastleft{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bAI" = (/obj/machinery/smartfridge,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bAJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Bar West"; dir = 4; icon_state = "camera"; network = list("SS13"); tag = ""},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bAK" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bAL" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Bar East"; dir = 8; icon_state = "camera"; network = list("SS13"); tag = ""},/mob/living/carbon/monkey/punpun,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bAM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/gravity_generator) -"bAN" = (/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/engine/gravity_generator) -"bAO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/engine/gravity_generator) -"bAP" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 1; layer = 3.2},/obj/item/weapon/aiModule/supplied/quarantine,/obj/item/weapon/aiModule/core/full/antimov,/obj/item/weapon/aiModule/reset/purge,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/item/weapon/aiModule/supplied/oxygen,/obj/structure/window/reinforced,/obj/machinery/door/window{base_state = "left"; dir = 4; icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/turret_protected/ai_upload) -"bAQ" = (/obj/structure/sign/kiddieplaque{pixel_x = -32; pixel_y = 32},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bAR" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/turret_protected/ai_upload) -"bAS" = (/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bAT" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/turret_protected/ai_upload) -"bAU" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bAV" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/cable/white{d2 = 2; icon_state = "0-2"; tag = "icon-0-2"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/camera/motion{c_tag = "AI Upload Motion Sensor"; network = list("Sat")},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"bAW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/white{d2 = 2; icon_state = "0-2"; tag = "icon-0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"bAX" = (/turf/simulated/wall,/area/turret_protected/ai_upload_foyer) -"bAY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/turret_protected/ai_upload_foyer) -"bAZ" = (/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Central Hallway"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBa" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBb" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) -"bBc" = (/turf/simulated/wall/r_wall,/area/hallway/primary/central) -"bBd" = (/turf/simulated/wall,/area/crew_quarters/heads) -"bBe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/heads) -"bBf" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkblue,/area/crew_quarters/heads) -"bBg" = (/turf/simulated/wall/r_wall,/area/maintenance/maintcentral) -"bBh" = (/turf/simulated/wall,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bBi" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Bridge Storage"; req_access = null; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkblue,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bBj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/bridge/meeting_room{name = "Bridge Storage"}) -"bBk" = (/obj/structure/fireaxecabinet{pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/bridge) -"bBl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) -"bBm" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bBn" = (/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/main) -"bBo" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Interrogation"; network = list("SS13","Brig")},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/main) -"bBp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/main) -"bBq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/obj/machinery/camera{c_tag = "Security Break Room"; dir = 4; network = list("SS13","Brig")},/obj/structure/closet/wardrobe/red,/turf/simulated/floor/plasteel/black,/area/security/main) -"bBr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/main) -"bBs" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/main) -"bBt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/main) -"bBu" = (/obj/structure/closet/wardrobe/red,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bBv" = (/obj/machinery/disposal/bin,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/disposalpipe/trunk,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bBw" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/recharger,/turf/simulated/floor/plasteel/black,/area/security/warden) -"bBx" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bBy" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/computer/security/telescreen{desc = "Used for watching the Brig."; name = "Brig Monitor"; network = list("Prison","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/warden) -"bBz" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/button/door{id = "Secure Gate"; name = "Cell Shutters"; pixel_x = 27; pixel_y = -2; req_access_txt = "0"},/obj/machinery/button/door{id = "Prison Gate"; name = "Prison Wing Lockdown"; pixel_x = 27; pixel_y = 8; req_access_txt = "2"},/obj/effect/landmark/start{name = "Warden"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/warden) -"bBA" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{dir = 8},/area/security/warden) -"bBB" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/item/weapon/book/manual/wiki/security_space_law{pixel_y = 4},/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel/black,/area/security/warden) -"bBC" = (/obj/structure/filingcabinet,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bBD" = (/obj/structure/closet/secure_closet/warden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac,/obj/item/clothing/tie/armband/deputy,/obj/item/clothing/tie/armband/deputy,/obj/item/clothing/tie/armband/deputy,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bBE" = (/obj/structure/chair,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bBF" = (/obj/structure/chair,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/brig) -"bBG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/brig) -"bBH" = (/obj/structure/chair,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/brig) -"bBI" = (/obj/structure/chair,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/camera{c_tag = "Security Briefing Room"; dir = 8; network = list("SS13","Brig"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bBJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 0; icon_state = "closed"; id_tag = null; locked = 0; name = "Prisoner Transfer"; req_access = null; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/transfer) -"bBK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/security/transfer) -"bBL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Prison Wing North"; dir = 4; network = list("SS13","Brig")},/obj/structure/extinguisher_cabinet{desc = "A small wall mounted cabinet designed to hold a fire extinguisher. Excellent for extinguishing prisoners and or life."; pixel_x = -27; pixel_y = 0; tag = "wsecjoke"},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bBM" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"bBN" = (/turf/simulated/wall/rust,/area/security/prison) -"bBO" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bBP" = (/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bBQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bBR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/security/prison) -"bBS" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) -"bBT" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBU" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 4},/area/hallway/secondary/exit) -"bBW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/hallway/secondary/exit) -"bBY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bBZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bCa" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/chair/stool,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH"; location = "AIW"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bCb" = (/obj/machinery/computer/arcade,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bCc" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/library) -"bCd" = (/turf/simulated/floor/plating,/area/library) -"bCe" = (/obj/item/weapon/paper/crumpled{info = "The first is unbuilt, but obvious..."},/turf/simulated/floor/plating,/area/library) -"bCf" = (/obj/item/weapon/storage/pill_bottle{desc = "Supposed to contain all the luck you'll ever need.... Seems to be missing some dice."; icon = 'icons/obj/dice.dmi'; icon_state = "dicebag"; max_combined_w_class = 16; name = "dice bag"; storage_slots = 8},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/library) -"bCg" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/library) -"bCh" = (/turf/simulated/wall/rust,/area/library) -"bCi" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bCj" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bCk" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bCl" = (/obj/structure/cable/green{tag = "icon-4-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/maintenance/fpmaint) -"bCm" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bCn" = (/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/eva) -"bCo" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/eva) -"bCp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/storage/eva) -"bCq" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/storage/eva) -"bCr" = (/obj/structure/closet/chefcloset,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bCs" = (/obj/machinery/icecream_vat,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bCt" = (/obj/item/toy/beach_ball/holoball,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bCu" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCv" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCy" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face."; name = "kitchen sink"; pixel_y = 28},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCz" = (/obj/machinery/processor,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCA" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCB" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bCC" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bCD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bCE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bCF" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bCG" = (/obj/structure/chair/stool,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bCH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCI" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/table/wood,/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face."; name = "kitchen sink"; pixel_y = 28},/obj/machinery/reagentgrinder,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCK" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/cable_coil,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCL" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/gravity_generator) -"bCM" = (/obj/machinery/gravity_generator/main/station,/turf/simulated/floor/plasteel/black,/area/engine/gravity_generator) -"bCN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/engine/gravity_generator) -"bCO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/white{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"bCP" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"bCQ" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"; nitrogen = 100; oxygen = 0; temperature = 80},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/turret_protected/ai_upload) -"bCR" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai_upload) -"bCS" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai_upload) -"bCT" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai_upload) -"bCU" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/structure/cable/white{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai_upload) -"bCV" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/machinery/turretid{control_area = "AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = -28; pixel_y = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai_upload_foyer) -"bCW" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/camera{c_tag = "AI Upload Access"; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel/warningline,/area/turret_protected/ai_upload_foyer) -"bCX" = (/obj/machinery/status_display{layer = 4; pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/hallway/primary/central) -"bCY" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bCZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/hallway/primary/central) -"bDa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bDb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"bDc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"bDd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/bridge) -"bDe" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) -"bDf" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 15},/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bDg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) -"bDh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bDj" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Bridge Hallway East"; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) -"bDk" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bDl" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel/darkblue/corner{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) -"bDm" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.7; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"bDn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"bDo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/bridge) -"bDp" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) -"bDq" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) -"bDr" = (/obj/structure/table/wood,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/carpet,/area/bridge) -"bDs" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) -"bDt" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bDu" = (/obj/machinery/computer/shuttle/mining,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTHEAST)"; icon_state = "darkblue"; dir = 5},/area/bridge) -"bDv" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/bridge) -"bDw" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "interro blast"; layer = 2.9; name = "interrogation shutter"},/turf/simulated/floor/plating,/area/security/main) -"bDx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/main) -"bDy" = (/obj/machinery/button/door{id = "interro blast"; name = "Interrogation Shutters Control"; pixel_x = -24; pixel_y = 24; req_access_txt = "63"},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/main) -"bDz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/security/main) -"bDA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/main) -"bDB" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/main) -"bDC" = (/obj/structure/sign/goldenplaque{pixel_x = -32},/turf/simulated/floor/plasteel/black,/area/security/main) -"bDD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/black,/area/security/main) -"bDE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/security/main) -"bDF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bDG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/main) -"bDH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/warden) -"bDI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/warden) -"bDJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bDK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bDL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bDM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bDN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/warden) -"bDO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/warden) -"bDP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/brig) -"bDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bDR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bDS" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bDT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkred/corner,/area/security/brig) -"bDU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/prison) -"bDV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/prison) -"bDW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"bDX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/corner,/area/security/prison) -"bDY" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/security/prison) -"bDZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/prison) -"bEa" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"bEb" = (/obj/structure/bed,/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 25; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/camera{c_tag = "Prison Cell 2"; dir = 4; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bEc" = (/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bEd" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bEe" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bEf" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bEg" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/status_display{layer = 3.3},/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"bEh" = (/obj/structure/chair{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Escape West"; dir = 4; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) -"bEi" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/exit) -"bEj" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIE"; location = "AftH"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bEk" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bEl" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bEm" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/chair/stool,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bEn" = (/obj/machinery/computer/arcade,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bEo" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) -"bEp" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/simulated/floor/wood,/area/library) -"bEq" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bEr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bEs" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fpmaint) -"bEt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bEu" = (/obj/structure/closet/crate/rcd,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/eva) -"bEv" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots{pixel_x = -3; pixel_y = -3},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/storage/eva) -"bEw" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 3; pixel_y = 3},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor"; desc = "It watches you carefully."; dir = 1; icon_state = "camera"; name = "motion-sensitive security camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/storage/eva) -"bEx" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/storage/eva) -"bEy" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/storage/eva) -"bEz" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Kitchen"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/crew_quarters/kitchen) -"bEA" = (/turf/simulated/floor/plasteel/delivery,/area/crew_quarters/kitchen) -"bEB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bEC" = (/obj/machinery/chem_master/condimaster,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Kitchen Cold Room"; dir = 8; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bED" = (/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEI" = (/obj/effect/landmark/start{name = "Cook"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "kitchen"; name = "Kitchen Shutters"; pixel_x = 24; pixel_y = 24; req_access_txt = "28"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEK" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bEL" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bEM" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bEN" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bEO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bEP" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bEQ" = (/obj/machinery/atmospherics/pipe/manifold/supply,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bER" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bES" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/head/that,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bET" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/bar) -"bEU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEW" = (/obj/machinery/atmospherics/pipe/manifold/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEX" = (/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bEZ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bFa" = (/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (WEST)"; icon_state = "warndarkcorners"; dir = 8},/area/engine/gravity_generator) -"bFb" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/gravity_generator) -"bFc" = (/obj/machinery/light,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/gravity_generator) -"bFd" = (/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/gravity_generator) -"bFe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (EAST)"; icon_state = "warndarkcorners"; dir = 4},/area/engine/gravity_generator) -"bFf" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bFg" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"bFh" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/turret_protected/ai_upload) -"bFi" = (/obj/machinery/hologram/holopad,/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bFj" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bFk" = (/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bFl" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bFm" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "closed"; locked = 0; name = "AI Upload"; req_access_txt = "16"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/turret_protected/ai_upload) -"bFn" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload_foyer) -"bFo" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload_foyer) -"bFp" = (/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "closed"; locked = 0; name = "AI Upload Access"; req_access_txt = "16"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/turret_protected/ai_upload_foyer) -"bFq" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warning{dir = 8},/area/hallway/primary/central) -"bFr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA2"; location = "Dorm"},/turf/simulated/floor/goonplaque,/area/hallway/primary/central) -"bFs" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/hallway/primary/central) -"bFt" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bFu" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) -"bFv" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"bFw" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/bridge) -"bFx" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) -"bFy" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/bridge) -"bFz" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bFA" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/bridge) -"bFB" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bFC" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/bridge) -"bFD" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) -"bFE" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"bFF" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/black,/area/bridge) -"bFG" = (/obj/structure/chair/comfy/black{dir = 4},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge) -"bFH" = (/obj/structure/table/wood,/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/carpet,/area/bridge) -"bFI" = (/obj/structure/table/wood,/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/bridge) -"bFJ" = (/obj/structure/chair/comfy/black{dir = 8},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/bridge) -"bFK" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/black,/area/bridge) -"bFL" = (/obj/structure/chair/comfy/black{dir = 4; name = "Command Station"},/obj/machinery/keycard_auth{pixel_x = 7; pixel_y = 30},/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = -6; pixel_y = 30; req_access_txt = "19"},/obj/machinery/button/door{id = "interro blast"; name = "Interrogation Shutters Control"; pixel_x = -6; pixel_y = 39; req_access_txt = "19"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bFM" = (/obj/machinery/computer/communications,/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bFN" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/bridge) -"bFO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/main) -"bFP" = (/obj/structure/chair/office/dark{dir = 4; name = "Interrogator"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/main) -"bFQ" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/item/device/taperecorder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/security/main) -"bFR" = (/obj/structure/chair{dir = 8; name = "Suspect"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bFS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/main) -"bFT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred,/area/security/main) -"bFU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/main) -"bFV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bFW" = (/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"; pixel_y = 0},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/mob/living/simple_animal/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey."; name = "Officer Beepsky"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) -"bFX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/main) -"bFY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/main) -"bFZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/turf/simulated/floor/plasteel/darkred,/area/security/warden) -"bGa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/warden) -"bGb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bGc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bGd" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) -"bGe" = (/obj/structure/chair/office/dark,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bGf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/warden) -"bGg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/brig) -"bGh" = (/obj/structure/chair,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel/black,/area/security/brig) -"bGi" = (/obj/structure/chair,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bGj" = (/obj/structure/chair,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/brig) -"bGk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/brig) -"bGl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/darkred,/area/security/prison) -"bGm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/prison) -"bGn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bGo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/prison) -"bGp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred,/area/security/prison) -"bGq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/prison) -"bGr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/prison) -"bGs" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"bGt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGv" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{id_tag = "permabolt2"; name = "Cell 2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGA" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/camera{c_tag = "Prison Holding Area"; dir = 8; network = list("SS13","Prison"); pixel_x = 0; pixel_y = 0},/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bGB" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/escape{tag = "icon-escape (WEST)"; icon_state = "escape"; dir = 8},/area/hallway/secondary/exit) -"bGC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGE" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 4},/area/hallway/secondary/exit) -"bGG" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/hallway/secondary/exit) -"bGI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/chair/stool,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHE"; location = "AIE"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGK" = (/obj/machinery/computer/arcade,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bGL" = (/obj/machinery/bookbinder{pixel_y = 0},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/library) -"bGM" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor/plasteel/cult,/area/library) -"bGN" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/cult,/area/library) -"bGO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen/invisible,/turf/simulated/floor/plasteel/cult,/area/library) -"bGP" = (/obj/structure/table,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bGQ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bGR" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bGS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bGT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bGU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen Cold Room"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bGV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bGW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bGX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bGY" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bGZ" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bHa" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bHb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bHc" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bHd" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bHe" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bHf" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bHg" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bHh" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bHj" = (/obj/effect/landmark/start{name = "Bartender"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bHk" = (/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = 26; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bHl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bHm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bHn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/delivery,/area/crew_quarters/bar) -"bHo" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Bar"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/crew_quarters/bar) -"bHp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bHq" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/custom,/obj/structure/cable/white{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"bHr" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"; nitrogen = 100; oxygen = 0; temperature = 80},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/turret_protected/ai_upload) -"bHs" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai_upload) -"bHt" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai_upload) -"bHu" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/white{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai_upload) -"bHv" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai_upload) -"bHw" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/white,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai_upload_foyer) -"bHx" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light/small,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/turret_protected/ai_upload_foyer) -"bHy" = (/obj/machinery/ai_status_display{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/hallway/primary/central) -"bHz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bHA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/hallway/primary/central) -"bHB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bHC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/obj/structure/sign/securearea{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"bHD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"bHE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/bridge) -"bHF" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Bridge Hallway West"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bHG" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/bridge) -"bHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/bridge) -"bHI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/bridge) -"bHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bHK" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bHL" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/bridge) -"bHM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/bridge) -"bHN" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bHO" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.7; name = "bridge blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel/darkblue,/area/bridge) -"bHP" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/area/bridge) -"bHQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/bridge) -"bHR" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) -"bHS" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/hand_labeler,/turf/simulated/floor/carpet,/area/bridge) -"bHT" = (/obj/structure/table/wood,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) -"bHU" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) -"bHV" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/obj/item/weapon/storage/secure/briefcase,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bHW" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (SOUTHEAST)"; icon_state = "darkblue"; dir = 6},/area/bridge) -"bHX" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bHY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/main) -"bHZ" = (/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/main) -"bIa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/main) -"bIb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner,/area/security/main) -"bIc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/main) -"bId" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/main) -"bIe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/black,/area/security/main) -"bIf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bIg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/security/main) -"bIh" = (/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bIi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/main) -"bIj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/warden) -"bIk" = (/obj/item/weapon/storage/box/handcuffs{pixel_x = 4; pixel_y = 4},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/storage/box/flashes,/obj/structure/extinguisher_cabinet{desc = "A small wall mounted cabinet designed to hold a fire extinguisher. Excellent for extinguishing prisoners and or life."; pixel_x = -27; pixel_y = 0; tag = "wsecjoke"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/warden) -"bIl" = (/obj/structure/table,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/camera{c_tag = "Brig Control"; dir = 1; network = list("SS13","Brig")},/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plasteel/black,/area/security/warden) -"bIm" = (/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = -32; tag = "s"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/black,/area/security/warden) -"bIn" = (/turf/simulated/floor/plasteel/darkred/side,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/warningline,/area/security/warden) -"bIo" = (/turf/simulated/floor/plasteel/darkred/side,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/security/warden) -"bIp" = (/turf/simulated/floor/plasteel/darkred/side,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/security/warden) -"bIq" = (/obj/machinery/computer/prisoner,/obj/machinery/requests_console{department = "Brig Control"; departmentType = 5; name = "Brig Control RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bIr" = (/obj/machinery/computer/security{network = list("SS13","Brig","Prison")},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) -"bIs" = (/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/warden) -"bIt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/brig) -"bIu" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plasteel/darkred/corner,/area/security/brig) -"bIv" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/turf/simulated/floor/plasteel/darkred/side,/area/security/brig) -"bIw" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/brig) -"bIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/brig) -"bIy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/prison) -"bIz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/prison) -"bIA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bIB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/prison) -"bIC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/prison) -"bID" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/prison) -"bIE" = (/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 24; pixel_y = -6},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = 25; pixel_y = 4; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bIF" = (/obj/structure/table,/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bIG" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bIH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bII" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bIJ" = (/obj/structure/table,/obj/item/toy/cards/deck{pixel_x = 2},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bIK" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/chair/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bIL" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bIM" = (/obj/structure/bookcase/random/nonfiction,/turf/simulated/floor/wood,/area/library) -"bIN" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) -"bIO" = (/turf/simulated/floor/plasteel/cult,/area/library) -"bIP" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/simulated/floor/plasteel/cult,/area/library) -"bIQ" = (/obj/structure/cult/tome,/obj/item/clothing/under/suit_jacket/red,/turf/simulated/floor/plasteel/cult,/area/library) -"bIR" = (/obj/structure/filingcabinet/chestdrawer/wheeled,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bIS" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bIT" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/item/weapon/cigbutt/cigarbutt,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bIU" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bIV" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bIW" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fpmaint) -"bIX" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/kitchen) -"bIZ" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bJa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bJb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bJc" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bJd" = (/obj/machinery/food_cart,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJf" = (/obj/effect/landmark/start{name = "Cook"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJg" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJk" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bJl" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bJm" = (/obj/structure/table/reinforced,/obj/item/weapon/lighter,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bJn" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bJo" = (/obj/machinery/vending/boozeomat,/turf/simulated/wall,/area/crew_quarters/bar) -"bJp" = (/obj/structure/closet/gmcloset,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bJq" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/camera{c_tag = "Bar Backroom"; dir = 1; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bJr" = (/obj/machinery/light/small,/obj/machinery/vending/cola,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bJs" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bJt" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint2) -"bJu" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/item/weapon/aiModule/core/freeformcore,/obj/structure/window/reinforced{dir = 1; layer = 3.2},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/turret_protected/ai_upload) -"bJv" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "AI Upload"; dir = 1; network = list("Sat"); start_active = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"bJw" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/white,/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"bJx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/white,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"bJy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/turret_protected/ai_upload_foyer) -"bJz" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bJA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bJB" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28; pixel_y = 5},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/central) -"bJC" = (/turf/simulated/wall/r_wall,/area/teleporter) -"bJD" = (/turf/simulated/wall,/area/teleporter) -"bJE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/teleporter) -"bJF" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkblue,/area/teleporter) -"bJG" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"bJH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"bJI" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bJJ" = (/obj/structure/cable/blue,/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Bridge West"; dir = 4; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (NORTH)"; icon_state = "darkbluecorners"; dir = 1},/area/bridge) -"bJK" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bJL" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/main) -"bJM" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bJN" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/main) -"bJO" = (/obj/machinery/syndicatebomb/training,/obj/structure/table,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/black,/area/security/main) -"bJP" = (/obj/structure/table,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner,/area/security/main) -"bJQ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bJR" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/main) -"bJS" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/black,/area/security/main) -"bJT" = (/turf/simulated/wall/r_wall,/area/security/armory) -"bJU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/armory) -"bJV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Armory"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred,/area/security/armory) -"bJW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/security/armory) -"bJX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/darkred/corner,/area/security/brig) -"bJY" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/brig) -"bJZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side,/area/security/brig) -"bKa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/brig) -"bKb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (WEST)"; icon_state = "darkredcorners"; dir = 8},/area/security/brig) -"bKc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "sanitarium"; name = "ward shutters"},/obj/structure/cable,/turf/simulated/floor/plating,/area/security/prison) -"bKd" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"bKe" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bKf" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bKg" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bKh" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{dir = 8},/obj/docking_port/stationary{dir = 8; dwidth = 9; height = 11; id = "emergency_home"; name = "emergency evac bay"; width = 22},/turf/simulated/floor/plating,/area/shuttle/escape) -"bKi" = (/turf/simulated/floor/plasteel/escape{tag = "icon-escape (SOUTHWEST)"; icon_state = "escape"; dir = 10},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/hallway/secondary/exit) -"bKj" = (/turf/simulated/floor/plasteel/escape,/area/hallway/secondary/exit) -"bKk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/escape,/area/hallway/secondary/exit) -"bKl" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/escape,/area/hallway/secondary/exit) -"bKm" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/escape,/area/hallway/secondary/exit) -"bKn" = (/obj/structure/chair{dir = 1},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/hallway/secondary/exit) -"bKo" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bKp" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bKq" = (/obj/machinery/camera{c_tag = "Library"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/library) -"bKr" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/simulated/floor/plasteel/cult,/area/library) -"bKs" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bKt" = (/turf/simulated/wall/r_wall/rust,/area/gateway) -"bKu" = (/turf/simulated/wall/r_wall,/area/gateway) -"bKv" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bKw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bKx" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bKy" = (/obj/machinery/gibber,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bKz" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKB" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/vegetable{desc = "Ah, leftovers. A slice of the most green pizza of all pizzas not containing green ingredients."},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKC" = (/obj/machinery/vending/dinnerware,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/obj/machinery/camera{c_tag = "Kitchen"; dir = 1; icon_state = "camera"; network = list("SS13"); tag = ""},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bKH" = (/obj/machinery/light,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bKI" = (/obj/machinery/door/window/southright{base_state = "left"; dir = 8; icon_state = "left"; name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bKJ" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -31},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bKK" = (/obj/machinery/chem_dispenser/drinks{density = 0},/obj/structure/table,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bKL" = (/obj/machinery/chem_dispenser/drinks/beer{density = 0},/obj/structure/table,/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bKM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bKN" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bKO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bKP" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bKQ" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bKR" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/structure/cable/white{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/turret_protected/ai_upload) -"bKS" = (/obj/machinery/computer/upload/borg,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/white{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bKT" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (WEST)"; icon_state = "darkblue"; dir = 8},/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/white{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/turret_protected/ai_upload) -"bKU" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/structure/cable/white{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) -"bKV" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/space,/area/space/nearstation) -"bKW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/space,/area/space/nearstation) -"bKX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bKY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/central) -"bKZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/central) -"bLa" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bLb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/central) -"bLc" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter) -"bLd" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter) -"bLe" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bLf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/teleporter) -"bLg" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue (NORTH)"; icon_state = "darkblue"; dir = 1},/area/teleporter) -"bLh" = (/obj/structure/dresser,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bLi" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/machinery/light/small{dir = 1},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Captain's Quarters"; network = list("SS13"); start_active = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bLj" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bLk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/captain) -"bLl" = (/obj/machinery/suit_storage_unit/captain,/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bLm" = (/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/obj/machinery/computer/communications,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bLn" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bLo" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bLp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bLq" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bLr" = (/obj/machinery/newscaster{hitstaken = 0; pixel_x = -32; pixel_y = 0; tag = "w"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/bridge) -"bLs" = (/turf/simulated/floor/plasteel/darkpurple/corner{tag = "icon-darkpurplecorners (WEST)"; icon_state = "darkpurplecorners"; dir = 8},/area/bridge) -"bLt" = (/obj/structure/chair{name = "Science Station"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bLu" = (/turf/simulated/floor/plasteel/darkpurple/corner,/area/bridge) -"bLv" = (/turf/simulated/floor/plasteel/darkgreen/corner{tag = "icon-darkgreencorners (WEST)"; icon_state = "darkgreencorners"; dir = 8},/area/bridge) -"bLw" = (/obj/structure/chair{name = "Medical Station"},/turf/simulated/floor/plasteel/black,/area/bridge) -"bLx" = (/turf/simulated/floor/plasteel/darkgreen/corner,/area/bridge) -"bLy" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkblue/side{tag = "icon-darkblue (EAST)"; icon_state = "darkblue"; dir = 4},/area/bridge) -"bLz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/sign/securearea{pixel_x = -32},/turf/simulated/floor/plating,/area/security/main) -"bLA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/main) -"bLB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Gear Room"; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred,/area/security/main) -"bLC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/simulated/floor/plating,/area/security/main) -"bLD" = (/obj/structure/rack,/obj/item/weapon/storage/box/firingpins{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/firingpins,/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/item/weapon/storage/lockbox/loyalty,/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bLE" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/gun/projectile/shotgun/riot{pixel_x = 3; pixel_y = 3},/obj/item/weapon/gun/projectile/shotgun/riot,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bLF" = (/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/obj/item/clothing/suit/armor/laserproof,/obj/item/key/security,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bLG" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/obj/structure/closet/l3closet/security,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/security/armory) -"bLH" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/security/armory) -"bLI" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/obj/structure/closet/bombclosetsecurity,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/security/armory) -"bLJ" = (/obj/machinery/flasher/portable,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bLK" = (/obj/machinery/flasher/portable,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Armory"; network = list("SS13","Brig")},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bLL" = (/turf/simulated/wall/r_wall,/area/security/hos) -"bLM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/security/hos) -"bLN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/hos) -"bLO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{glass = 0; name = "Head of Security"; opacity = 1; req_access_txt = "58"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/darkred/side,/area/security/hos) -"bLP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/hos) -"bLQ" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (NORTHWEST)"; icon_state = "whitered"; dir = 9},/area/security/prison) -"bLR" = (/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (NORTH)"; icon_state = "whitered"; dir = 1},/area/security/prison) -"bLS" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (NORTHEAST)"; icon_state = "whitered"; dir = 5},/area/security/prison) -"bLT" = (/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bLU" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bLV" = (/obj/structure/bed,/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 25; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/camera{c_tag = "Prison Cell 1"; dir = 4; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bLW" = (/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bLX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bLY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bLZ" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bMa" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"; dir = 2},/area/shuttle/escape) -"bMb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Holding Area"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/hallway/secondary/exit) -"bMc" = (/obj/machinery/status_display,/turf/simulated/wall,/area/hallway/secondary/exit) -"bMd" = (/turf/simulated/floor/plasteel/escape/corner{tag = "icon-escapecorner (NORTH)"; icon_state = "escapecorner"; dir = 1},/area/hallway/secondary/exit) -"bMe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bMf" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bMg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/obj/machinery/camera{c_tag = "Escape East 2"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/secondary/exit) -"bMh" = (/obj/structure/bookcase/random/adult,/turf/simulated/floor/wood,/area/library) -"bMi" = (/obj/machinery/door/window/northright{base_state = "right"; dir = 8; icon_state = "right"; name = "Library Desk Door"; req_access_txt = "37"},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/library) -"bMj" = (/obj/machinery/newscaster{pixel_y = 32; tag = "n"},/turf/simulated/floor/wood,/area/library) -"bMk" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"bMl" = (/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/library) -"bMm" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bMn" = (/obj/structure/computerframe,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bMo" = (/turf/simulated/floor/plasteel/darkwarning/corner,/area/gateway) -"bMp" = (/turf/simulated/floor/plasteel/darkwarning,/area/gateway) -"bMq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Gateway"; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/darkwarning,/area/gateway) -"bMr" = (/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (NORTH)"; icon_state = "warndarkcorners"; dir = 1},/area/gateway) -"bMs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bMt" = (/obj/structure/noticeboard{dir = 8; pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bMu" = (/obj/machinery/status_display,/turf/simulated/wall,/area/crew_quarters/bar) -"bMv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Counter Access"; req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bMw" = (/obj/structure/bed/abductor{desc = "Seems almost like a bed, but not quite."},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bMx" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bMy" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bMz" = (/turf/simulated/wall,/area/storage/tools) -"bMA" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/storage/tools) -"bMB" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bMC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/central) -"bMD" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter) -"bME" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter) -"bMF" = (/turf/simulated/floor/plasteel/black,/area/teleporter) -"bMG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bMH" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bMI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bMJ" = (/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bMK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bML" = (/turf/simulated/wall,/area/crew_quarters/captain) -"bMM" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bMN" = (/obj/structure/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bMO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bMP" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bMQ" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bMR" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bMS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/bridge) -"bMT" = (/obj/machinery/computer/mecha,/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/bridge) -"bMU" = (/obj/machinery/computer/rdservercontrol,/turf/simulated/floor/plasteel/darkpurple/side,/area/bridge) -"bMV" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/plasteel/darkpurple/side{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/bridge) -"bMW" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor/plasteel/black,/area/bridge) -"bMX" = (/obj/structure/table/reinforced,/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/black,/area/bridge) -"bMY" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkgreen (SOUTHWEST)"; icon_state = "darkgreen"; dir = 10},/area/bridge) -"bMZ" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/darkgreen/side,/area/bridge) -"bNa" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkgreen (SOUTHEAST)"; icon_state = "darkgreen"; dir = 6},/area/bridge) -"bNb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel/black,/area/bridge) -"bNc" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/bridge) -"bNd" = (/turf/simulated/floor/plasteel/darkwarning,/area/security/main) -"bNe" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = 30},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/main) -"bNf" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/computer/security,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/main) -"bNg" = (/obj/structure/filingcabinet,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/main) -"bNh" = (/obj/machinery/vending/security,/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/main) -"bNi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera{c_tag = "Security Office"; network = list("SS13","Brig")},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/main) -"bNj" = (/obj/vehicle/secway,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bNk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/main) -"bNl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/main) -"bNm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/main) -"bNn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/armory) -"bNo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bNp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bNq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/armory) -"bNr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bNt" = (/turf/simulated/floor/plasteel/black,/area/security/armory) -"bNu" = (/obj/machinery/disposal/bin,/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/carpet,/area/security/hos) -"bNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/hos) -"bNw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/darkred/side,/area/security/hos) -"bNx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/hos) -"bNy" = (/obj/structure/bed/dogbed{desc = "Pugley III's dog bed. Quite comfy."; name = "Pugley's bed"},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24; tag = "ne"},/mob/living/simple_animal/pet/dog/pug{name = "\improper Pugley III"},/turf/simulated/floor/carpet,/area/security/hos) -"bNz" = (/turf/simulated/floor/plasteel/white,/area/security/prison) -"bNA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/white,/area/security/prison) -"bNB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whitered/corner,/area/security/prison) -"bNC" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "sanitarium"; name = "ward shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/prison) -"bND" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/black,/area/security/prison) -"bNE" = (/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"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/prison) -"bNF" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/prison) -"bNG" = (/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt1"; name = "Cell 1"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bNH" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bNI" = (/obj/structure/chair,/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"bNJ" = (/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"bNK" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"; req_access_txt = "2"},/turf/simulated/floor/plating,/area/shuttle/escape) -"bNL" = (/obj/machinery/power/emitter{anchored = 1; dir = 1; state = 2},/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/space/nearstation) -"bNM" = (/obj/machinery/camera/emp_proof{c_tag = "Containment Southeast"; dir = 9; icon_state = "camera"; network = list("Singularity"); tag = "icon-camera (NORTHWEST)"},/turf/simulated/floor/plating/airless,/area/space/nearstation) -"bNN" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/hallway/secondary/exit) -"bNO" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/hallway/secondary/exit) -"bNP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/hallway/secondary/exit) -"bNQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/hallway/secondary/exit) -"bNR" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/hallway/secondary/exit) -"bNS" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/hallway/secondary/exit) -"bNT" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bNU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/library) -"bNV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood,/area/library) -"bNW" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"bNX" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/wood,/area/library) -"bNY" = (/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) -"bNZ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOa" = (/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOb" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard{icon_state = "medium"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOc" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/gateway) -"bOd" = (/obj/machinery/gateway{tag = "icon-off (NORTHWEST)"; icon_state = "off"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/gateway) -"bOe" = (/obj/machinery/gateway{tag = "icon-off (NORTH)"; icon_state = "off"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) -"bOf" = (/obj/machinery/gateway{tag = "icon-off (NORTHEAST)"; icon_state = "off"; dir = 5},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/gateway) -"bOg" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/gateway) -"bOh" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/wardrobe/botanist,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bOm" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/structure/grille,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bOn" = (/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fpmaint) -"bOo" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fpmaint) -"bOp" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bOq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bOr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bOs" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOt" = (/obj/machinery/computer/slot_machine,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOu" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOw" = (/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOx" = (/obj/structure/chair/comfy/beige,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOy" = (/obj/structure/chair/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bOz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bOA" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bOB" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bOC" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/storage/tools) -"bOD" = (/turf/simulated/floor/plasteel,/area/storage/tools) -"bOE" = (/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/storage/tools) -"bOF" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (EAST)"; icon_state = "blackcorner"; dir = 4},/area/storage/tools) -"bOG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bOH" = (/obj/structure/table,/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bOI" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bOJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bOK" = (/obj/structure/table/wood,/obj/item/weapon/razor{pixel_x = -4; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/obj/item/weapon/storage/fancy/cigarettes/cigars,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/lighter,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bOL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bOM" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bON" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bOO" = (/obj/structure/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bOP" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bOQ" = (/obj/structure/chair{dir = 8},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bOR" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/structure/displaycase/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bOS" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bOT" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bOU" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bOV" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bOW" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bOX" = (/obj/structure/cable/blue{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkblue/side,/area/bridge) -"bOY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Bridge South"; dir = 1; network = list("SS13"); start_active = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/bridge) -"bOZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/bridge) -"bPa" = (/obj/structure/plasticflaps/mining{opacity = 1},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fore) -"bPb" = (/obj/structure/plasticflaps/mining{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Security"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/main) -"bPc" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/security/main) -"bPd" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/security/main) -"bPe" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/main) -"bPf" = (/turf/simulated/floor/plasteel/black,/area/security/main) -"bPg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bPh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/main) -"bPi" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 4; icon_state = "rightsecure"; name = "Armory Desk"; req_access_txt = "3"},/turf/simulated/floor/plasteel/darkred,/area/security/armory) -"bPj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bPk" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/armory) -"bPl" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/armory) -"bPm" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/armory) -"bPn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bPo" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bPp" = (/obj/structure/filingcabinet,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/carpet,/area/security/hos) -"bPq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (EAST)"; icon_state = "darkredcorners"; dir = 4},/area/security/hos) -"bPr" = (/obj/structure/chair,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/darkred/side,/area/security/hos) -"bPs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/darkred/corner{tag = "icon-darkredcorners (NORTH)"; icon_state = "darkredcorners"; dir = 1},/area/security/hos) -"bPt" = (/turf/simulated/floor/carpet,/area/security/hos) -"bPu" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "sanitarium"; name = "ward shutters"},/turf/simulated/floor/plating,/area/security/hos) -"bPv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/button/door{id = "sanitarium"; name = "Ward Shutters Control"; pixel_x = -26; pixel_y = 26; req_access_txt = "2"},/turf/simulated/floor/plasteel/white,/area/security/prison) -"bPw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/white,/area/security/prison) -"bPx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/security/prison) -"bPy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{glass = 0; name = "Insanity Ward"; opacity = 1; req_access_txt = "2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bPz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bPA" = (/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 24; pixel_y = -6},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = 25; pixel_y = 4; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bPB" = (/obj/structure/table,/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bPC" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/security/prison) -"bPD" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/security/prison) -"bPE" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/security/prison) -"bPF" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"bPG" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Brig"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bPH" = (/obj/machinery/flasher{id = "shuttle_flasher"; pixel_x = 24; pixel_y = -6},/obj/machinery/button/flasher{id = "shuttle_flasher"; pixel_x = 24; pixel_y = 6},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"bPI" = (/turf/simulated/floor/plasteel/darkred/side{dir = 8},/area/hallway/secondary/exit) -"bPJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"bPK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"bPL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"bPM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"bPN" = (/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/hallway/secondary/exit) -"bPO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 0; icon_state = "closed"; id_tag = null; locked = 0; name = "Holding Area"; req_access = null; req_access_txt = "2"},/turf/simulated/floor/plasteel/darkred,/area/hallway/secondary/exit) -"bPP" = (/turf/simulated/floor/plasteel/red/side{dir = 8},/area/hallway/secondary/exit) -"bPQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bPR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/carpet,/area/library) -"bPS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/wood,/area/library) -"bPT" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/simulated/floor/wood,/area/library) -"bPU" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"bPV" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) -"bPW" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/turf/simulated/floor/wood,/area/library) -"bPX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/gateway) -"bPY" = (/obj/machinery/gateway{tag = "icon-off (WEST)"; icon_state = "off"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) -"bPZ" = (/obj/machinery/gateway/centerstation,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/gateway) -"bQa" = (/obj/machinery/gateway{tag = "icon-off (EAST)"; icon_state = "off"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) -"bQb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/gateway) -"bQc" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bQd" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bQe" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bQf" = (/obj/machinery/computer/arcade,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bQg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bQh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bQi" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQl" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQm" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_x = 2},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQn" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/silver,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQo" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bQp" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bQq" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bQr" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bQs" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bQt" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/tools) -"bQu" = (/obj/structure/closet/toolcloset,/obj/machinery/light/small{dir = 8},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/storage/tools) -"bQv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/storage/tools) -"bQw" = (/obj/structure/table,/obj/item/weapon/electronics/airalarm,/obj/item/weapon/electronics/airlock,/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/storage/tools) -"bQx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/tools) -"bQy" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/cell_charger,/obj/item/weapon/storage/toolbox/emergency{pixel_y = 6},/obj/item/weapon/stock_parts/cell,/turf/simulated/floor/plasteel,/area/storage/tools) -"bQz" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bQA" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bQB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warning/corner,/area/hallway/primary/central) -"bQC" = (/obj/machinery/teleport/station,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/teleporter) -"bQD" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/teleporter) -"bQE" = (/obj/machinery/bluespace_beacon,/obj/structure/chair/stool,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bQF" = (/obj/structure/table,/obj/item/device/gps,/obj/item/weapon/hand_tele,/turf/simulated/floor/plasteel/black,/area/teleporter) -"bQG" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Teleporter"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bQH" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/captain) -"bQI" = (/obj/machinery/newscaster/security_unit{pixel_x = -32; tag = "w"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bQJ" = (/obj/machinery/computer/card,/obj/item/weapon/card/id/captains_spare,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bQK" = (/obj/structure/table/wood,/obj/item/weapon/storage/lockbox/medal,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bQL" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bQM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bQN" = (/obj/item/weapon/pinpointer,/obj/structure/table/wood,/obj/item/weapon/disk/nuclear,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/item/weapon/storage/secure/safe{pixel_x = 32},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bQO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) -"bQP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/ai_status_display{layer = 3.3},/turf/simulated/floor/plating,/area/bridge) -"bQQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/blue,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/machinery/status_display{layer = 3.3},/turf/simulated/floor/plating,/area/bridge) -"bQR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fore) -"bQS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/security/main) -"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/security/main) -"bQU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (EAST)"; icon_state = "warndarkcorners"; dir = 4},/area/security/main) -"bQV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/main) -"bQW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/main) -"bQX" = (/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"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/main) -"bQY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/black,/area/security/main) -"bQZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/main) -"bRa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/security/main) -"bRb" = (/obj/machinery/door/poddoor/shutters{id = "armory"},/obj/machinery/button/door{id = "armory"; name = "Armory Shutters"; pixel_x = 0; pixel_y = -26; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred,/area/security/armory) -"bRc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/security/armory) -"bRd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bRe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/security/armory) -"bRf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bRg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/black,/area/security/armory) -"bRh" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/table/wood,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet,/area/security/hos) -"bRi" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/simulated/floor/carpet,/area/security/hos) -"bRj" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/security/hos) -"bRk" = (/obj/structure/table/wood,/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in."; pixel_x = -4; pixel_y = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/security/hos) -"bRl" = (/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 2; icon_state = "rightsecure"; name = "Head of Security's Desk"; req_access_txt = "58"},/turf/simulated/floor/carpet,/area/security/hos) -"bRm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/white,/area/security/prison) -"bRn" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitered/corner{tag = "icon-whiteredcorner (EAST)"; icon_state = "whiteredcorner"; dir = 4},/area/security/prison) -"bRo" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "sanitarium"; name = "ward shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/prison) -"bRp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bRq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/black,/area/security/prison) -"bRr" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Unisex Showers"; req_access_txt = "0"},/turf/simulated/floor/plasteel/showroomfloor,/area/security/prison) -"bRs" = (/obj/machinery/light/small{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/prison) -"bRt" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bRu" = (/obj/machinery/flasher{id = "cockpit_flasher"; pixel_x = -6; pixel_y = -24},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bRv" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"bRw" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/darkred/side{dir = 10},/area/hallway/secondary/exit) -"bRx" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/darkred/side,/area/hallway/secondary/exit) -"bRy" = (/obj/structure/chair{dir = 1},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/plasteel/darkred/side,/area/hallway/secondary/exit) -"bRz" = (/obj/structure/chair{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "Escape Prisoner Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/darkred/side,/area/hallway/secondary/exit) -"bRA" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/hallway/secondary/exit) -"bRB" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (NORTH)"; icon_state = "redcorner"; dir = 1},/area/hallway/secondary/exit) -"bRC" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bRD" = (/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_x = -32; pixel_y = -32; tag = "icon-direction_evac (NORTH)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/secondary/exit) -"bRF" = (/obj/structure/chair/comfy/black,/turf/simulated/floor/wood,/area/library) -"bRG" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRH" = (/obj/machinery/gateway{density = 0; dir = 10; icon_state = "off"; tag = "icon-off (SOUTHWEST)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/gateway) -"bRI" = (/obj/machinery/gateway{density = 0},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) -"bRJ" = (/obj/machinery/gateway{density = 0; dir = 6; icon_state = "off"; tag = "icon-off (SOUTHEAST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/gateway) -"bRK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{icon_state = "intact"; dir = 5},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRM" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 21},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRN" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bRQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bRR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bRS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bRT" = (/obj/structure/chair/comfy/brown{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bRU" = (/obj/structure/table/wood/poker,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bRV" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bRW" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bRX" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bRY" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/storage/tools) -"bRZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) -"bSa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) -"bSb" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/black/corner,/area/storage/tools) -"bSc" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bSd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint2) -"bSe" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bSf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bSg" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bSh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint2) -"bSi" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bSj" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bSk" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bSl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/hallway/primary/central) -"bSm" = (/obj/machinery/door/poddoor/shutters{id = "teleporter"; name = "Teleporter Access Shutter"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHWEST)"; icon_state = "vault"; dir = 9},/area/teleporter) -"bSn" = (/obj/machinery/teleport/hub,/obj/machinery/button/door{id = "teleporter"; name = "Teleporter Shutter Control"; pixel_x = -24; pixel_y = 24; req_access_txt = "17"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/teleporter) -"bSo" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/teleporter) -"bSp" = (/obj/structure/cable/blue{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/teleporter) -"bSq" = (/obj/structure/cable/blue{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bSr" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/blue{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bSs" = (/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/captain) -"bSt" = (/obj/structure/sink{pixel_y = 24},/obj/machinery/light/small,/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/captain) -"bSu" = (/obj/structure/mirror{pixel_y = 28},/obj/item/weapon/soap/deluxe,/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/captain) -"bSv" = (/obj/machinery/door/window{base_state = "left"; dir = 2; icon_state = "left"; name = "Captain's Desk Door"; req_access_txt = "20"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bSw" = (/obj/structure/table/wood,/obj/item/weapon/storage/photo_album,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bSx" = (/obj/structure/table/wood,/obj/item/weapon/hand_tele,/obj/item/weapon/melee/chainofcommand,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bSy" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bSz" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31},/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bSA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fore) -"bSB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/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/maintenance/fore) -"bSC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/main) -"bSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel/black,/area/security/main) -"bSE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/main) -"bSF" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSL" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/obj/effect/landmark{name = "secequipment"},/obj/machinery/light,/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSM" = (/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel/darkred/side,/area/security/main) -"bSN" = (/obj/effect/landmark{name = "secequipment"},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/main) -"bSO" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bSP" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/armory) -"bSQ" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/armory) -"bSR" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/teargas,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/structure/cable,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/armory) -"bSS" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/closet/secure_closet/lethalshots,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bST" = (/obj/item/weapon/grenade/barrier,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/armory) -"bSU" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/stamp/hos,/obj/item/weapon/cartridge/detective,/obj/item/weapon/storage/secure/safe/HoS{pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 4; network = list("SS13"); start_active = 1},/turf/simulated/floor/carpet,/area/security/hos) -"bSV" = (/obj/machinery/button/door{id = "sanitarium"; name = "Ward Shutters Control"; pixel_x = -38; pixel_y = 29; req_access_txt = "0"},/obj/machinery/button/door{id = "hosspace"; name = "Space Shutters Control"; pixel_x = -26; pixel_y = 39},/obj/machinery/button/door{id = "hosprivacy"; name = "Privacy Shutters Control"; pixel_x = -38; pixel_y = 39},/obj/machinery/keycard_auth{pixel_x = -25; pixel_y = 29},/turf/simulated/floor/carpet,/area/security/hos) -"bSW" = (/obj/structure/chair/comfy/black{tag = "icon-comfychair (NORTH)"; icon_state = "comfychair"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor/carpet,/area/security/hos) -"bSX" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/carpet,/area/security/hos) -"bSY" = (/obj/structure/table/glass,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (SOUTHWEST)"; icon_state = "whitered"; dir = 10},/area/security/prison) -"bSZ" = (/obj/machinery/light,/turf/simulated/floor/plasteel/whitered/side,/area/security/prison) -"bTa" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (SOUTHEAST)"; icon_state = "whitered"; dir = 6},/area/security/prison) -"bTb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/camera{c_tag = "Prison Wing South"; dir = 4; network = list("SS13","Brig")},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"bTc" = (/obj/structure/table,/obj/item/weapon/storage/box/hug/medical,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/darkred/side,/area/security/prison) -"bTd" = (/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/prison) -"bTe" = (/obj/structure/sink{pixel_y = 24},/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/prison) -"bTf" = (/obj/machinery/door/airlock{name = "Unisex Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/prison) -"bTg" = (/turf/simulated/floor/plasteel/showroomfloor,/area/security/prison) -"bTh" = (/obj/item/weapon/soap,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/prison) -"bTi" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/escape) -"bTj" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/escape) -"bTk" = (/obj/machinery/status_display,/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) -"bTl" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Cockpit"; req_access_txt = "19"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bTm" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/escape) -"bTn" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/library) -"bTo" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/library) -"bTp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/carpet,/area/library) -"bTq" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/library) -"bTr" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/library) -"bTs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/library) -"bTt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/library) -"bTu" = (/obj/structure/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/library) -"bTv" = (/obj/structure/chair/comfy/black{dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/wood,/area/library) -"bTw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bTx" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bTy" = (/obj/structure/sign/biohazard{pixel_x = -32},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (WEST)"; icon_state = "warndarkcorners"; dir = 8},/area/gateway) -"bTz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/gateway) -"bTA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/gateway) -"bTB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/gateway) -"bTC" = (/obj/structure/sign/biohazard{pixel_x = 32},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (EAST)"; icon_state = "warndarkcorners"; dir = 4},/area/gateway) -"bTD" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fpmaint) -"bTE" = (/turf/simulated/wall,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bTF" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 20},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bTG" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bTH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/camera{c_tag = "Bar South 1"; dir = 1; network = list("SS13")},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTK" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTL" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bTM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTN" = (/obj/structure/table/wood/poker,/obj/item/weapon/deck,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTO" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/weapon/coin/silver,/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTP" = (/obj/machinery/camera{c_tag = "Bar South 2"; dir = 1; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTR" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTS" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTT" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/carpet,/area/crew_quarters/bar) -"bTU" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bTV" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bTW" = (/obj/item/weapon/vending_refill/boozeomat,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bTX" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tools) -"bTY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/turf/simulated/floor/plasteel,/area/storage/tools) -"bTZ" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tools) -"bUa" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bUb" = (/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/green,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bUc" = (/obj/structure/rack,/obj/item/stack/sheet/metal{amount = 2},/obj/item/weapon/pen/invisible,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"bUd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Central Hallway South 1"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) -"bUe" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen/yellow,/obj/item/weapon/tank/internals/oxygen/red,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/teleporter) -"bUf" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/teleporter) -"bUg" = (/obj/structure/cable/blue,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/teleporter) -"bUh" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/teleporter) -"bUi" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/teleporter) -"bUj" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bUk" = (/obj/structure/cable/blue{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bUl" = (/obj/structure/chair/stool,/obj/structure/cable/blue{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bUm" = (/obj/machinery/computer/arcade,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bUn" = (/turf/simulated/wall,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bUo" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bUp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) -"bUq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"bUr" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = -30; pixel_y = 0},/obj/machinery/suit_storage_unit/hos,/turf/simulated/floor/carpet,/area/security/hos) -"bUs" = (/obj/machinery/computer/card/minor/hos,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/security/hos) -"bUt" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/computer/security{network = list("SS13","Brig","Prison")},/turf/simulated/floor/carpet,/area/security/hos) -"bUu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/computer/secure_data,/turf/simulated/floor/carpet,/area/security/hos) -"bUv" = (/obj/structure/closet/secure_closet/hos,/obj/item/weapon/bedsheet/hos,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac,/obj/machinery/newscaster/security_unit{pixel_x = 32; pixel_y = 0; tag = "e"},/obj/item/weapon/storage/secure/briefcase{pixel_x = -2},/turf/simulated/floor/carpet,/area/security/hos) -"bUw" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/security/prison) -"bUx" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/security/prison) -"bUy" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bUz" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bUA" = (/obj/machinery/button/flasher{id = "cockpit_flasher"; pixel_x = -6; pixel_y = 24},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bUB" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bUC" = (/obj/structure/chair{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bUD" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bUE" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/chapel/main) -"bUF" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/chapel/main) -"bUG" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/chapel/main) -"bUH" = (/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/chapel/main) -"bUI" = (/turf/simulated/wall,/area/chapel/main) -"bUJ" = (/obj/item/trash/can,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Escape Waiting Area"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUL" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Escape Waiting Area"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUM" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Escape Waiting Area"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUN" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"bUO" = (/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/turf/simulated/floor/engine,/area/gateway) -"bUP" = (/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/engine,/area/gateway) -"bUQ" = (/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/engine,/area/gateway) -"bUR" = (/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/engine,/area/gateway) -"bUS" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUT" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUU" = (/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUV" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUW" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUX" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bUY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Bar"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/bar,/area/crew_quarters/bar) -"bUZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVb" = (/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVd" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVe" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVf" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVg" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bVi" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bVj" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bVk" = (/obj/structure/cable/blue{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/turf/simulated/floor/plasteel/darkblue,/area/teleporter) -"bVl" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVm" = (/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVo" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVp" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVq" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "bluecorner"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bVs" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"bVt" = (/turf/simulated/wall,/area/security/armory) -"bVu" = (/turf/space{desc = "An excellent spot for bombs."},/area/space) -"bVv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/simulated/floor/plating,/area/security/hos) -"bVw" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/simulated/floor/plating,/area/security/prison) -"bVx" = (/turf/simulated/floor/plating,/area/security/prison) -"bVy" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_3) -"bVz" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_3) -"bVA" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_3) -"bVB" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bVC" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bVD" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bVE" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/chapel/main) -"bVF" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/chapel/main) -"bVG" = (/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/chapel/main) -"bVH" = (/obj/structure/chair{dir = 8},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/chapel/main) -"bVI" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVJ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVK" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVL" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_x = 32; pixel_y = 40; tag = "icon-direction_med (NORTH)"},/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 32; tag = "icon-direction_sec (EAST)"},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = 24; tag = "icon-direction_sci (EAST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVO" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVR" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Aft Port Hallway West 2"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVW" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVY" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bVZ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_y = 32; tag = "n"},/obj/machinery/camera{c_tag = "Aft Port Hallway"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWl" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWm" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Aft Port Hallway East 2"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWq" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bWr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Central Hallway South 3"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWu" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWv" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_x = -32; pixel_y = 32; tag = "icon-direction_med (NORTH)"},/obj/structure/sign/directions/science{dir = 8; icon_state = "direction_sci"; pixel_x = -32; pixel_y = 24; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/evac{dir = 1; icon_state = "direction_evac"; pixel_x = -32; pixel_y = 40; tag = "icon-direction_evac (NORTH)"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWw" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 32; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_x = 32; pixel_y = 24; tag = "icon-direction_eng (NORTH)"},/obj/structure/sign/directions{dir = 4; icon_state = "direction_supply"; name = "cargo bay"; pixel_x = 32; pixel_y = 40; tag = "icon-direction_supply"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWy" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30; tag = "n"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Hallway South 2"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bWB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/central) -"bWC" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/hallway/primary/central) -"bWD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "bluecorner"},/area/hallway/primary/central) -"bWE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWI" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWJ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWL" = (/obj/machinery/airalarm{pixel_x = 32; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWM" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWO" = (/obj/structure/cable/green{tag = "icon-1-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/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWP" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bWQ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/obj/machinery/camera{c_tag = "Escape Pod 3"; dir = 4; network = list("SS13","Brig")},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/security/prison) -"bWR" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) -"bWS" = (/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -26},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) -"bWT" = (/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_y = -32; possible_destinations = "pod_asteroid3"; shuttleId = "pod3"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) -"bWU" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_3) -"bWV" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_asteroid3"; name = "asteroid"},/turf/space,/area/space) -"bWW" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/escape) -"bWX" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bWY" = (/obj/structure/chair,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bWZ" = (/obj/machinery/computer/emergency_shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"bXa" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"bXb" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/turf/simulated/wall/shuttle/interior{icon_state = "swall_f6"},/area/shuttle/escape) -"bXc" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/chapel/main) -"bXd" = (/obj/structure/chair{dir = 8},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/chapel/main) -"bXe" = (/obj/structure/closet/body_bag,/obj/item/weapon/tank/internals/plasmaman/belt/full{name = "plasma tank"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXf" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXg" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP"; location = "CHE"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXi" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXj" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXk" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 17},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXl" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXm" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXn" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXo" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXp" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 16},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXq" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXr" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXs" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXt" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXu" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXv" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXw" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXx" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXy" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 22},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXA" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 19},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bXB" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bXC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bXD" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bXE" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) -"bXF" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) -"bXG" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd"; location = "HOP"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central) -"bXH" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central) -"bXI" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorm"; location = "HOP2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central) -"bXJ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central) -"bXK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{desc = ""; icon_state = "L13"; name = "floor"},/area/hallway/primary/central) -"bXL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bXM" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXP" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXQ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXR" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXS" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP2"; location = "Stbd"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXT" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXU" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXV" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; sortType = 1; tag = "icon-pipe-j1s (NORTH)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{glass = 1; name = "maintenance access"; opacity = 0; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bXZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYc" = (/obj/machinery/power/apc{auto_name = 0; dir = 1; name = "Aft Starboard Hallway APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/camera{c_tag = "Armory Aft Hallway"; network = list("SS13","Brig")},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYe" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYf" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bYg" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/security/prison) -"bYh" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_3) -"bYi" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_3) -"bYj" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/chapel/main) -"bYk" = (/obj/item/clothing/suit/radiation,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYl" = (/obj/structure/sign/directions{dir = 4; icon_state = "direction_supply"; name = "cargo bay"; pixel_y = -24; tag = "icon-direction_supply"},/obj/structure/sign/directions{dir = 4; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -32; tag = "icon-direction_bridge"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_x = 0; pixel_y = -40; tag = "icon-direction_eng (NORTH)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/camera{c_tag = "Aft Port Hallway West 3"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYp" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{auto_name = 0; dir = 2; name = "Aft Port Hallway APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYw" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYx" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning/corner,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/warning,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYB" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/warning,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYE" = (/obj/machinery/camera{c_tag = "Aft Port Hallway West 1"; dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYH" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYI" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/corner,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYK" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYL" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYP" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Aft Port Hallway East 1"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYT" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYV" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYW" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/purple/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYY" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bYZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bZa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bZb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bZc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central) -"bZd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central) -"bZe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central) -"bZf" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central) -"bZg" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central) -"bZh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central) -"bZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{desc = ""; icon_state = "L14"},/area/hallway/primary/central) -"bZj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bZk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown/corner,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown/corner,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel/brown/corner,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Aft Starboard Hallway West"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/brown/corner,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZs" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZu" = (/obj/machinery/door/firedoor,/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/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZw" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZB" = (/obj/machinery/camera{c_tag = "Aft Starboard Hallway East"; dir = 1; network = list("SS13")},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZD" = (/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZE" = (/turf/simulated/floor/plasteel,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZG" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"bZH" = (/obj/machinery/light/small{dir = 8},/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = -25},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"bZI" = (/turf/simulated/floor/plasteel/black,/area/chapel/main) -"bZJ" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"bZK" = (/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/obj/machinery/camera{c_tag = "Chapel Funeral Parlor"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"bZL" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/chapel/main) -"bZM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"bZN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"bZO" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bZP" = (/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bZQ" = (/obj/structure/closet/emcloset,/obj/machinery/light,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"bZR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{icon_state = "closed"; lockdownbyai = 0; locked = 0; name = "Gateway Storage"; req_access_txt = "62"},/turf/simulated/floor/plasteel/darkblue,/area/gateway) -"bZS" = (/turf/simulated/floor/plasteel/darkblue,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/gateway) -"bZT" = (/turf/simulated/floor/plasteel/darkblue,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/gateway) -"bZU" = (/turf/simulated/floor/plasteel/darkblue,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/gateway) -"bZV" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bZW" = (/turf/simulated/wall,/area/storage/primary) -"bZX" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/storage/primary) -"bZY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral,/area/storage/primary) -"bZZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral,/area/storage/primary) -"caa" = (/turf/simulated/wall,/area/crew_quarters/sleep) -"cab" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cac" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"cad" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cae" = (/turf/simulated/wall,/area/janitor) -"caf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/noslip,/area/janitor) -"cag" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/janitor) -"cah" = (/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cai" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "purple"},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"caj" = (/turf/simulated/floor/plasteel/purple/side,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"cak" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "purple"},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"cal" = (/obj/structure/sign/science,/turf/simulated/wall/r_wall,/area/toxins/lab) -"cam" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) -"can" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/purple,/area/medical/research{name = "Research Division"}) -"cao" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) -"cap" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/assembly/robotics) -"caq" = (/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (NORTH)"; icon_state = "loadingarea"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"car" = (/obj/machinery/button/door{dir = 2; id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 26; pixel_y = -24; req_one_access_txt = "29"},/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (NORTH)"; icon_state = "loadingarea"; dir = 1},/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"cas" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "Aft Port Hallway"}) -"cat" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cau" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"cav" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"caw" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"cax" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small,/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"cay" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"caz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small,/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"caA" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"caB" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"caC" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/warning,/area/hallway/primary/central) -"caD" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"caE" = (/turf/simulated/wall,/area/quartermaster/office) -"caF" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/office) -"caG" = (/obj/machinery/door/firedoor,/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 1; id = "packageExternal"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/office) -"caH" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/office) -"caI" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Delivery Desk"; req_access_txt = "50"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/office) -"caJ" = (/obj/machinery/status_display{density = 0; pixel_y = 2; supply_display = 1},/turf/simulated/wall,/area/quartermaster/office) -"caK" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/quartermaster/office) -"caL" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/quartermaster/office) -"caM" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; dir = 4},/area/quartermaster/office) -"caN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"caO" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"caP" = (/turf/simulated/wall/rust,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"caQ" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"caR" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/hallway/primary/starboard{name = "Aft Starboard Hallway"}) -"caS" = (/turf/simulated/wall,/area/maintenance/disposal) -"caT" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor/plating,/area/chapel/main) -"caU" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/chapel/main) -"caV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/chapel/main) -"caW" = (/obj/machinery/mass_driver{dir = 8; id = "chapelgun"},/obj/machinery/door/window/southleft{dir = 4; name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/chapel/main) -"caX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"caY" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"caZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cba" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cbb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Funeral Parlour"; opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cbc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cbd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cbe" = (/obj/structure/table/wood,/obj/item/candle,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cbf" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cbg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"cbh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"cbi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"cbj" = (/turf/simulated/wall,/area/storage/emergency2) -"cbk" = (/obj/machinery/door/airlock{name = "Port Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/storage/emergency2) -"cbl" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/emergency2) -"cbm" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cbn" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cbo" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"cbp" = (/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/gateway) -"cbq" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = 24; pixel_y = 24; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/gateway) -"cbr" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/gateway) -"cbs" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cbt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/storage/primary) -"cbu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/storage/primary) -"cbv" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/storage/primary) -"cbw" = (/obj/structure/table,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/crowbar,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel,/area/storage/primary) -"cbx" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel,/area/storage/primary) -"cby" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/storage/primary) -"cbz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/storage/primary) -"cbA" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/crowbar,/obj/item/weapon/weldingtool,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/storage/primary) -"cbB" = (/obj/structure/bed,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/crew_quarters/sleep) -"cbC" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cbD" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cbE" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cbF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"cbG" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/sleep) -"cbH" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cbI" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cbJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cbK" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/sleep) -"cbL" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "Dorm5"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"cbM" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/bed,/obj/item/weapon/bedsheet/orange,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"cbN" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"cbO" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/noslip,/area/janitor) -"cbP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/noslip,/area/janitor) -"cbQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Custodial Closet"; network = list("SS13")},/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/noslip,/area/janitor) -"cbR" = (/obj/structure/janitorialcart,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/turf/simulated/floor/noslip,/area/janitor) -"cbS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cbT" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cbU" = (/turf/simulated/wall/r_wall,/area/toxins/lab) -"cbV" = (/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/lab) -"cbW" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Research and Development Desk"; req_access_txt = "7"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cbX" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/research{name = "Research Division"}) -"cbY" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/turf/simulated/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"}) -"cbZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/research{name = "Research Division"}) -"cca" = (/turf/simulated/wall/r_wall,/area/assembly/robotics) -"ccb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/simulated/floor/plating,/area/assembly/robotics) -"ccc" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ccd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel/black,/area/assembly/chargebay) -"cce" = (/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "Mech Bay"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/darkwarning,/area/assembly/chargebay) -"ccf" = (/turf/simulated/wall,/area/assembly/chargebay) -"ccg" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cch" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/hallway/primary/central) -"cci" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/hallway/primary/central) -"ccj" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"cck" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/hallway/primary/central) -"ccl" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccm" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/office) -"ccn" = (/obj/structure/table,/obj/item/device/destTagger,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/office) -"cco" = (/obj/machinery/conveyor{dir = 1; id = "packageExternal"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccp" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "packageExternal"},/turf/simulated/floor/plasteel/brown{dir = 9},/area/quartermaster/office) -"ccq" = (/obj/structure/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/office) -"ccr" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/office) -"ccs" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cct" = (/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccu" = (/obj/structure/table,/obj/item/weapon/stamp,/obj/machinery/camera{c_tag = "Cargo Office"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccv" = (/obj/structure/table,/obj/item/weapon/stamp/denied,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccw" = (/obj/structure/chair,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/office) -"ccx" = (/obj/effect/landmark/start{name = "Assistant"},/obj/structure/chair,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/office) -"ccy" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccA" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ccB" = (/obj/item/clothing/under/color/rainbow,/obj/item/clothing/head/soft/rainbow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccC" = (/turf/simulated/wall,/area/maintenance/apmaint) -"ccD" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccE" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccF" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/simulated/floor/plating,/area/security/main) -"ccG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/light/small{dir = 1},/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/security/main) -"ccH" = (/obj/machinery/atmospherics/components/binary/valve/open{tag = "icon-mvalve_map (EAST)"; icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/security/main) -"ccI" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/security/main) -"ccJ" = (/turf/simulated/wall/rust,/area/storage/emergency) -"ccK" = (/turf/simulated/wall,/area/storage/emergency) -"ccL" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/storage/emergency) -"ccM" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/emergency) -"ccN" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/disposal) -"ccO" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/disposal) -"ccP" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/disposal) -"ccQ" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/disposal) -"ccR" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ccS" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ccT" = (/obj/machinery/mineral/stacking_unit_console{dir = 2; machinedir = 4; pixel_y = 32},/obj/machinery/conveyor{dir = 1; id = "garbage2"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ccU" = (/obj/machinery/mineral/stacking_machine{input_dir = 8; output_dir = 2},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/disposal) -"ccV" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/disposal) -"ccW" = (/turf/simulated/wall,/area/chapel/office) -"ccX" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel/black,/area/chapel/office) -"ccY" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/eastleft{dir = 1; name = "Coffin Storage"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/chapel/office) -"ccZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cda" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/chapel/main) -"cdb" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/chapel/main) -"cdc" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/chapel/main) -"cdd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"cde" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cdf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdg" = (/turf/simulated/floor/plating,/area/storage/emergency2) -"cdh" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plating,/area/storage/emergency2) -"cdi" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdl" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdm" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdn" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/black,/area/gateway) -"cdo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/gateway) -"cdp" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel/black,/area/gateway) -"cdq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/black,/area/gateway) -"cdr" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/gateway) -"cds" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/item/weapon/wrench,/obj/item/device/analyzer,/obj/item/weapon/screwdriver{pixel_y = 16},/turf/simulated/floor/plasteel,/area/storage/primary) -"cdt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/storage/primary) -"cdu" = (/turf/simulated/floor/plasteel,/area/storage/primary) -"cdv" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/storage/primary) -"cdw" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/screwdriver{pixel_y = 16},/turf/simulated/floor/plasteel,/area/storage/primary) -"cdx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cdy" = (/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cdz" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cdA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cdB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/sleep) -"cdC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cdD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cdE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cdF" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cdG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "Dorm5"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/sleep) -"cdH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"cdI" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"cdJ" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"cdK" = (/obj/structure/closet/jcloset,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/item/stack/tile/noslip{amount = 30},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/noslip,/area/janitor) -"cdL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/noslip,/area/janitor) -"cdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/noslip,/area/janitor) -"cdN" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/noslip,/area/janitor) -"cdO" = (/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cdP" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cdQ" = (/obj/machinery/camera{c_tag = "Research and Development Lab"; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/toxins/lab) -"cdR" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/lab) -"cdS" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/lab) -"cdT" = (/obj/machinery/button/door{dir = 2; id = "rnd"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = 24; req_access_txt = "47"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/lab) -"cdU" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warnwhitecorner"},/area/toxins/lab) -"cdV" = (/obj/machinery/shower{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/research{name = "Research Division"}) -"cdW" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"}) -"cdX" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/shower{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/research{name = "Research Division"}) -"cdY" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cdZ" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cea" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/button/door{dir = 2; id = "robotics"; name = "Shutters Control Button"; pixel_x = -24; pixel_y = 24; req_access_txt = "29"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ceb" = (/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cec" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ced" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/assembly/robotics) -"cef" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (WEST)"; icon_state = "warndarkcorners"; dir = 8},/area/assembly/chargebay) -"ceg" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/assembly/chargebay) -"ceh" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/assembly/chargebay) -"cei" = (/obj/machinery/button/door{dir = 2; id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 26; pixel_y = 24; req_one_access_txt = "29"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/assembly/chargebay) -"cej" = (/turf/simulated/floor/plasteel/darkwarning/corner{tag = "icon-warndarkcorners (EAST)"; icon_state = "warndarkcorners"; dir = 4},/area/assembly/chargebay) -"cek" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/turf/simulated/floor/plating,/area/assembly/chargebay) -"cel" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cem" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cen" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/hallway/primary/central) -"ceo" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"cep" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/hallway/primary/central) -"ceq" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cer" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ces" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating,/area/quartermaster/office) -"cet" = (/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo Bay RC"; pixel_x = -30; pixel_y = 0},/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; dir = 4},/area/quartermaster/office) -"ceu" = (/turf/simulated/floor/plasteel/loadingarea,/area/quartermaster/office) -"cev" = (/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/quartermaster/office) -"cew" = (/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cex" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cey" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Cargo Desk"; req_access_txt = "50"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/office) -"cez" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ceA" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ceB" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ceC" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ceD" = (/obj/item/clothing/shoes/sneakers/rainbow,/obj/item/clothing/gloves/color/rainbow,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ceE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) -"ceF" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ceG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ceH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Distro to Virology"; on = 1},/turf/simulated/floor/plating,/area/security/main) -"ceI" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/machinery/meter,/turf/simulated/floor/plating,/area/security/main) -"ceJ" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/item/weapon/wrench,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/security/main) -"ceK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/security/main) -"ceL" = (/turf/simulated/floor/plating,/area/storage/emergency) -"ceM" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plating,/area/storage/emergency) -"ceN" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/apmaint) -"ceO" = (/turf/simulated/floor/plating,/area/maintenance/disposal) -"ceP" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "garbage"; name = "disposal coveyor"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ceQ" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/disposal) -"ceR" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "garbage3"; name = "metal coveyor"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ceS" = (/obj/machinery/conveyor{dir = 1; id = "garbage2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/disposal) -"ceT" = (/obj/machinery/conveyor{dir = 1; id = "garbage3"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ceU" = (/obj/structure/closet/coffin,/turf/simulated/floor/plasteel/black,/area/chapel/office) -"ceV" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{dir = 4; name = "Coffin Storage"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/black,/area/chapel/office) -"ceW" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"ceX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"ceY" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Chapel Office"; network = list("SS13")},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"ceZ" = (/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cfa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/simulated/floor/plasteel/black,/area/chapel/office) -"cfb" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/chapel/main) -"cfc" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHEAST)"; icon_state = "chapel"; dir = 6},/area/chapel/main) -"cfd" = (/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"cfe" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cff" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency2) -"cfg" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/emergency2) -"cfh" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency2) -"cfi" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/storage/emergency2) -"cfj" = (/turf/simulated/wall/rust,/area/storage/emergency2) -"cfk" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cfl" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cfm" = (/obj/item/weapon/c_tube,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"cfn" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cfo" = (/obj/structure/closet/radiation,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"cfp" = (/obj/structure/closet/secure_closet/exile,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"cfq" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light,/obj/machinery/camera{c_tag = "Gateway Storage"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"cfr" = (/obj/structure/table,/obj/machinery/recharger,/obj/item/weapon/paper/pamphlet,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/black,/area/gateway) -"cfs" = (/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,/turf/simulated/floor/plasteel/black,/area/gateway) -"cft" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Tool Storage"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/storage/primary) -"cfu" = (/turf/simulated/floor/plasteel/delivery,/area/storage/primary) -"cfv" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel,/area/storage/primary) -"cfw" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel,/area/storage/primary) -"cfx" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/sleep) -"cfy" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cfz" = (/obj/structure/table/wood,/obj/item/clothing/mask/balaclava{pixel_x = -8; pixel_y = 8},/obj/item/device/paicard,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cfA" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cfB" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/sleep) -"cfC" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/noslip,/area/janitor) -"cfD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/noslip,/area/janitor) -"cfE" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Janitor"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/noslip,/area/janitor) -"cfF" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/noslip,/area/janitor) -"cfG" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cfH" = (/obj/structure/table/glass,/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/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cfI" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/lab) -"cfJ" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/plasteel,/area/toxins/lab) -"cfK" = (/turf/simulated/floor/plasteel,/area/toxins/lab) -"cfL" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel,/area/toxins/lab) -"cfM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/lab) -"cfN" = (/obj/structure/closet/firecloset/full,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/area/medical/research{name = "Research Division"}) -"cfO" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"}) -"cfP" = (/obj/structure/closet/firecloset/full,/obj/machinery/camera{c_tag = "Research Division Access"; dir = 8; network = list("SS13","Sci"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/area/medical/research{name = "Research Division"}) -"cfQ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/obj/item/weapon/stock_parts/cell/high/plus{pixel_x = -4; pixel_y = -2},/obj/item/weapon/stock_parts/cell/high/plus{pixel_x = 4; pixel_y = 3},/obj/item/weapon/stock_parts/cell/high/plus,/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cfR" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cfS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cfT" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cfU" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/stack/cable_coil/green,/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cfV" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/assembly/robotics) -"cfW" = (/obj/machinery/mech_bay_recharge_port{tag = "icon-recharge_port"; icon_state = "recharge_port"; dir = 2},/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/assembly/chargebay) -"cfX" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cfY" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/assembly/chargebay) -"cfZ" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cga" = (/obj/machinery/mech_bay_recharge_port{tag = "icon-recharge_port"; icon_state = "recharge_port"; dir = 2},/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/assembly/chargebay) -"cgb" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/quartermaster/office) -"cgc" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cge" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/bot,/area/quartermaster/office) -"cgf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgg" = (/obj/machinery/computer/cargo,/turf/simulated/floor/plasteel/brown/corner,/area/quartermaster/office) -"cgh" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/computer/cargo/request,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/quartermaster/office) -"cgi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgn" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Cargo Waiting Area"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cgo" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/wall,/area/maintenance/apmaint) -"cgp" = (/turf/simulated/wall/rust,/area/maintenance/apmaint) -"cgq" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/simulated/floor/plating,/area/security/main) -"cgr" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency) -"cgs" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/emergency) -"cgt" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency) -"cgu" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/storage/emergency) -"cgv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cgw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cgx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cgy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 1; id = "garbage2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/disposal) -"cgz" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cgA" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/disposal) -"cgB" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/disposal) -"cgC" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cgD" = (/obj/machinery/conveyor{dir = 1; id = "garbage3"},/obj/machinery/disposal/deliveryChute{tag = "icon-intake (NORTH)"; icon_state = "intake"; dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/disposal) -"cgE" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/chapel/office) -"cgF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cgG" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cgH" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cgI" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/chapel/office) -"cgJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cgK" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cgL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"cgM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"cgN" = (/turf/simulated/floor/carpet,/area/chapel/main) -"cgO" = (/turf/simulated/wall,/area/maintenance/fsmaint) -"cgP" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/meter,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cgQ" = (/obj/structure/grille,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cgR" = (/turf/simulated/wall/rust,/area/maintenance/fsmaint) -"cgS" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel,/area/storage/primary) -"cgT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/storage/primary) -"cgU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/primary) -"cgV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/storage/primary) -"cgW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"cgX" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel,/area/storage/primary) -"cgY" = (/obj/structure/dresser,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cgZ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/bed,/obj/item/weapon/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cha" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"chb" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Dormitories"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/sleep) -"chc" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"chd" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/weapon/coin/silver,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"che" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"chf" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/sleep) -"chg" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "Dorm6"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"chh" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"chi" = (/turf/simulated/floor/plasteel/delivery,/area/janitor) -"chj" = (/obj/vehicle/janicart,/obj/item/key/janitor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/noslip,/area/janitor) -"chk" = (/obj/structure/table,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; name = "Custodial Closet RC"; pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/noslip,/area/janitor) -"chl" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"chm" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"chn" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/plasteel/warning,/area/toxins/lab) -"cho" = (/turf/simulated/floor/plasteel/warning,/area/toxins/lab) -"chp" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/plasteel/warning,/area/toxins/lab) -"chq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/lab) -"chr" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"}) -"chs" = (/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/crowbar,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cht" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"chu" = (/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/plasteel/whitebot,/area/assembly/robotics) -"chv" = (/obj/structure/chair/stool,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"chw" = (/obj/structure/table,/obj/item/stack/sheet/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/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"chx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/assembly/robotics) -"chy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/mech_bay_recharge_floor,/area/assembly/chargebay) -"chz" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"chA" = (/obj/machinery/hologram/holopad,/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"chB" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"chC" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 8; network = list("SS13","Sci"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/mech_bay_recharge_floor,/area/assembly/chargebay) -"chD" = (/turf/simulated/wall/r_wall,/area/security/nuke_storage) -"chE" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/security/nuke_storage) -"chF" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/vault{icon_state = "closed"; locked = 1; req_access_txt = "53"},/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) -"chG" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/nuke_storage) -"chH" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/quartermaster/office) -"chI" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/quartermaster/office) -"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"chK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"chL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/office) -"chM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"chN" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/office) -"chO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"chP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"chQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"chR" = (/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chU" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chV" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"chX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chZ" = (/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cia" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cib" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cic" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cid" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cie" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "garbage2"; name = "disposal coveyor secondary"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cif" = (/obj/machinery/conveyor{dir = 1; id = "garbage2"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cig" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/massdriver{id = "trash"; pixel_x = 26; pixel_y = -6},/obj/machinery/button/door{id = "Disposal Exit"; name = "Disposal Vent Control"; pixel_x = 25; pixel_y = 4; req_access_txt = "12"},/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/disposal) -"cih" = (/turf/simulated/wall/r_wall/rust,/area/maintenance/disposal) -"cii" = (/turf/simulated/wall/r_wall,/area/maintenance/disposal) -"cij" = (/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chapel RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cik" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Chaplain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cil" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cim" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cin" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/chapel/office) -"cio" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cip" = (/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/chapel/main) -"ciq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cir" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"cis" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cit" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"civ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"cix" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/gateway) -"ciy" = (/obj/structure/rack,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/newspaper,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciz" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciB" = (/obj/structure/cable/green{tag = "icon-1-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 = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciC" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"ciE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/storage/primary) -"ciF" = (/obj/structure/table,/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; name = "Tool Storage RC"; pixel_y = -30},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/storage/primary) -"ciG" = (/obj/machinery/vending/tool,/obj/machinery/light,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel,/area/storage/primary) -"ciH" = (/obj/machinery/vending/assist,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/obj/machinery/camera{c_tag = "Primary Tool Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/storage/primary) -"ciI" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/obj/item/device/t_scanner,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/obj/item/device/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/assembly/igniter,/turf/simulated/floor/plasteel,/area/storage/primary) -"ciJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/storage/primary) -"ciK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) -"ciL" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ciM" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"ciN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/sleep) -"ciO" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"ciP" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"ciQ" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"ciR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "Dorm6"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/sleep) -"ciS" = (/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/janitor) -"ciT" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/janitor) -"ciU" = (/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/lab) -"ciV" = (/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/toxins/lab) -"ciW" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ciX" = (/turf/simulated/wall,/area/toxins/lab) -"ciY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4},/area/medical/research{name = "Research Division"}) -"ciZ" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/medical/research{name = "Research Division"}) -"cja" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)"; icon_state = "whitepurplecorner"; dir = 1},/area/medical/research{name = "Research Division"}) -"cjb" = (/turf/simulated/wall,/area/assembly/robotics) -"cjc" = (/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,/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cjd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cje" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cjf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cjg" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cjh" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cji" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/assembly/robotics) -"cjj" = (/obj/machinery/computer/mech_bay_power_console,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cjk" = (/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cjl" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/assembly/chargebay) -"cjm" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cjn" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cjo" = (/obj/structure/closet/secure_closet/freezer/money,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/nuke_storage) -"cjp" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/nuke_storage) -"cjq" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/nuke_storage) -"cjr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/nuke_storage) -"cjs" = (/obj/structure/safe{pixel_x = 4; pixel_y = 0},/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The seven is slightly darker than the other numbers."; tag = "seven"},/obj/item/weapon/paper/crumpled{info = "The eighth is almost certainly too close to disappearing for comfort..."},/obj/item/weapon/twohanded/singularityhammer{desc = "This hammer harnesses the power of a miniaturized singularity to deal crushing blows, at least in theory."; force_wielded = 10; origin_tech = "combat=4;bluespace=3"},/obj/item/weapon/sord,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/nuke_storage) -"cjt" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/quartermaster/office) -"cju" = (/obj/machinery/light/small,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cjv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cjw" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cjx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cjy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel/brown/corner,/area/quartermaster/office) -"cjz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/quartermaster/office) -"cjA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office) -"cjB" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/quartermaster/office) -"cjC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/quartermaster/office) -"cjD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (NORTH)"; icon_state = "loadingarea"; dir = 1},/area/quartermaster/office) -"cjE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cjF" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cjG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/quartermaster/office) -"cjH" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjM" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/apmaint) -"cjP" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cjQ" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/maintenance/disposal) -"cjR" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/disposal) -"cjS" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/disposal) -"cjT" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/disposal) -"cjU" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; layer = 3.3; name = "disposal exit vent"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cjV" = (/obj/machinery/mass_driver{dir = 4; id = "trash"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cjW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cjX" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/disposal) -"cjY" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"cjZ" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/fancy/candle_box,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cka" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"ckb" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"ckc" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"ckd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"cke" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/chapel/office) -"ckf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"ckg" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHWEST)"; icon_state = "chapel"; dir = 9},/area/chapel/main) -"ckh" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-chapel (NORTHEAST)"; icon_state = "chapel"; dir = 5},/area/chapel/main) -"cki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) -"ckj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"ckk" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckl" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/rust,/area/maintenance/fsmaint) -"ckm" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"ckn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cko" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"ckp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cks" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckt" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cku" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckv" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckw" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ckx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cky" = (/obj/machinery/requests_console{department = "Crew Quarters"; name = "Dormitories RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/sleep) -"ckz" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"ckA" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/obj/item/device/instrument/violin,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"ckB" = (/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/sleep) -"ckC" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint2) -"ckD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"ckE" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/janitor) -"ckF" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Research Division"},/turf/simulated/floor/plasteel/whitebot,/area/toxins/lab) -"ckG" = (/turf/simulated/floor/plasteel/whitebot/delivery,/area/toxins/lab) -"ckH" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/lab) -"ckI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ckJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whitebot,/area/toxins/lab) -"ckK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"ckL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/whitepurple/corner,/area/toxins/lab) -"ckM" = (/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/lab) -"ckN" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (WEST)"; icon_state = "whitepurplecorner"; dir = 8},/area/medical/research{name = "Research Division"}) -"ckO" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"ckP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whitepurple/corner,/area/medical/research{name = "Research Division"}) -"ckQ" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/assembly/robotics) -"ckR" = (/obj/machinery/button/door{dir = 2; id = "robotics2"; name = "Shutters Control Button"; pixel_x = -24; pixel_y = 24; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurplecorner"},/area/assembly/robotics) -"ckS" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/assembly/robotics) -"ckT" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/assembly/robotics) -"ckU" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/assembly/robotics) -"ckV" = (/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/assembly/robotics) -"ckW" = (/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/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/assembly/robotics) -"ckX" = (/obj/machinery/recharge_station,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/assembly/chargebay) -"ckY" = (/turf/simulated/floor/plasteel/black,/area/assembly/chargebay) -"ckZ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/crowbar/large,/obj/structure/cable/pink,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/light,/obj/item/mecha_parts/mecha_tracking,/obj/item/mecha_parts/mecha_tracking,/obj/item/mecha_parts/mecha_tracking,/obj/item/mecha_parts/mecha_tracking,/turf/simulated/floor/plasteel/black,/area/assembly/chargebay) -"cla" = (/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/black,/area/assembly/chargebay) -"clb" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/assembly/chargebay) -"clc" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cld" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cle" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/nuke_storage) -"clf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/security/nuke_storage) -"clg" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"clh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"cli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"clj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/security/nuke_storage) -"clk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cll" = (/turf/simulated/floor/plasteel/brown{dir = 10; icon_state = "brown"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/obj/structure/chair/stool,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/quartermaster/office) -"clm" = (/turf/simulated/floor/plasteel/brown,/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/turf/simulated/floor/plasteel/warningline,/area/quartermaster/office) -"cln" = (/turf/simulated/floor/plasteel/brown,/obj/machinery/camera{c_tag = "Cargo Office West"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel/warningline,/area/quartermaster/office) -"clo" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/quartermaster/office) -"clp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"clq" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"clr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/quartermaster/office) -"cls" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption{input_dir = 2; ore_pickup_rate = 30; output_dir = 1},/turf/simulated/floor/plasteel/delivery,/area/quartermaster/office) -"clt" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint/supply) -"clu" = (/turf/simulated/wall,/area/security/checkpoint/supply) -"clv" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/apmaint) -"clw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clx" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cly" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/apmaint) -"clA" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clB" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/girder{layer = 2.6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clD" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clE" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/girder{layer = 2.6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clF" = (/turf/simulated/wall/rust,/area/maintenance/disposal) -"clG" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"clH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"clI" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"clJ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/grimy,/area/chapel/office) -"clK" = (/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"clL" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{tag = "icon-chapel (SOUTHWEST)"; icon_state = "chapel"; dir = 10},/area/chapel/main) -"clM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/carpet,/area/chapel/main) -"clN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"clO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"clP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"clQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"clR" = (/turf/simulated/wall,/area/maintenance/electrical) -"clS" = (/turf/simulated/wall/rust,/area/maintenance/electrical) -"clT" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/wall,/area/maintenance/electrical) -"clU" = (/obj/item/weapon/pen/invisible,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"clV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"clW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"clX" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"clY" = (/obj/structure/cable/green{tag = "icon-4-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/fsmaint) -"clZ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cma" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cmb" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/storage/primary) -"cmc" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cmd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cme" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cmf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cmg" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cmh" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/bed,/obj/item/weapon/bedsheet/green,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cmi" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cmj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/sleep) -"cmk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/sleep) -"cml" = (/obj/structure/dresser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "Dorm4"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cmm" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/bed,/obj/item/weapon/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cmn" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cmo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cmp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cmq" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cmr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cmt" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"cmu" = (/obj/structure/chair/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)"; icon_state = "whitepurplecorner"; dir = 1},/area/toxins/lab) -"cmv" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cmw" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cmx" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cmy" = (/obj/structure/cable/pink{tag = "icon-4-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/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"cmz" = (/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{desc = "It opens and closes. Just as secure as ever, or in other words not at all."; glass = 1; name = "Research and Development Lab"; opacity = 0; req_access_txt = "0"},/turf/simulated/floor/plasteel/whitepurple,/area/toxins/lab) -"cmA" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{sortType = 12},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cmB" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cmC" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; sortType = 14; tag = "icon-pipe-j1s (NORTH)"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cmD" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{glass = 0; name = "Robotics Lab"; opacity = 1; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whitepurple,/area/assembly/robotics) -"cmE" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/assembly/robotics) -"cmF" = (/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/assembly/robotics) -"cmG" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/assembly/robotics) -"cmH" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/assembly/robotics) -"cmI" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/assembly/robotics) -"cmJ" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/assembly/robotics) -"cmK" = (/turf/simulated/wall/r_wall,/area/assembly/chargebay) -"cmL" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/maintenance/asmaint2) -"cmM" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space/nearstation) -"cmN" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/security/nuke_storage) -"cmO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/mob/living/simple_animal/mouse/brown/Tom,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"cmP" = (/obj/machinery/nuclearbomb/selfdestruct,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/nuke_storage) -"cmQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"cmR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/security/nuke_storage) -"cmS" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/wall/r_wall,/area/maintenance/apmaint) -"cmT" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/apmaint) -"cmU" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/quartermaster/office) -"cmV" = (/obj/machinery/conveyor{dir = 8; id = "packageSort2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/quartermaster/office) -"cmW" = (/obj/machinery/conveyor{dir = 8; id = "packageSort2"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/quartermaster/office) -"cmX" = (/obj/machinery/conveyor{dir = 8; id = "packageSort2"},/turf/simulated/floor/plating,/area/quartermaster/office) -"cmY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8; eject_range = 4},/turf/simulated/floor/plating,/area/quartermaster/office) -"cmZ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/office) -"cna" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1; eject_range = 1},/turf/simulated/floor/plating,/area/quartermaster/office) -"cnb" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/office) -"cnc" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/office) -"cnd" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/office) -"cne" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/quartermaster/office) -"cnf" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/quartermaster/office) -"cng" = (/turf/simulated/floor/plasteel/red/corner,/area/quartermaster/office) -"cnh" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHWEST)"; icon_state = "darkred"; dir = 9},/area/security/checkpoint/supply) -"cni" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/checkpoint/supply) -"cnj" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/table,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Cargo Post RC"; pixel_x = 0; pixel_y = 30},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Cargo Security Post"; network = list("SS13")},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTHEAST)"; icon_state = "darkred"; dir = 5},/area/security/checkpoint/supply) -"cnk" = (/obj/structure/cable/orange{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"cnl" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnm" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnn" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cno" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnp" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnq" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnr" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cns" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnt" = (/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cnu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/chapel/office) -"cnv" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/simulated/floor/plasteel/black,/area/chapel/office) -"cnw" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cnx" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light/small,/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cny" = (/obj/machinery/camera{c_tag = "Chapel"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cnz" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cnA" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cnB" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/mech_bay_recharge_port,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cnC" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/electrical) -"cnD" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cnE" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cnF" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cnG" = (/turf/simulated/wall,/area/construction) -"cnH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/construction) -"cnI" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/wall,/area/construction) -"cnJ" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/rust,/area/construction) -"cnK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/construction) -"cnL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnM" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnN" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnP" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnS" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cnT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/sleep) -"cnU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cnV" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cnW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral,/area/crew_quarters/sleep) -"cnX" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"cnY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/wardrobe/grey,/obj/item/weapon/lighter/greyscale,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cnZ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coa" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cob" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coc" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/book/manual/research_and_development,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cod" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/obj/item/weapon/stock_parts/cell/high/plus,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"coe" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/pink,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cof" = (/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/light/small,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"cog" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"coh" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4},/area/toxins/lab) -"coi" = (/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/lab) -"coj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/whitepurple/corner{tag = "icon-whitepurplecorner (NORTH)"; icon_state = "whitepurplecorner"; dir = 1},/area/medical/research{name = "Research Division"}) -"cok" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"col" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) -"com" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/assembly/robotics) -"con" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/assembly/robotics) -"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/assembly/robotics) -"cop" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/assembly/robotics) -"coq" = (/turf/simulated/floor/plasteel/black,/area/assembly/robotics) -"cor" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/assembly/robotics) -"cos" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/assembly/robotics) -"cot" = (/obj/machinery/door/airlock/maintenance{name = "Robotics Lab Maintenance"; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/assembly/robotics) -"cou" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cov" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cow" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cox" = (/obj/structure/rack,/obj/item/weapon/newspaper,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coy" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coz" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coA" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"coC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/nuke_storage) -"coD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/security/nuke_storage) -"coE" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"coF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"coG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; luminosity = 2},/area/security/nuke_storage) -"coH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/security/nuke_storage) -"coI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"coJ" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"coK" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/office) -"coL" = (/obj/structure/disposalpipe/wrapsortjunction{tag = "icon-pipe-j1s (WEST)"; icon_state = "pipe-j1s"; dir = 8},/turf/simulated/wall,/area/quartermaster/office) -"coM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/office) -"coN" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 2},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"coO" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 3},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"coP" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction{tag = "icon-pipe-y (WEST)"; icon_state = "pipe-y"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"coQ" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"coR" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"coS" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/red/side{tag = "icon-red (EAST)"; icon_state = "red"; dir = 4},/area/quartermaster/office) -"coT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred,/area/security/checkpoint/supply) -"coU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/checkpoint/supply) -"coV" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/landmark/start/depsec/supply,/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/security/checkpoint/supply) -"coW" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/computer/security/mining,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/checkpoint/supply) -"coX" = (/turf/simulated/wall,/area/quartermaster/miningdock) -"coY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/quartermaster/miningdock) -"coZ" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"cpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpb" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpc" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpe" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cpg" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cph" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cpi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/machinery/camera{c_tag = "Chapel Crematorium"; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cpj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cpk" = (/obj/structure/bodycontainer/crematorium,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/airalarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cpl" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 0; pixel_y = -25},/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/black,/area/chapel/office) -"cpm" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/chapel/office) -"cpn" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 0; pixel_y = -25},/obj/structure/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/chapel/main) -"cpo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/wall,/area/chapel/main) -"cpp" = (/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cpq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/chapel/main) -"cpr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cps" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cpt" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cpu" = (/turf/simulated/floor/plating,/area/maintenance/electrical) -"cpv" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/electrical) -"cpw" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cpx" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cpy" = (/obj/structure/chair/stool,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/electrical) -"cpz" = (/obj/structure/rack,/obj/item/stack/cable_coil/green,/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 3},/obj/item/stack/cable_coil/green,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cpA" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cpB" = (/obj/structure/computerframe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/construction) -"cpC" = (/obj/structure/computerframe,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cpD" = (/obj/structure/table,/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/obj/item/clothing/gloves/color/fyellow,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cpE" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cpF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cpG" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cpH" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/device/assembly/mousetrap,/obj/item/trash/deadmouse,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"cpI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cpJ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cpK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"cpL" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"cpM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"cpN" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cpO" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/wall/rust,/area/maintenance/asmaint2) -"cpP" = (/turf/simulated/wall,/area/maintenance/asmaint2) -"cpQ" = (/turf/simulated/wall/r_wall,/area/toxins/server) -"cpR" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/science) -"cpS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/turf/simulated/floor/plating,/area/security/checkpoint/science) -"cpT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cpU" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cpV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Science Hallway North"; dir = 8; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cpW" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/item/clothing/glasses/welding,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"cpX" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/assembly/robotics) -"cpY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/assembly/robotics) -"cpZ" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/assembly/robotics) -"cqa" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/black,/area/assembly/robotics) -"cqb" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/assembly/robotics) -"cqc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/assembly/robotics) -"cqd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cqe" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cqf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint2) -"cqg" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cqh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cqi" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold,/obj/item/stack/sheet/mineral/gold,/obj/item/stack/sheet/mineral/gold,/obj/item/weapon/storage/belt/champion,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/nuke_storage) -"cqj" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) -"cqk" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "Vault"; dir = 1; network = list("SS13"); start_active = 1},/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/nuke_storage) -"cql" = (/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) -"cqm" = (/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"},/obj/item/stack/sheet/mineral/silver,/obj/item/stack/sheet/mineral/silver,/obj/item/stack/sheet/mineral/silver,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/nuke_storage) -"cqn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqo" = (/turf/simulated/wall,/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cqp" = (/obj/structure/rack,/obj/item/weapon/electronics/airalarm,/obj/item/weapon/electronics/airlock,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cqq" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cqr" = (/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cqs" = (/obj/structure/rack,/obj/item/weapon/electronics/firelock,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/firealarm,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cqt" = (/turf/simulated/floor/fakespace,/area/quartermaster/storage) -"cqu" = (/turf/simulated/wall,/area/quartermaster/storage) -"cqv" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/obj/machinery/camera{c_tag = "Cargo Office South"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cqw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cqx" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cqy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cqz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/photocopier,/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (EAST)"; icon_state = "redcorner"; dir = 4},/area/quartermaster/office) -"cqA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/supply) -"cqB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHWEST)"; icon_state = "darkred"; dir = 10},/area/security/checkpoint/supply) -"cqC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/darkred/side,/area/security/checkpoint/supply) -"cqD" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 11; tag = "e"},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/checkpoint/supply) -"cqE" = (/obj/structure/closet/wardrobe/miner,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/quartermaster/miningdock) -"cqF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/quartermaster/miningdock) -"cqG" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cqH" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/mining) -"cqI" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/mining) -"cqJ" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/mining) -"cqK" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/mining) -"cqL" = (/obj/structure/table,/obj/item/weapon/poster/legit,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqM" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqN" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqO" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqP" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Aft Starboard Solar Maintenance"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cqQ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"cqR" = (/obj/structure/bodycontainer/morgue,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cqS" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cqT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cqU" = (/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cqV" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cqW" = (/obj/structure/closet/cardboard{desc = "Just a box... Contains Emergency Supplies."},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cqX" = (/obj/structure/rack,/obj/item/weapon/lipstick/random,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cqY" = (/obj/structure/rack,/obj/item/weapon/stock_parts/capacitor,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cqZ" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"cra" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crb" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crc" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Aft Port Solar Maintenance"; dir = 1; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/fsmaint) -"cre" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/fsmaint) -"crf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/fsmaint) -"crg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cri" = (/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"crj" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"crk" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"crl" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"crm" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"crn" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cro" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/construction) -"crp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"crq" = (/obj/structure/table_frame,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"crr" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crs" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crt" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"cru" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crv" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crw" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"crx" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"cry" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"crz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"crA" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"crB" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"crC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Showers"; network = list("SS13")},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"crD" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crE" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crF" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crG" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crH" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crI" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crJ" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/reagent_containers/dropper,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"crK" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"crL" = (/obj/machinery/airalarm/server{pixel_y = 23},/obj/machinery/camera{c_tag = "Server Room"; network = list("Sci")},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"crM" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"crN" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel/darkred/side{dir = 9},/area/security/checkpoint/science) -"crO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (NORTH)"; icon_state = "darkred"; dir = 1},/area/security/checkpoint/science) -"crP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{dir = 5},/area/security/checkpoint/science) -"crQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/science) -"crR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/whitered/corner{tag = "icon-whiteredcorner (WEST)"; icon_state = "whiteredcorner"; dir = 8},/area/medical/research{name = "Research Division"}) -"crS" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"crT" = (/turf/simulated/wall,/area/crew_quarters/hor) -"crU" = (/turf/simulated/wall/r_wall,/area/crew_quarters/hor) -"crV" = (/turf/simulated/wall/r_wall,/area/toxins/explab) -"crW" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"crX" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"crY" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"crZ" = (/obj/item/toy/foamblade{attack_verb = list("stoned","grabbed","smacked"); desc = "A huge foam hand, patterned after stone."; icon = 'icons/obj/weapons.dmi'; icon_state = "fleshtostone"; item_state = "fleshtostone"; name = "huge foam hand"; w_class = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) -"csa" = (/obj/item/weapon/dice/d8{desc = "A die with eight sides. It feels.... incredibly lucky. The two is slightly darker than the other numbers."; tag = "two"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/quartermaster/storage) -"csb" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/autolathe,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"csc" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"csd" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cse" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/chair/stool,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"csf" = (/obj/structure/table,/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"csg" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/structure/chair{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"csh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"csi" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"csj" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"csk" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/mining) -"csl" = (/obj/structure/table,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"csm" = (/obj/machinery/computer/shuttle/mining,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"csn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cso" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csp" = (/obj/structure/table,/obj/item/device/multitool,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csq" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"csr" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"css" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cst" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/apmaint) -"csu" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/apmaint) -"csv" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp,/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/apmaint) -"csw" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/chapel/office) -"csx" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"csy" = (/obj/structure/closet/crate,/obj/item/trash/pistachios,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csz" = (/obj/structure/closet/crate,/obj/item/weapon/c_tube,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csA" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csB" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csC" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csF" = (/turf/simulated/wall/r_wall,/area/maintenance/portsolar) -"csG" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"csH" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csI" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"csJ" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"csL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"csM" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"csN" = (/obj/structure/cable/green,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/electrical) -"csO" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"csP" = (/obj/structure/table,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) -"csQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall/rust,/area/maintenance/electrical) -"csR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Construction Area"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/construction) -"csS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/construction) -"csT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/construction) -"csU" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/turf/simulated/floor/plating,/area/construction) -"csV" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csW" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"csZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"cta" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ctb" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"ctc" = (/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"ctd" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"cte" = (/turf/simulated/wall,/area/crew_quarters/toilet) -"ctf" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"ctg" = (/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"cth" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"cti" = (/obj/structure/cable/green,/obj/machinery/power/apc{auto_name = 0; dir = 8; name = "Dormitory Showers"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/crew_quarters/toilet) -"ctj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/wall,/area/maintenance/asmaint2) -"ctk" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"ctl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 120; 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/toxins/server) -"ctm" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"ctn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 140; on = 1; pressure_checks = 0},/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server) -"cto" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons."; name = "Research Monitor"; network = list("Sci"); pixel_x = 0; pixel_y = 2},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (WEST)"; icon_state = "darkred"; dir = 8},/area/security/checkpoint/science) -"ctp" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/security/checkpoint/science) -"ctq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (EAST)"; icon_state = "darkred"; dir = 4},/area/security/checkpoint/science) -"ctr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/darkred,/area/security/checkpoint/science) -"cts" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/whitered/side{tag = "icon-whitered (WEST)"; icon_state = "whitered"; dir = 8},/area/medical/research{name = "Research Division"}) -"ctt" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"ctu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0; tag = "e"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"ctv" = (/obj/structure/displaycase/labcage,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/crew_quarters/hor) -"ctw" = (/obj/machinery/computer/mecha,/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/crew_quarters/hor) -"ctx" = (/obj/machinery/computer/robotics,/obj/machinery/keycard_auth{pixel_x = -6; pixel_y = 24},/obj/machinery/button/door{id = "rdprivacy"; name = "Privacy Shutters Control"; pixel_x = 5; pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/darkgreen/side{icon_state = "darkpurple"},/area/crew_quarters/hor) -"cty" = (/obj/machinery/computer/card/minor/rd,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = -2; pixel_y = 30},/obj/machinery/camera{c_tag = "Research Director's Office"; network = list("SS13","RD"); start_active = 1},/turf/simulated/floor/plasteel/darkgreen/side{icon_state = "darkpurple"},/area/crew_quarters/hor) -"ctz" = (/obj/machinery/computer/aifixer,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/crew_quarters/hor) -"ctA" = (/obj/structure/closet/secure_closet/RD,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/bedsheet/rd,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/crew_quarters/hor) -"ctB" = (/turf/simulated/floor/engine,/area/toxins/explab) -"ctC" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Experimentation Chamber"; network = list("SS13","Sci")},/turf/simulated/floor/engine,/area/toxins/explab) -"ctD" = (/obj/item/weapon/paper/crumpled{info = "While the third enjoys the smack of a baton..."},/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"ctE" = (/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo Bay RC"; pixel_x = -30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ctF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/chair/stool,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ctG" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"ctH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/plasteel/purple/corner,/area/quartermaster/office) -"ctI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/miningdock) -"ctJ" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/quartermaster/miningdock) -"ctK" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/miningdock) -"ctL" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/quartermaster/miningdock) -"ctM" = (/obj/machinery/mineral/equipment_vendor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/miningdock) -"ctN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/quartermaster/miningdock) -"ctO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"ctP" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/purple/corner,/area/quartermaster/miningdock) -"ctQ" = (/obj/item/weapon/ore/gold,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/quartermaster/miningdock) -"ctR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/item/weapon/ore/uranium,/turf/simulated/floor/plasteel/warning/corner,/area/quartermaster/miningdock) -"ctS" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"ctT" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"ctU" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ctV" = (/turf/simulated/wall/r_wall,/area/maintenance/starboardsolar) -"ctW" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access"; req_access_txt = "10"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"ctX" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/chapel/office) -"ctY" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/wallframe/light_fixture/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"ctZ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/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/fsmaint) -"cua" = (/obj/structure/cable/green{tag = "icon-4-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{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cub" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cuc" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cud" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cue" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cuf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cug" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/portsolar) -"cuh" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/portsolar) -"cui" = (/obj/machinery/power/smes,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/portsolar) -"cuj" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cuk" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cul" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cum" = (/obj/structure/cable/green{tag = "icon-0-10"; icon_state = "0-10"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cun" = (/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/electrical) -"cuo" = (/obj/structure/cable/green{tag = "icon-0-6"; icon_state = "0-6"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/electrical) -"cup" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/construction) -"cuq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plating,/area/construction) -"cur" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/construction) -"cus" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cut" = (/obj/structure/closet/toolcloset,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plating,/area/construction) -"cuu" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"cuv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cuw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"cux" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"cuy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"cuz" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"cuA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/toilet) -"cuB" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"cuC" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"cuD" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"cuE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cuF" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cuG" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 0},/turf/simulated/floor/plating,/area/toxins/server) -"cuH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/door/airlock/glass_command{name = "Server Access"; req_access_txt = "30"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cuI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plating,/area/toxins/server) -"cuJ" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/security/checkpoint/science) -"cuK" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkred/side{dir = 10},/area/security/checkpoint/science) -"cuL" = (/obj/structure/table,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Science Post RC"; pixel_y = -30},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/camera{c_tag = "Science Security Post"; dir = 1; network = list("SS13","Sci")},/obj/item/device/radio/off,/turf/simulated/floor/plasteel/darkred/side,/area/security/checkpoint/science) -"cuM" = (/obj/structure/filingcabinet,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel/darkred/side{tag = "icon-darkred (SOUTHEAST)"; icon_state = "darkred"; dir = 6},/area/security/checkpoint/science) -"cuN" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint/science) -"cuO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/whitered/corner{tag = "icon-whiteredcorner (NORTH)"; icon_state = "whiteredcorner"; dir = 1},/area/medical/research{name = "Research Division"}) -"cuP" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cuQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cuR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"cuS" = (/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/circuitboard/teleporter,/obj/item/device/aicard,/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (EAST)"; icon_state = "darkpurple"; dir = 4},/area/crew_quarters/hor) -"cuT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/hor) -"cuU" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Research Director"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/black,/area/crew_quarters/hor) -"cuV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/hor) -"cuW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/hor) -"cuX" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (WEST)"; icon_state = "darkpurple"; dir = 8},/area/crew_quarters/hor) -"cuY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/engine,/area/toxins/explab) -"cuZ" = (/obj/machinery/r_n_d/experimentor{pixel_x = -16},/turf/simulated/floor/engine,/area/toxins/explab) -"cva" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/engine,/area/toxins/explab) -"cvb" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/closet/crate,/obj/item/stack/sheet/cardboard{amount = 14},/obj/machinery/camera{c_tag = "Cargo Warehouse"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cvc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/closet/cardboard,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cvd" = (/obj/structure/closet/crate,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cve" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cvf" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/wall{desc = "A huge chunk of metal used to separate rooms. There is a small hook etched on it."},/area/quartermaster/storage) -"cvg" = (/obj/structure/cable/orange{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cvh" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cvi" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cvj" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cvk" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/office) -"cvl" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{glass = 1; opacity = 0; req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cvm" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"cvn" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cvo" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cvp" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cvq" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cvr" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/quartermaster/miningdock) -"cvs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Mining Dock"; req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"cvt" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/quartermaster/miningdock) -"cvu" = (/turf/simulated/floor/plasteel/warning{dir = 4},/area/quartermaster/miningdock) -"cvv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cvw" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/shuttle/mining) -"cvx" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/obj/docking_port/mobile{dir = 8; dwidth = 3; height = 5; id = "mining"; name = "mining shuttle"; travelDir = 90; width = 7},/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; width = 7},/turf/simulated/floor/plating,/area/shuttle/mining) -"cvy" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvz" = (/obj/item/robot_parts/l_arm,/obj/structure/closet,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvA" = (/obj/item/clothing/tie/petcollar,/obj/structure/closet/cardboard,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvB" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvC" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cvD" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/starboardsolar) -"cvE" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboardsolar) -"cvF" = (/obj/machinery/power/smes,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating{dir = 4; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/starboardsolar) -"cvG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"cvI" = (/obj/structure/rack,/obj/item/weapon/stock_parts/matter_bin,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvJ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"cvL" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"cvM" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvN" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/wallframe/light_fixture/small,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvO" = (/obj/structure/rack,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvP" = (/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvQ" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cvR" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cvS" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cvT" = (/obj/structure/closet/crate,/obj/item/trash/semki,/obj/item/weapon/dice/d4,/obj/item/weapon/dice/d12,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvU" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/item/wallframe/light_fixture,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvV" = (/obj/structure/closet/crate,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/console_screen,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cvW" = (/obj/machinery/power/terminal,/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/electrical) -"cvX" = (/obj/structure/cable/green{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cvY" = (/obj/structure/cable/green{tag = "icon-6-10"; icon_state = "6-10"},/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cvZ" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cwa" = (/obj/structure/cable/green{tag = "icon-6-10"; icon_state = "6-10"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cwb" = (/obj/structure/cable/green{tag = "icon-4-9"; icon_state = "4-9"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cwc" = (/obj/machinery/power/terminal,/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cwd" = (/obj/item/device/healthanalyzer,/obj/structure/closet/crate,/obj/item/clothing/head/radiation,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cwe" = (/turf/simulated/floor/plating,/area/construction) -"cwf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/construction) -"cwg" = (/obj/structure/closet/toolcloset,/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating,/area/construction) -"cwh" = (/turf/simulated/wall/rust,/area/construction) -"cwi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cwj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cwk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cwl" = (/turf/simulated/wall,/area/crew_quarters/fitness) -"cwm" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cwn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"cwo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"cwp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"cwq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/turf/simulated/floor/plasteel/freezer,/area/crew_quarters/toilet) -"cwr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cws" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cwt" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cwu" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 4; icon_state = "freezer"; on = 1; tag = "icon-freezer (EAST)"},/obj/machinery/light_switch{pixel_x = -24; tag = "w"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cwv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cww" = (/obj/machinery/computer/rdservercontrol,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cwx" = (/turf/simulated/wall,/area/security/checkpoint/science) -"cwy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cwz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cwA" = (/obj/structure/table/reinforced,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (SOUTHEAST)"; icon_state = "darkpurple"; dir = 6},/area/crew_quarters/hor) -"cwB" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2"; name = "Research Lab Shutter Control"; pixel_x = 5; pixel_y = 5; req_access_txt = "47"},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (NORTHWEST)"; icon_state = "darkpurple"; dir = 9},/area/crew_quarters/hor) -"cwC" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/crew_quarters/hor) -"cwD" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of this office."; name = "Research Monitor"; network = list("Xeno","Sci"); pixel_x = 0; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (NORTH)"; icon_state = "darkpurple"; dir = 1},/area/crew_quarters/hor) -"cwE" = (/obj/machinery/door/window/northright{name = "Research Director's Desk Door"; req_access_txt = "30"},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (NORTHEAST)"; icon_state = "darkpurple"; dir = 5},/area/crew_quarters/hor) -"cwF" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/turf/simulated/floor/plasteel/darkgreen/side{tag = "icon-darkpurple (SOUTHWEST)"; icon_state = "darkpurple"; dir = 10},/area/crew_quarters/hor) -"cwG" = (/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Doors"; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/engine,/area/toxins/explab) -"cwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall/r_wall,/area/maintenance/asmaint2) -"cwI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cwJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/green{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cwK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/wall/r_wall,/area/maintenance/apmaint) -"cwL" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/key{desc = "A tiny grey key."},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cwM" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cwN" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/quartermaster/storage) -"cwO" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/quartermaster/storage) -"cwP" = (/obj/machinery/light/small{dir = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "QM #3"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/quartermaster/storage) -"cwQ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "QM #4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/quartermaster/storage) -"cwR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/brown,/area/quartermaster/office) -"cwS" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown,/area/quartermaster/office) -"cwT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brown,/area/quartermaster/office) -"cwU" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/quartermaster/office) -"cwV" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cwW" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/quartermaster/office) -"cwX" = (/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/quartermaster/miningdock) -"cwY" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) -"cwZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/purple/side,/area/quartermaster/miningdock) -"cxa" = (/obj/machinery/requests_console{department = "Mining"; departmentType = 0; name = "Mining RC"; pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) -"cxb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/camera{c_tag = "Mining Office"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/purple/side,/area/quartermaster/miningdock) -"cxc" = (/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor/plasteel/brown,/area/quartermaster/miningdock) -"cxd" = (/obj/machinery/computer/shuttle/mining,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/quartermaster/miningdock) -"cxe" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/quartermaster/miningdock) -"cxf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/quartermaster/miningdock) -"cxg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cxh" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/apmaint) -"cxi" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cxj" = (/obj/structure/falsewall,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/apmaint) -"cxk" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cxl" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cxm" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cxn" = (/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"cxo" = (/obj/item/weapon/restraints/legcuffs/beartrap{armed = 1},/obj/structure/falsewall/reinforced,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"cxp" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cxq" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar_control{id = "portsolar"; name = "Aft Port Solar Control"; track = 0},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/portsolar) -"cxr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/portsolar) -"cxs" = (/obj/machinery/camera{c_tag = "Aft Port Solar Control Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/portsolar) -"cxt" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cxu" = (/obj/structure/cable/green{tag = "icon-5-8"; icon_state = "5-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"cxv" = (/obj/structure/cable/green{tag = "icon-0-9"; icon_state = "0-9"},/obj/structure/cable/green{tag = "icon-0-5"; icon_state = "0-5"},/obj/structure/cable/green,/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cxw" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) -"cxx" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/construction) -"cxy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/construction) -"cxz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/construction) -"cxA" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/construction) -"cxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cxC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cxD" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) -"cxE" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/crew_quarters/fitness) -"cxF" = (/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cxH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cxI" = (/obj/machinery/camera{c_tag = "Fitness North"; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cxJ" = (/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (EAST)"; icon_state = "blackcorner"; dir = 4},/area/crew_quarters/fitness) -"cxK" = (/obj/structure/closet/crate,/obj/item/stack/medical/bruise_pack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cxL" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/syringe,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/head/hasturhood{desc = "A puke-yellow hood. Looking at it makes you want to vomit."; name = "strange hood"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cxM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet/cardboard,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cxN" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/suit/hastur{desc = "A puke-yellow robe. Looking at it makes you want to vomit."; name = "strange robe"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cxO" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cxP" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cxQ" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cxR" = (/obj/item/weapon/relic,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/medical/research{name = "Research Division"}) -"cxS" = (/obj/item/weapon/stock_parts/capacitor{desc = "A research-y capacitor, for research."; name = "research"; origin_tech = "powerstorage=3"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/medical/research{name = "Research Division"}) -"cxT" = (/obj/item/weapon/twohanded/dualsaber/toy,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/medical/research{name = "Research Division"}) -"cxU" = (/turf/simulated/wall,/area/medical/research{name = "Research Division"}) -"cxV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cxW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cxX" = (/obj/machinery/disposal/bin,/obj/structure/cable/pink{tag = "icon-4-10"; icon_state = "4-10"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/crew_quarters/hor) -"cxY" = (/obj/structure/flora/kirbyplants/dead,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitepurple"; tag = "icon-whitehall (WEST)"},/area/crew_quarters/hor) -"cxZ" = (/obj/structure/chair{dir = 1},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/crew_quarters/hor) -"cya" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitepurple"},/area/crew_quarters/hor) -"cyb" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/crew_quarters/hor) -"cyc" = (/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/suit_storage_unit/rd,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/crew_quarters/hor) -"cyd" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/explab) -"cye" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/turf/simulated/floor/engine,/area/toxins/explab) -"cyf" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cyg" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cyh" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cyi" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"cyj" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cyk" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cyl" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cym" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cyn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cyo" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cyp" = (/obj/structure/closet/crate/medical,/obj/item/weapon/paper,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cyq" = (/turf/simulated/floor/plasteel/delivery,/area/quartermaster/storage) -"cyr" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/delivery,/area/quartermaster/storage) -"cys" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cyt" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/quartermaster/office) -"cyu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) -"cyv" = (/turf/simulated/wall,/area/quartermaster/qm) -"cyw" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"cyx" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/mining) -"cyy" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/mining) -"cyz" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar_control{id = "starboardsolar"; name = "Aft Starboard Solar Control"; track = 0},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/starboardsolar) -"cyA" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/starboardsolar) -"cyB" = (/obj/item/stack/cable_coil/yellow,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = ""},/area/maintenance/starboardsolar) -"cyC" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cyD" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cyE" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cyF" = (/obj/structure/cable/yellow{tag = "icon-1-6"; icon_state = "1-6"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cyG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area Maintenance"; req_access_txt = "32"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/construction) -"cyH" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cyI" = (/obj/machinery/light/small{dir = 1},/obj/structure/table,/obj/item/weapon/storage/box/hug/medical,/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/crew_quarters/fitness) -"cyJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/neutral/corner,/area/crew_quarters/fitness) -"cyK" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"cyL" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"cyM" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"cyN" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"cyO" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (WEST)"; icon_state = "neutralcorner"; dir = 8},/area/crew_quarters/fitness) -"cyP" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (EAST)"; icon_state = "blackcorner"; dir = 4},/area/crew_quarters/fitness) -"cyQ" = (/turf/simulated/wall/rust,/area/maintenance/asmaint2) -"cyR" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access = null; req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"cyS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/toxins/server) -"cyT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cyU" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cyV" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cyW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-5"; icon_state = "0-5"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"cyX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink,/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"cyY" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{glass = 0; name = "Research Director"; opacity = 1; req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whitepurple,/area/crew_quarters/hor) -"cyZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink,/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/crew_quarters/hor) -"cza" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = 30},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/explab) -"czb" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7; tag = "every single paper bin is edited to this"},/obj/item/weapon/pen,/obj/item/weapon/book/manual/experimentor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/explab) -"czc" = (/obj/machinery/computer/rdconsole/experiment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/explab) -"czd" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/explab) -"cze" = (/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Doors"; pixel_x = 24; pixel_y = 24},/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/explab) -"czf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/maintenance/asmaint2) -"czg" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"czh" = (/obj/structure/closet/crate/internals,/obj/item/weapon/paper,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"czi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"czj" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"czk" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) -"czl" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"czm" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"czn" = (/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"czo" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; dir = 4},/area/quartermaster/storage) -"czp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"czq" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"czr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"czs" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/quartermaster/storage) -"czt" = (/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"czu" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"czv" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/qm) -"czw" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/computer/security/mining,/turf/simulated/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (NORTHWEST)"; icon_state = "darkbrown"; dir = 9},/area/quartermaster/qm) -"czx" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/computer/cargo,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (NORTH)"; icon_state = "darkbrown"; dir = 1},/area/quartermaster/qm) -"czy" = (/obj/machinery/computer/shuttle/mining,/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (NORTHEAST)"; icon_state = "darkbrown"; dir = 5},/area/quartermaster/qm) -"czz" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/mining) -"czA" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating/airless,/area/shuttle/mining) -"czB" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/mining) -"czC" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"czD" = (/obj/structure/cable/green{tag = "icon-1-9"; icon_state = "1-9"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"czE" = (/obj/structure/chair,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czF" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs/cable/green,/obj/item/weapon/restraints/handcuffs/cable/green,/obj/item/toy/owl,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czG" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czH" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czI" = (/obj/structure/table,/obj/item/wallframe/firealarm,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"czK" = (/obj/structure/barricade/wooden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czL" = (/obj/structure/chair/stool,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/fsmaint) -"czM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czN" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/construction) -"czO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"czP" = (/obj/structure/cable/green{tag = "icon-4-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/maintenance/fsmaint) -"czQ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czR" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"czS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"czT" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"czU" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"czV" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"czW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"czX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"czY" = (/obj/structure/closet/lasertag/red,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"czZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cAa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cAb" = (/obj/machinery/door/airlock/maintenance{name = "Science Maintenance"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"cAc" = (/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cAd" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAe" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAf" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Science Hallway West"; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAg" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAh" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAi" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAj" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAk" = (/obj/structure/cable/pink{tag = "icon-4-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 = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAl" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cAm" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) -"cAn" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 13},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cAo" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) -"cAp" = (/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cAq" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whitepurple,/area/toxins/explab) -"cAr" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/explab) -"cAs" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cAt" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cAu" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cAv" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cAw" = (/obj/machinery/door/airlock/maintenance{name = "Experimentation Lab Maintenance"; req_access_txt = "7"},/obj/structure/cable/pink{tag = "icon-4-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/toxins/explab) -"cAx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cAy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cAz" = (/turf/simulated/floor/plasteel/brown,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; pixel_y = 0; req_access_txt = "31"},/turf/simulated/floor/plasteel/warningline,/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cAA" = (/turf/simulated/floor/plasteel/brown,/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/turf/simulated/floor/plasteel/warningline,/area/quartermaster/sorting{name = "\improper Warehouse"}) -"cAB" = (/obj/structure/cable/orange{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cAC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cAD" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cAE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cAF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cAG" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/qm) -"cAH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel/darkbrown/corner{tag = "icon-darkbrowncorners (NORTH)"; icon_state = "darkbrowncorners"; dir = 1},/area/quartermaster/qm) -"cAI" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Quartermaster"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cAJ" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/red,/turf/simulated/floor/plasteel/darkbrown/corner{tag = "icon-darkbrowncorners (EAST)"; icon_state = "darkbrowncorners"; dir = 4},/area/quartermaster/qm) -"cAK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cAL" = (/obj/structure/closet,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/gloves/color/brown,/obj/item/clothing/mask/gas/owl_mask,/obj/item/clothing/under/owl,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cAM" = (/obj/structure/table,/obj/item/weapon/grenade/smokebomb,/obj/item/weapon/grenade/smokebomb,/obj/item/weapon/grenade/smokebomb,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cAN" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell,/obj/item/weapon/melee/baton/cattleprod,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cAO" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cAP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fsmaint) -"cAQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/crew_quarters/fitness) -"cAR" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cAS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/red,/area/crew_quarters/fitness) -"cAT" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cAU" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cAV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cAW" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cAX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"cAY" = (/obj/structure/closet/boxinggloves,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cAZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cBa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cBb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cBc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) -"cBd" = (/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cBe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBg" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/pink,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBj" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBk" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBl" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cBn" = (/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cBo" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/explab) -"cBp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/explab) -"cBq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cBr" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/whitebot,/area/toxins/explab) -"cBs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cBt" = (/obj/structure/cable/pink,/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"cBu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/explab) -"cBv" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cBw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cBx" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space/nearstation) -"cBy" = (/obj/structure/closet/wardrobe/cargotech,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"cBz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"cBA" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"cBB" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo Bay RC"; pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/quartermaster/storage) -"cBC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cBD" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cBE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cBF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cBG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cBH" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cBI" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cBJ" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cBK" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cBL" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/darkbrown/side{tag = "icon-darkbrown (WEST)"; icon_state = "darkbrown"; dir = 8},/area/quartermaster/qm) -"cBM" = (/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cBO" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cBP" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/space,/area/solar/starboard) -"cBQ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cBR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/maintenance/fsmaint) -"cBS" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"cBT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"cBU" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cBV" = (/obj/machinery/computer/holodeck,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cBW" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cBX" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cBY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cBZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"cCa" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cCb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cCc" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cCd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"cCe" = (/obj/structure/closet/masks,/obj/machinery/light{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cCf" = (/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cCg" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cCh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cCi" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cCj" = (/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) -"cCk" = (/turf/simulated/wall/r_wall,/area/toxins/storage) -"cCl" = (/turf/simulated/wall,/area/toxins/storage) -"cCm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cCn" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cCo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cCp" = (/obj/machinery/vending/cigarette,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cCq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall/rust,/area/maintenance/atmos_control) -"cCr" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/medical/research{name = "Research Division"}) -"cCs" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHEAST)"; icon_state = "whitepurple"; dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/medical/research{name = "Research Division"}) -"cCt" = (/obj/machinery/vending/coffee,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light,/obj/machinery/camera{c_tag = "Science Hallway East"; dir = 1; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cCu" = (/obj/structure/closet/bombcloset,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/explab) -"cCv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/explab) -"cCw" = (/obj/structure/closet/radiation,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Experimentation Lab"; dir = 1; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/explab) -"cCx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/explab) -"cCy" = (/obj/structure/closet/wardrobe/science_white,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/explab) -"cCz" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cCA" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCB" = (/obj/structure/cable/orange{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCC" = (/obj/structure/cable/orange{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/orange{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCD" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCE" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCF" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/loadingarea,/area/quartermaster/storage) -"cCG" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCH" = (/obj/structure/cable/orange{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCI" = (/obj/structure/cable/orange{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cCM" = (/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (NORTH)"; icon_state = "loadingarea"; dir = 1},/area/quartermaster/storage) -"cCN" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cCO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1439; id_tag = null; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cCP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cCQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/space,/area/solar/port) -"cCR" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"cCS" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cCT" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cCU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cCV" = (/obj/structure/table,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cCW" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cCX" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cCY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cCZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (EAST)"; icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"cDa" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cDb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cDc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/fitness) -"cDd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (WEST)"; icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"cDe" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cDf" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cDg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cDi" = (/turf/simulated/wall/r_wall,/area/maintenance/asmaint2) -"cDj" = (/obj/item/weapon/grenade/clusterbuster/cleaner{desc = "A 'Mr. Proper' supercleaning grenade. Will cover the nearby area in foam."},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cDk" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel/delivery,/area/toxins/storage) -"cDl" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel/delivery,/area/toxins/storage) -"cDm" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/delivery,/area/toxins/storage) -"cDn" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light_switch{pixel_y = 24; tag = "n"},/turf/simulated/floor/plasteel/delivery,/area/toxins/storage) -"cDo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cDp" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cDq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cDr" = (/turf/simulated/wall,/area/toxins/mixing) -"cDs" = (/obj/structure/sign/fire,/turf/simulated/wall,/area/toxins/mixing) -"cDt" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/mixing) -"cDu" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cDv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/toxins/mixing) -"cDw" = (/turf/simulated/wall/r_wall,/area/toxins/mixing) -"cDx" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/toxins/mixing) -"cDz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cDA" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cDB" = (/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cDC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cDD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Cargo Bay West"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/quartermaster/storage) -"cDE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/conveyor{dir = 1; id = "QMLoad"; tag = "cargoshuttledown"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cDF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warning{dir = 8},/area/quartermaster/storage) -"cDG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMLoad"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cDH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cDI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cDJ" = (/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/quartermaster/storage) -"cDK" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"cDL" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/quartermaster/storage) -"cDM" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; tag = "cargoshuttleup"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cDN" = (/obj/structure/table,/obj/structure/cable/orange,/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/weapon/coin/silver,/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cDO" = (/obj/structure/closet/secure_closet/quartermaster,/obj/item/weapon/bedsheet/qm,/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cDP" = (/obj/machinery/disposal/bin,/obj/machinery/camera{c_tag = "Quartermaster's Office"; dir = 1; network = list("SS13"); start_active = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/black,/area/quartermaster/qm) -"cDQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/port) -"cDR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/crew_quarters/fitness) -"cDS" = (/obj/machinery/camera{c_tag = "Holodeck Control"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cDT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/green,/area/crew_quarters/fitness) -"cDU" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cDV" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cDW" = (/obj/structure/window/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"cDX" = (/obj/structure/closet/lasertag/blue,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cDY" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cDZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cEa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cEb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cEc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) -"cEd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cEe" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cEf" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cEg" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 4; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cEh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cEi" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cEj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cEk" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cEl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/toxins/storage) -"cEm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cEn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cEo" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/obj/machinery/light{dir = 1},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/mixing) -"cEp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cEq" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cEr" = (/obj/machinery/portable_atmospherics/scrubber,/obj/item/weapon/storage/firstaid/toxin,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHWEST)"; icon_state = "warnwhite"; dir = 10},/area/toxins/mixing) -"cEs" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHEAST)"; icon_state = "warnwhite"; dir = 6},/area/toxins/mixing) -"cEt" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHWEST)"; icon_state = "warnwhite"; dir = 10},/area/toxins/mixing) -"cEu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (SOUTHEAST)"; icon_state = "warnwhite"; dir = 6},/area/toxins/mixing) -"cEv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/toxins/mixing) -"cEw" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/mixing) -"cEx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/toxins/mixing) -"cEy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/toxins/mixing) -"cEz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/toxins/mixing) -"cEA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/toxins/mixing) -"cEB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/toxins/mixing) -"cEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) -"cED" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/obj/machinery/disposal/bin,/obj/machinery/camera{c_tag = "Toxins Launch Room"; network = list("SS13","Sci")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/toxins/mixing) -"cEE" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/obj/structure/closet/bombcloset,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/toxins/mixing) -"cEF" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/obj/structure/closet/bombcloset,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/toxins/mixing) -"cEG" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/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{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/mixing) -"cEH" = (/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_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel/white,/area/toxins/mixing) -"cEI" = (/obj/structure/closet/cardboard,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"cEJ" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "31"},/obj/structure/cable/orange{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/quartermaster/storage) -"cEK" = (/obj/machinery/status_display{density = 0; pixel_y = 2; supply_display = 1},/turf/simulated/wall,/area/quartermaster/storage) -"cEL" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/conveyor{dir = 1; id = "QMLoad"; tag = "cargoshuttledown"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cEM" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/quartermaster/storage) -"cEN" = (/turf/simulated/floor/plasteel/warning,/area/quartermaster/storage) -"cEO" = (/turf/simulated/floor/plasteel/warning/corner{dir = 1},/area/quartermaster/storage) -"cEP" = (/turf/simulated/floor/plasteel/warning/corner,/area/quartermaster/storage) -"cEQ" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/quartermaster/storage) -"cER" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Cargo Bay East"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; tag = "cargoshuttleup"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cES" = (/obj/machinery/status_display{density = 0; pixel_y = 2; supply_display = 1},/turf/simulated/wall,/area/quartermaster/qm) -"cET" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cEU" = (/turf/simulated/wall/rust,/area/crew_quarters/fitness) -"cEV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cEW" = (/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/crew_quarters/fitness) -"cEX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (EAST)"; icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/fitness) -"cEY" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plasteel/neutral/side{tag = "icon-neutral (NORTH)"; icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"cEZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/neutral/corner{tag = "icon-neutralcorner (NORTH)"; icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/fitness) -"cFa" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/plasteel/black/corner,/area/crew_quarters/fitness) -"cFb" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cFc" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cFd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cFe" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/clothing/head/cone,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cFf" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cFg" = (/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cFh" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cFi" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cFj" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cFk" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cFl" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cFm" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cFn" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cFo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cFp" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/toxins/mixing) -"cFq" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cFr" = (/obj/machinery/hologram/holopad,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel/whitebot,/area/toxins/mixing) -"cFs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cFu" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cFv" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cFw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cFx" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (EAST)"; icon_state = "whitepurple"; dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/mixing) -"cFy" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/toxins/mixing) -"cFz" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/toxins/mixing) -"cFA" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/toxins/mixing) -"cFB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/toxins/mixing) -"cFC" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/mixing) -"cFD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cFE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cFF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cFG" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/mixing) -"cFH" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/white,/area/toxins/mixing) -"cFI" = (/obj/machinery/power/apc{auto_name = 1; dir = 8; name = "Autoname APC West"; pixel_x = -25; pixel_y = 0},/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/apmaint) -"cFJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cFK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cFL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cFM" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cFN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cFO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"cFP" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cFQ" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cFR" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"; tag = "cargoshuttledown"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cFS" = (/turf/simulated/floor/plasteel/brown{dir = 10; icon_state = "brown"; nitrogen = 100; oxygen = 0; tag = "SERVER"; temperature = 80},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHWEST)"; icon_state = "warningline"; dir = 10},/area/quartermaster/storage) -"cFT" = (/turf/simulated/floor/plasteel/brown,/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = -8; pixel_y = -24},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = 8; pixel_y = -24},/turf/simulated/floor/plasteel/warningline,/area/quartermaster/storage) -"cFU" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/quartermaster/storage) -"cFV" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cFW" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) -"cFX" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-6"; icon_state = "0-6"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cFY" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cFZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow,/turf/space,/area/solar/starboard) -"cGa" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-10"; icon_state = "0-10"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cGb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"cGc" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/fsmaint) -"cGd" = (/turf/simulated/floor/plasteel/black/corner{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/crew_quarters/fitness) -"cGe" = (/obj/machinery/camera{c_tag = "Fitness South"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cGf" = (/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"cGg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/black/corner,/area/crew_quarters/fitness) -"cGh" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cGi" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cGj" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cGk" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cGl" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cGm" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plasteel/bot,/area/toxins/storage) -"cGn" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/simulated/floor/plasteel/bot,/area/toxins/storage) -"cGo" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/bot,/area/toxins/storage) -"cGp" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cGq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cGr" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/toxins/mixing) -"cGs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGt" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Toxins Mixing West"; dir = 1; network = list("SS13","Sci")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGu" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGv" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGw" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGx" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGy" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGz" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cGB" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cGC" = (/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cGD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cGE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cGF" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (WEST)"; icon_state = "whitepurple"; dir = 8},/obj/structure/tank_dispenser,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/mixing) -"cGG" = (/obj/item/device/assembly/signaler{pixel_x = 0; 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,/obj/machinery/light_switch{pixel_x = 24; tag = "e"},/turf/simulated/floor/plasteel/white,/area/toxins/mixing) -"cGH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cGI" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cGJ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cGK" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"; tag = "cargoshuttledown"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/quartermaster/storage) -"cGL" = (/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/engine/engineering) -"cGM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cGN" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; tag = "cargoshuttleup"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/quartermaster/storage) -"cGO" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-6"; icon_state = "0-6"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cGP" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cGQ" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-10"; icon_state = "0-10"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cGR" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cGS" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cGT" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cGU" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/starboard) -"cGV" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cGW" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/space,/area/solar/starboard) -"cGX" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cGY" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cGZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cHa" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHb" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHc" = (/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHd" = (/obj/item/mecha_parts/part/odysseus_right_leg,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHe" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/item/weapon/circuitboard/destructive_analyzer,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHf" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cHg" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cHh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Science Hallway South"; dir = 8; network = list("SS13","Sci"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cHi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/toxins/mixing) -"cHj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cHk" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cHl" = (/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{aidisabled = 0; auto_name = 1; cell_type = 2500; dir = 4; name = "Autoname APC East"; pixel_x = 24; pixel_y = 0},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cHm" = (/obj/structure/closet/wardrobe/black,/obj/item/wallframe/newscaster,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHn" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cHo" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warning/corner,/area/toxins/mixing) -"cHp" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/poster/legit,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cHq" = (/obj/item/weapon/weldingtool/mini,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cHr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/obj/machinery/conveyor{dir = 1; id = "QMLoad"; tag = "cargoshuttledown"},/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cHs" = (/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/quartermaster/storage) -"cHt" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/quartermaster/storage) -"cHu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; tag = "cargoshuttleup"},/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cHv" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cHw" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cHx" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cHy" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/port) -"cHz" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/space,/area/solar/port) -"cHA" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cHB" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cHC" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-5-8"; icon_state = "5-8"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-6-8"; icon_state = "6-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cHD" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-5"; icon_state = "0-5"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cHE" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cHF" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil/yellow,/turf/space,/area/solar/starboard) -"cHG" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-9"; icon_state = "0-9"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cHH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cHI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cHJ" = (/obj/effect/landmark{name = "Syndicate Breach Area"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cHK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cHL" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHM" = (/obj/structure/cable/green{tag = "icon-0-4"; icon_state = "0-4"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"cHN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/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/asmaint2) -"cHP" = (/obj/structure/cable/green{tag = "icon-4-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/asmaint2) -"cHQ" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cHR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cHS" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"cHT" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"cHU" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"cHV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) -"cHW" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/engine,/area/toxins/mixing) -"cHX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = -24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warnwhitecorner"},/area/toxins/mixing) -"cHY" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "mix to port"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/mixing) -"cHZ" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHEAST)"; icon_state = "warningline"; dir = 5},/area/toxins/mixing) -"cIa" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIb" = (/obj/structure/closet/wardrobe/science_white,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0; tag = "w"},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cIc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/toxins/mixing) -"cId" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel/warning{dir = 4},/area/toxins/mixing) -"cIe" = (/obj/machinery/door/window/southleft{dir = 8; name = "Mass Driver Door"; req_access_txt = "7"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (EAST)"; icon_state = "loadingarea"; dir = 4},/area/toxins/mixing) -"cIf" = (/obj/machinery/mass_driver{dir = 2; id = "toxinsdriver"},/turf/simulated/floor/plating,/area/toxins/mixing) -"cIg" = (/obj/item/stack/medical/gauze,/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cIh" = (/obj/structure/rack,/obj/item/weapon/storage/belt/utility,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cIi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/floor/plating,/area/quartermaster/storage) -"cIj" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-5"; icon_state = "0-5"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cIk" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cIl" = (/obj/machinery/power/solar{id = "auxsolareast"; name = "Fore Port Solar Array"},/obj/structure/cable/yellow{tag = "icon-0-9"; icon_state = "0-9"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cIm" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIn" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIo" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIp" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIq" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIr" = (/obj/item/weapon/lipstick/black,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cIs" = (/obj/item/weapon/lighter,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cIt" = (/obj/item/weapon/paper,/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cIu" = (/obj/structure/table/glass,/obj/item/device/radio/off,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20; tag = "NORTH"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cIv" = (/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/structure/table/glass,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cIw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cIx" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cIy" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"cIz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cIA" = (/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"cIB" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1449; glass = 1; heat_proof = 1; icon_state = "closed"; id_tag = "tox_airlock_exterior"; locked = 1; name = "Mixing Room Exterior Airlock"; req_access_txt = "8"},/turf/simulated/floor/engine,/area/toxins/mixing) -"cIC" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2; frequency = 1449; id = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/toxins/mixing) -"cID" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1449; glass = 1; heat_proof = 1; icon_state = "closed"; id_tag = "tox_airlock_interior"; locked = 1; name = "Mixing Room Interior Airlock"; req_access_txt = "8"},/turf/simulated/floor/engine,/area/toxins/mixing) -"cIE" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/mixing) -"cIF" = (/obj/structure/chair/stool,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/mixing) -"cIG" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Toxins Mixing East"; dir = 8; network = list("SS13","Sci"); pixel_x = 0; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = 26; pixel_y = -2; tag = "EAST"},/obj/item/weapon/wrench,/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/mixing) -"cIH" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/glass/beaker,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cII" = (/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/target/alien,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target/syndicate,/obj/structure/closet/crate/secure{desc = "A secure crate containing various materials for building a customised test-site."; name = "Test Site Materials Crate"; req_access_txt = "8"},/obj/item/target/clown,/obj/item/target/clown,/obj/item/target,/obj/item/target,/turf/simulated/floor/plasteel/bot,/area/toxins/mixing) -"cIJ" = (/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/mixing) -"cIK" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/toxins/mixing) -"cIL" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cIM" = (/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"cIN" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cIO" = (/turf/simulated/wall/r_wall,/area/maintenance/apmaint) -"cIP" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/supply) -"cIQ" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/supply) -"cIR" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 1; id = "QMLoad"; tag = "cargoshuttledown"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cIS" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cIT" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/obj/docking_port/mobile/supply{dir = 2; dwidth = 5; width = 12},/obj/docking_port/stationary{dir = 2; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/simulated/floor/plating,/area/shuttle/supply) -"cIU" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"cIV" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/supply) -"cIW" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/supply) -"cIX" = (/obj/structure/lattice,/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"cIY" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cIZ" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/box/lights/tubes,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJa" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJb" = (/obj/machinery/button/door{id = "maint2"; name = "Blast Door Control B"; pixel_x = -28; pixel_y = 4; req_access_txt = "0"},/obj/machinery/button/door{id = "maint1"; name = "Blast Door Control A"; pixel_x = -28; pixel_y = -6; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJc" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall/rust,/area/maintenance/asmaint2) -"cJe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/wall,/area/maintenance/asmaint2) -"cJf" = (/obj/structure/chair/stool,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJg" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/components/unary/vent_scrubber{layer = 2.4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJh" = (/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Break Room"; req_access_txt = "47"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJl" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cJm" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cJn" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing) -"cJo" = (/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/engine,/area/toxins/mixing) -"cJp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = -25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = -25; pixel_y = -5},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhitecorner"},/area/toxins/mixing) -"cJq" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "port to mix"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/mixing) -"cJr" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (SOUTHEAST)"; icon_state = "warningline"; dir = 6},/area/toxins/mixing) -"cJs" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights/bulbs,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJt" = (/obj/machinery/doppler_array,/turf/simulated/floor/plasteel/bot,/area/toxins/mixing) -"cJu" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 4; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_x = 0; pixel_y = 0},/obj/structure/table,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel/purple/corner,/area/toxins/mixing) -"cJv" = (/obj/structure/chair/office/light,/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/plasteel/purple/side,/area/toxins/mixing) -"cJw" = (/turf/simulated/floor/plating{icon_state = "warnplate"},/area/toxins/mixing) -"cJx" = (/obj/structure/closet/wardrobe/cargotech,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cJy" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/supply) -"cJz" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) -"cJA" = (/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; name = "Loading Doors"; pixel_x = -8; pixel_y = 24},/obj/machinery/button/door{id = "QMLoaddoor"; name = "Loading Doors"; pixel_x = 8; pixel_y = 24},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) -"cJB" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f5"},/area/shuttle/supply) -"cJC" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/supply) -"cJD" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/supply) -"cJE" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/starboard) -"cJF" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cJG" = (/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 1; name = "Autoname APC North"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"cJH" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"cJI" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJJ" = (/obj/item/device/assembly/mousetrap/armed,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJK" = (/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJL" = (/obj/item/clothing/head/cone,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJM" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJN" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJO" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJP" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cJQ" = (/obj/structure/cable/green{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cJR" = (/obj/machinery/door/airlock/maintenance{name = "Break Room Maintenance"; req_access_txt = "47"},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"cJS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light_switch{pixel_y = -24; tag = "s"},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJT" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Science Break Room"; dir = 1; network = list("SS13","Sci")},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJV" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/cafeteria,/area/medical/research{name = "Research Division"}) -"cJW" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"cJX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"}) -"cJY" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"}) -"cJZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel/whitepurple/side,/area/medical/research{name = "Research Division"}) -"cKa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/toxins/mixing) -"cKb" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Lab Mainteneance"; req_access_txt = "8"},/turf/simulated/floor/plating,/area/toxins/mixing) -"cKc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKd" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKf" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "Toxins Launcher Bay Door"},/turf/simulated/floor/plating,/area/toxins/mixing) -"cKg" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKh" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKi" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKj" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/supply) -"cKk" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{tag = "icon-4-9"; icon_state = "4-9"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{tag = "icon-4-10"; icon_state = "4-10"; d1 = 4; d2 = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/space,/area/solar/port) -"cKl" = (/obj/structure/lattice,/obj/structure/lattice,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/space,/area/space) -"cKm" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKn" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKo" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whitepurple,/area/medical/research{name = "Research Division"}) -"cKp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cKq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/apmaint) -"cKu" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKv" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKw" = (/obj/structure/chair/stool,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKx" = (/obj/machinery/button/door{id = "maint3"; name = "Blast Door Control C"; pixel_x = 0; pixel_y = 24; req_access_txt = "0"},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKy" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKz" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/simulated/wall,/area/maintenance/asmaint2) -"cKB" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cKC" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKD" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKE" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKF" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/toxins/xenobiology) -"cKG" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/toxins/xenobiology) -"cKH" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/area/toxins/xenobiology) -"cKI" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access"; req_access_txt = "12"},/obj/structure/cable/pink{tag = "icon-4-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/asmaint2) -"cKJ" = (/obj/structure/cable/green{tag = "icon-4-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{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKK" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKL" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKP" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "Toxins Launcher Bay Door"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cKR" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) -"cKS" = (/obj/structure/door_assembly/door_assembly_mai,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKT" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKU" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKV" = (/obj/machinery/door/airlock/maintenance{glass = 1; name = "maintenance access"; opacity = 0; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKW" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKX" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cKZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cLb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) -"cLc" = (/turf/simulated/floor/plasteel/whitepurple/side,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel/warningline,/area/toxins/xenobiology) -"cLd" = (/turf/simulated/floor/plasteel/whitepurple/side,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel/warningline,/area/toxins/xenobiology) -"cLe" = (/turf/simulated/floor/plasteel/whitepurple/side,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel/warningline,/area/toxins/xenobiology) -"cLf" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLh" = (/obj/structure/table,/obj/item/weapon/rollingpaper,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLi" = (/obj/structure/rack,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLj" = (/obj/structure/rack,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/scanning_module,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cLk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLo" = (/obj/machinery/door/airlock/maintenance{glass = 1; name = "maintenance access"; opacity = 0; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cLp" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cLq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/apmaint) -"cLr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/apmaint) -"cLs" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/apmaint) -"cLt" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"cLu" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cLv" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/closet/wardrobe/cargotech,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cLw" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cLx" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f6"},/area/shuttle/supply) -"cLy" = (/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLz" = (/obj/structure/chair/stool,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLA" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLB" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLC" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLD" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cLF" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/research{glass = 1; name = "Xenobiology Lab"; opacity = 0; req_access_txt = "55"},/turf/simulated/floor/plasteel/whitepurple,/area/toxins/xenobiology) -"cLG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-2"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cLH" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLI" = (/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cLJ" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cLK" = (/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/paper,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cLL" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/supply) -"cLM" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/supply) -"cLN" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/supply) -"cLO" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/space,/area/solar/starboard) -"cLP" = (/obj/structure/chair/stool,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cLQ" = (/obj/structure/rack,/obj/item/weapon/coin/twoheaded,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLR" = (/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"cLS" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/toxins/xenobiology) -"cLT" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/toxins/xenobiology) -"cLU" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTH)"; icon_state = "whitepurple"; dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTH)"; icon_state = "warningline"; dir = 1},/area/toxins/xenobiology) -"cLV" = (/obj/item/weapon/bombcore/training,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cLW" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint2) -"cLX" = (/obj/machinery/constructable_frame/machine_frame,/obj/item/weapon/circuitboard/chem_master,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLY" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/bottle/capsaicin,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cLZ" = (/obj/structure/closet/wardrobe/green,/obj/item/clothing/under/color/yellowgreen{desc = "A hideous fluorescent yellow jumpsuit."},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cMa" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cMb" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cMc" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/space,/area/solar/port) -"cMd" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMe" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMf" = (/obj/item/clothing/suit/bio_suit/plaguedoctorsuit,/obj/item/clothing/head/plaguedoctorhat,/obj/item/clothing/mask/gas/plaguedoctor,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cMg" = (/obj/structure/spirit_board,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cMh" = (/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMi" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cMl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/xenobiology) -"cMm" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMn" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMo" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMp" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio8"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology) -"cMq" = (/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cMr" = (/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMs" = (/obj/item/weapon/wirecutters,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cMt" = (/obj/structure/table/reinforced,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMu" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cMv" = (/obj/structure/girder,/turf/simulated/floor/plating/airless,/area/maintenance/asmaint2) -"cMw" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cMx" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMy" = (/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMz" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/xenobiology) -"cMA" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/xenobiology) -"cMB" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMC" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMD" = (/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cME" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/xenobiology) -"cMF" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/xenobiology) -"cMG" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMH" = (/obj/structure/barricade/wooden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMI" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cMJ" = (/obj/structure/bed,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMK" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cML" = (/obj/structure/table/wood,/obj/structure/bedsheetbin,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMM" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cMN" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) -"cMO" = (/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMP" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cMQ" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/xenobiology) -"cMR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cMS" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cMT" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMU" = (/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cMV" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMW" = (/obj/structure/cable/green{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMX" = (/obj/structure/chair/stool,/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/stack/sheet/mineral/wood{amount = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMY" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/cable/green{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cMZ" = (/turf/simulated/wall,/area/toxins/xenobiology) -"cNa" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/toxins/xenobiology) -"cNb" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNc" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Xenobiology Lab North"; dir = 8; network = list("SS13","Sci"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNd" = (/obj/structure/girder,/obj/item/stack/sheet/metal{amount = 2},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNe" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNf" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNh" = (/obj/structure/mineral_door/wood,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNj" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNk" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; layer = 2.4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNl" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology) -"cNm" = (/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNn" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNo" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNp" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNq" = (/obj/item/toy/spinningtoy{desc = "It's a gravitational \"Singulo!\""},/turf/space,/area/space/nearstation) -"cNr" = (/obj/effect/landmark{name = "revenantspawn"},/mob/living/simple_animal/slime,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cNs" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/xenobiology) -"cNt" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNu" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/xenobiology) -"cNv" = (/obj/item/stack/sheet/metal{amount = 2},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNw" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/syringe,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/under/color/lightpurple,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNx" = (/obj/structure/closet/toolcloset,/obj/item/stack/cable_coil/green,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNy" = (/obj/item/weapon/coin/diamond,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cNz" = (/obj/item/weapon/coin/uranium,/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cNA" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNB" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) -"cNC" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cND" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNF" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNG" = (/obj/item/weapon/coin/plasma,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cNH" = (/obj/machinery/computer/slot_machine{balance = 15; money = 500},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cNI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint2) -"cNJ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Xenobiology Lab"; dir = 4; network = list("SS13","Sci"); start_active = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNK" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cNL" = (/obj/structure/table,/obj/item/wallframe/firealarm,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNN" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology) -"cNO" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNP" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cNQ" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNR" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (WEST)"; icon_state = "warningline"; dir = 8},/area/toxins/xenobiology) -"cNS" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (EAST)"; icon_state = "warningline"; dir = 4},/area/toxins/xenobiology) -"cNT" = (/obj/structure/chair,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cNU" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cNV" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNW" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology) -"cNX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cNY" = (/obj/machinery/nuclearbomb/syndicate,/obj/machinery/door/window{dir = 1; name = "Secure Storage"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cNZ" = (/turf/simulated/floor/plasteel/whitepurple/side,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/warningline,/area/toxins/xenobiology) -"cOa" = (/turf/simulated/floor/plasteel/whitepurple/side,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/warningline,/area/toxins/xenobiology) -"cOb" = (/turf/simulated/floor/plasteel/whitepurple/side,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel/warningline,/area/toxins/xenobiology) -"cOc" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOd" = (/obj/structure/table/glass,/obj/machinery/airalarm{pixel_y = 23},/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/weapon/extinguisher,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOe" = (/obj/machinery/camera{c_tag = "Xenobiology Lab South 2"; network = list("Sci"); start_active = 1},/obj/machinery/computer/camera_advanced/xenobio,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOf" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOh" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24; tag = "ne"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOj" = (/obj/machinery/monkey_recycler,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOk" = (/obj/machinery/camera{c_tag = "Xenobiology Lab South 1"; network = list("Sci"); start_active = 1},/obj/machinery/computer/camera_advanced/xenobio,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOl" = (/obj/machinery/smartfridge/extract,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOm" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/item/stack/sheet/mineral/plasma{amount = 3; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOn" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"cOo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Escape Pod 4"; dir = 8; network = list("SS13","Sci"); pixel_x = 0; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cOp" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_4) -"cOq" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_4) -"cOr" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/pod_4) -"cOs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cOt" = (/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cOu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOA" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/whitebot,/area/toxins/xenobiology) -"cOB" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOC" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOD" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOE" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOF" = (/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cOG" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cOH" = (/obj/machinery/door/airlock/external{name = "Escape Pod Four"; req_access = null; req_access_txt = "0"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cOI" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod4"; name = "escape pod 4"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cOJ" = (/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -26},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cOK" = (/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_y = -32; possible_destinations = "pod_asteroid4"; shuttleId = "pod4"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cOL" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_4) -"cOM" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_asteroid4"; name = "asteroid"},/turf/space,/area/space) -"cON" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/stack/sheet/mineral/wood{amount = 3},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cOO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cOP" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOR" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cOZ" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cPa" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cPb" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cPc" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/maintenance/asmaint2) -"cPd" = (/turf/space,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_4) -"cPe" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_4) -"cPf" = (/obj/structure/closet,/obj/structure/cable/pink{tag = "icon-1-6"; icon_state = "1-6"},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPg" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPh" = (/obj/structure/table/glass,/obj/machinery/light,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPi" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPj" = (/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPk" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPl" = (/obj/structure/cable/pink{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPm" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPn" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPo" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/structure/cable/pink{tag = "icon-0-8"; icon_state = "0-8"},/obj/machinery/power/apc{auto_name = 1; dir = 2; name = "Autoname APC South"; pixel_x = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPq" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -25; tag = "SOUTH"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPr" = (/obj/structure/table,/obj/item/device/electropack,/obj/item/device/healthanalyzer,/obj/item/device/assembly/signaler,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology) -"cPs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cPt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink{tag = "icon-0-9"; icon_state = "0-9"},/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cPu" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/xenobiology) -"cPv" = (/obj/machinery/computer/security/telescreen{dir = 1; name = "Test Chamber Monitor"; network = list("Xeno"); pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/xenobiology) -"cPw" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced{dir = 4},/obj/machinery/button/ignition{id = "Xenobio"; pixel_x = -6; pixel_y = -2},/obj/machinery/button/door{id = "Xenolab"; name = "Test Chamber Blast Doors"; pixel_x = 4; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/xenobiology) -"cPx" = (/obj/machinery/door/window/southleft{dir = 1; name = "Maximum Security Test Chamber"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/xenobiology) -"cPy" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 2},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/xenobiology) -"cPz" = (/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/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/xenobiology) -"cPA" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); lootcount = 2; name = "random material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cPB" = (/turf/simulated/floor/engine/vacuum,/area/toxins/xenobiology) -"cPC" = (/obj/machinery/shieldwallgen{req_access = list(55)},/obj/structure/cable/pink,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cPD" = (/obj/machinery/door/poddoor/preopen{id = "Xenolab"; name = "test chamber blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cPE" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/poddoor/preopen{id = "Xenolab"; name = "test chamber blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cPF" = (/obj/machinery/door/window/southleft{dir = 2; name = "Maximum Security Test Chamber"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "Xenolab"; name = "test chamber blast door"; unacidable = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPG" = (/obj/machinery/door/poddoor/preopen{id = "Xenolab"; name = "test chamber blast door"},/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/pink,/turf/simulated/floor/plating,/area/toxins/xenobiology) -"cPH" = (/obj/effect/spawner/lootdrop{loot = list(/obj/item/device/flashlight/slime = 1, /obj/item/weapon/stock_parts/cell/high/slime = 1); name = "random yellow slime device"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cPI" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/plating{burnt = 1; icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cPJ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) -"cPK" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPL" = (/obj/structure/disposaloutlet{dir = 2},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPM" = (/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cPN" = (/obj/structure/bookcase,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cPO" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/toxins/xenobiology) -"cPP" = (/obj/structure/table_frame,/obj/effect/spawner/lootdrop{loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); name = "random metal material damage spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cPQ" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cPR" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cPS" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint2) -"cPT" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_x = -25; pixel_y = -2; tag = "WEST"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPU" = (/obj/effect/spawner/lootdrop{loot = list(/obj/effect/decal/remains/xeno = 49, /obj/structure/alien/egg = 1); name = "2% chance xeno egg spawner"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; unacidable = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPW" = (/obj/item/device/radio/beacon,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPX" = (/obj/machinery/sparker{dir = 2; id = "Xenobio"; pixel_x = 25},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPY" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/camera{c_tag = "Secure Xenobiology Pen"; dir = 1; network = list("Xeno","Sci"); start_active = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"cPZ" = (/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQa" = (/obj/structure/barricade/wooden,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQb" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQc" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQd" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/stack/sheet/mineral/wood,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQe" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/item/stack/sheet/mineral/wood{amount = 3},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQf" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQg" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQh" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQi" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating{broken = 1; icon_state = "platingdmg1"},/area/maintenance/asmaint2) -"cQj" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQk" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQl" = (/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQm" = (/obj/item/trash/syndi_cakes,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQn" = (/obj/item/weapon/lighter/greyscale,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cQo" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/asmaint2) -"cQp" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"cQq" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/simulated/floor/plating/airless,/area/space/nearstation) -"cQr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/simulated/wall,/area/toxins/test_area) -"cQs" = (/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"cQt" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"cQu" = (/turf/simulated/wall,/area/toxins/test_area) -"cQv" = (/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/toxins/test_area) -"cQw" = (/obj/structure/chair,/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/test_area) -"cQx" = (/turf/simulated/floor/plating/airless{dir = 1; icon_state = "warnplate"},/area/toxins/test_area) -"cQy" = (/obj/structure/chair,/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/toxins/test_area) -"cQz" = (/obj/structure/table,/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"cQA" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/test_area) -"cQB" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/toxins/test_area) -"cQC" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/toxins/test_area) -"cQD" = (/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/toxins/test_area) -"cQE" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating/airless,/area/toxins/test_area) -"cQF" = (/obj/structure/chair{dir = 4},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/toxins/test_area) -"cQG" = (/obj/structure/chair{dir = 8},/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/toxins/test_area) -"cQH" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/toxins/test_area) -"cQI" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Bomb Test Site"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 1; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); start_active = 1; use_power = 0},/obj/item/target/alien{anchored = 1},/turf/simulated/floor/plating/airless{dir = 2; icon_state = "warnplate"},/area/toxins/test_area) -"cQJ" = (/obj/structure/chair{dir = 1},/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/toxins/test_area) -"cQK" = (/turf/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/toxins/test_area) -"cQL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/wall,/area/maintenance/atmos_control) -"cQM" = (/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/atmos_control) -"cQN" = (/obj/structure/cable/green{tag = "icon-1-6"; icon_state = "1-6"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cQO" = (/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/weapon/wirerod,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cQP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"cQQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"cQR" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cQS" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"cQT" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cQU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cQV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/simulated/floor/plasteel/warning{dir = 8},/area/engine/engineering) -"cQW" = (/obj/structure/cable/green{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable/green{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cQX" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_construction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cQY" = (/obj/structure/cable/green{tag = "icon-1-9"; icon_state = "1-9"},/obj/structure/cable/green{tag = "icon-4-9"; icon_state = "4-9"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cQZ" = (/obj/structure/cable/green{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cRa" = (/obj/structure/cable/green{tag = "icon-5-8"; icon_state = "5-8"},/obj/structure/cable/green{tag = "icon-1-8"; icon_state = "1-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"cRb" = (/turf/simulated/floor/plasteel/whitepurple/side{tag = "icon-whitepurple (NORTHWEST)"; icon_state = "whitepurple"; dir = 9},/turf/simulated/floor/plasteel/warningline{tag = "icon-warningline (NORTHWEST)"; icon_state = "warningline"; dir = 9},/area/medical/research{name = "Research Division"}) -"cRc" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; tag = "cargoshuttleup"},/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cRd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cRe" = (/obj/machinery/door/airlock/external{glass = 1; name = "Cargo Escape Airlock"; opacity = 0},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/hallway/secondary/exit) -"cRf" = (/obj/machinery/door/airlock/external{glass = 1; name = "Cargo Escape Airlock"; opacity = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/hallway/secondary/exit) -"cRg" = (/obj/machinery/door/airlock/external{glass = 1; name = "Escape Airlock"; opacity = 0},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/hallway/secondary/exit) -"cRh" = (/obj/machinery/door/airlock/external{glass = 1; name = "Escape Airlock"; opacity = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/hallway/secondary/exit) -"cRi" = (/obj/machinery/door/airlock/external{glass = 1; name = "Security Escape Airlock"; opacity = 0; req_access_txt = "2"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/hallway/secondary/exit) -"cRj" = (/obj/machinery/door/airlock/external{glass = 1; name = "Security Escape Airlock"; opacity = 0; req_access_txt = "2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/hallway/secondary/exit) -"cRk" = (/turf/simulated/floor/plasteel,/obj/machinery/door/airlock/external{glass = 1; name = "Mining Dock Airlock"; opacity = 0; req_access = null; req_access_txt = "48"},/turf/simulated/floor/plasteel/sandeffect,/area/quartermaster/miningdock) -"cRl" = (/obj/machinery/door/airlock/external{glass = 1; name = "Solar Maintenance"; opacity = 0; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"cRm" = (/obj/machinery/door/airlock/external{glass = 1; name = "Solar Maintenance"; opacity = 0; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cRn" = (/obj/machinery/door/airlock/external{glass = 1; name = "Supply Dock Airlock"; opacity = 0; req_access_txt = "31"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/quartermaster/storage) -"cRo" = (/obj/machinery/door/airlock/external{glass = 1; name = "Supply Dock Airlock"; opacity = 0; req_access_txt = "31"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/quartermaster/storage) -"cRp" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/space,/area/space/nearstation) -"cRq" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/space,/area/space/nearstation) -"cRr" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/space,/area/space/nearstation) -"cRs" = (/obj/structure/lattice/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/space,/area/space/nearstation) -"cRt" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/syndicate) -"cRu" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cRv" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cRw" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_sw"; name = "southwest of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"cRx" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_se"; name = "southeast of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"cRy" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_s"; name = "south of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/space, +/area/space) +"aab" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"aad" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"aaf" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/simulated/floor/plating/airless, +/area/storage/secure) +"aag" = ( +/turf/simulated/wall, +/area/storage/secure) +"aah" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/storage/secure) +"aai" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/storage/secure) +"aaj" = ( +/turf/simulated/wall, +/area/aisat) +"aak" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/aisat) +"aal" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aam" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aan" = ( +/obj/machinery/computer/monitor, +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aao" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aap" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite Storage"; + network = list("Sat"); + start_active = 1 + }, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aaq" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aar" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aas" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/secure) +"aat" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aau" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aav" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aaw" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aax" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aay" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/secure) +"aaz" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aaA" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aaB" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite Northwest"; + dir = 8; + network = list("Sat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aaC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aaD" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning/corner, +/area/storage/secure) +"aaE" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/darkwarning, +/area/storage/secure) +"aaF" = ( +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (NORTH)"; + icon_state = "warndarkcorners"; + dir = 1 + }, +/area/storage/secure) +"aaG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel/black, +/area/storage/secure) +"aaH" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite Northeast"; + dir = 4; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aaI" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/aisat) +"aaJ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/darkwarning, +/area/storage/secure) +"aaK" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/status_display{ + layer = 3; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/storage/secure) +"aaL" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/blue, +/obj/structure/cable/white{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/storage/secure) +"aaM" = ( +/obj/machinery/shieldgen, +/obj/structure/cable/white{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/ai_status_display{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/storage/secure) +"aaN" = ( +/obj/machinery/shieldgen, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/darkwarning, +/area/storage/secure) +"aaO" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/aisat) +"aaP" = ( +/turf/simulated/wall, +/area/turret_protected/ai) +"aaQ" = ( +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"aaR" = ( +/obj/structure/cable/white{ + tag = "icon-1-10"; + icon_state = "1-10" + }, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"aaS" = ( +/obj/structure/cable/white{ + tag = "icon-5-10"; + icon_state = "5-10" + }, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"aaT" = ( +/obj/machinery/porta_turret_construct, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/turret_protected/ai) +"aaU" = ( +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"aaV" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"aaW" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/white{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/obj/machinery/camera{ + c_tag = "AI Chamber North"; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"aaX" = ( +/obj/machinery/porta_turret_construct, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/turret_protected/ai) +"aaY" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"aaZ" = ( +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/turret_protected/ai) +"aba" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"abb" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"abc" = ( +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/turret_protected/ai) +"abd" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abe" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abf" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"abg" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/turret_protected/ai) +"abh" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abi" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abj" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/turret_protected/ai) +"abk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abl" = ( +/turf/simulated/wall/r_wall, +/area/aisat) +"abm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abn" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abo" = ( +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + auto_name = 1; + cell_type = 5000; + dir = 2; + name = "AI Chamber APC"; + pixel_y = -24 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -27; + pixel_y = -9 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 29; + pixel_y = 0 + }, +/obj/machinery/button/flasher{ + id = "AI"; + pixel_x = 26; + pixel_y = -24 + }, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = -22; + pixel_y = -25 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abq" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abr" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/oil, +/turf/simulated/floor/plating, +/area/aisat) +"abs" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite West 1"; + dir = 8; + network = list("Sat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"abt" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/aisat) +"abu" = ( +/turf/space, +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The six is slightly darker than the other numbers."; + tag = "six" + }, +/obj/item/weapon/paper/crumpled{ + info = "Or were they somewhere else, hmm..." + }, +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/item/clothing/under/chameleon, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/turret_protected/ai) +"abv" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -2 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -28 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 23 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abw" = ( +/obj/machinery/door/window{ + dir = 8; + name = "AI Core Door"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abx" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"aby" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abz" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abA" = ( +/obj/machinery/door/window{ + dir = 4; + name = "AI Core Door"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abB" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 28; + pixel_y = -2 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 23 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -27 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abC" = ( +/turf/space, +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The five is slightly darker than the other numbers."; + tag = "five" + }, +/obj/item/weapon/paper/crumpled{ + info = "The seventh is locked safe away..." + }, +/obj/item/device/batterer{ + max_uses = 1; + origin_tech = "magnets=3;combat=3" + }, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/turret_protected/ai) +"abD" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite East 1"; + dir = 4; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"abE" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/white{ + tag = "icon-0-10"; + icon_state = "0-10" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abF" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/space; + width = 18 + }, +/turf/space, +/area/space) +"abG" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/turret_protected/ai) +"abH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abI" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/machinery/door/window{ + dir = 1; + name = "AI SMES Door"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2"; + tag = "icon-0-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI RC"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abK" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/turret_protected/ai) +"abL" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"abM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abN" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abO" = ( +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/ai) +"abP" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"abQ" = ( +/obj/structure/cable/white{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"abR" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"abS" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"abT" = ( +/obj/structure/cable/white{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/ai) +"abU" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/porta_turret_construct, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/turret_protected/ai) +"abW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"abZ" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai) +"aca" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Chamber South"; + dir = 1; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"acb" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"acc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"acd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/porta_turret_construct, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/turret_protected/ai) +"ace" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"acf" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"acg" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "closed"; + locked = 1; + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai) +"ach" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"aci" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"acj" = ( +/turf/space, +/obj/machinery/porta_turret/syndicate{ + dir = 9 + }, +/turf/simulated/wall/shuttle{ + dir = 8; + icon_state = "diagonalWall3" + }, +/area/shuttle/syndicate) +"ack" = ( +/turf/simulated/wall/shuttle{ + icon_state = "wall3" + }, +/area/shuttle/syndicate) +"acl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters{ + id = "syndieshutters"; + name = "blast shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"acm" = ( +/turf/indestructible/opshuttle, +/area/shuttle/syndicate) +"acn" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite West 2"; + dir = 8; + network = list("Sat"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aco" = ( +/turf/simulated/wall, +/area/turret_protected/aisat_interior) +"acp" = ( +/turf/simulated/wall/r_wall, +/area/turret_protected/aisat_interior) +"acq" = ( +/obj/structure/table, +/obj/item/weapon/secbot_assembly, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acr" = ( +/obj/machinery/porta_turret/ai, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acs" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/aisat_interior) +"act" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/structure/cable/white, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/aisat_interior) +"acu" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Antechamber Motion Sensor"; + desc = "It watches you carefully."; + name = "motion-sensitive security camera"; + network = list("Sat") + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/aisat_interior) +"acv" = ( +/obj/structure/table, +/obj/item/robot_parts/robot_suit, +/obj/item/robot_parts/head, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acw" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite East 2"; + dir = 4; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"acx" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acy" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acz" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acA" = ( +/obj/machinery/computer/shuttle/syndicate, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acB" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "syndieshutters"; + name = "remote shutter control"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acC" = ( +/obj/structure/computerframe, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acD" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/oil, +/turf/simulated/floor/plating, +/area/aisat) +"acE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/turret_protected/aisat_interior) +"acF" = ( +/obj/structure/table, +/obj/item/robot_parts/l_arm, +/obj/item/robot_parts/chest, +/obj/item/robot_parts/l_arm, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/turret_protected/aisat_interior) +"acG" = ( +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"acH" = ( +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"acI" = ( +/obj/structure/table, +/obj/item/robot_parts/r_arm, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/laser_pointer/upgraded, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/turret_protected/aisat_interior) +"acJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/turret_protected/aisat_interior) +"acK" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acL" = ( +/turf/space, +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/simulated/wall/shuttle{ + dir = 1; + icon_state = "diagonalWall3" + }, +/area/shuttle/syndicate) +"acM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"acN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/turret_protected/aisat_interior) +"acO" = ( +/obj/structure/table, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/device/assembly/flash/handheld, +/obj/item/robot_parts/r_leg, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"acP" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acQ" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acR" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/turret_protected/aisat_interior) +"acS" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acT" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"acU" = ( +/obj/structure/table, +/obj/item/robot_parts/l_leg, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/item/device/mmi, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/device/assembly/flash/handheld, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"acV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/turret_protected/aisat_interior) +"acW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"acX" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acY" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + freerange = 1; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"acZ" = ( +/obj/structure/closet/syndicate/personal, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"ada" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/lattice, +/turf/space, +/area/space) +"adb" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/turret_protected/aisat_interior) +"add" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"ade" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/turret_protected/aisat_interior) +"adf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/lattice, +/turf/space, +/area/space) +"adh" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 2; + icon_state = "diagonalWall3" + }, +/area/shuttle/syndicate) +"adi" = ( +/obj/machinery/door/window{ + name = "Cockpit"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"adj" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 4; + icon_state = "diagonalWall3" + }, +/area/shuttle/syndicate) +"adk" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI."; + dir = 1; + name = "AI Satellite Monitor"; + network = list("Sat"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"adl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"adm" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adn" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"ado" = ( +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/turret_protected/aisat_interior) +"adp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/space, +/area/space) +"adq" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/weapon/crowbar/red, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"adr" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/zipties{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"ads" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/turret_protected/aisat_interior) +"adt" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adu" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adv" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/turret_protected/aisat_interior) +"adx" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"ady" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"adz" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adB" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/space, +/area/space) +"adC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"adD" = ( +/turf/simulated/floor/bluegrid, +/area/turret_protected/aisat_interior) +"adE" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"adG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/space, +/area/space) +"adH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adI" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adJ" = ( +/obj/structure/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"adK" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite Southwest"; + dir = 8; + network = list("Sat"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adL" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "AI Satellite Antechamber"; + req_one_access_txt = "65" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/aisat_interior) +"adM" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite Southeast"; + dir = 4; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adN" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"adO" = ( +/obj/structure/closet/syndicate/nuclear, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"adP" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adQ" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"adR" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"adS" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/aisat) +"adT" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/aisat) +"adU" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/aisat) +"adV" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite Access"; + network = list("Sat"); + start_active = 1 + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/aisat) +"adW" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/aisat) +"adX" = ( +/obj/machinery/turretid{ + control_area = "AI Satellite Antechamber"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = 24; + req_access = list(65) + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/aisat) +"adY" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/aisat) +"adZ" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/aisat) +"aea" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/aisat) +"aeb" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aec" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aed" = ( +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/aisat) +"aee" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 4 + }, +/turf/indestructible/opshuttle, +/area/shuttle/syndicate) +"aef" = ( +/obj/structure/table, +/obj/item/device/aicard, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeg" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeh" = ( +/obj/machinery/door/poddoor{ + auto_close = 300; + id = "smindicate"; + name = "outer blast door" + }, +/obj/machinery/button/door{ + id = "smindicate"; + name = "external door control"; + pixel_x = -26; + pixel_y = 0; + req_access_txt = "150" + }, +/obj/docking_port/mobile{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate"; + name = "syndicate infiltrator"; + roundstart_move = "syndicate_away"; + travelDir = 180; + width = 18 + }, +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/space; + width = 18 + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"aei" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 1; + icon_state = "diagonalWall3" + }, +/area/shuttle/syndicate) +"aej" = ( +/turf/simulated/floor/plasteel/darkwarning, +/area/aisat) +"aek" = ( +/obj/machinery/bluespace_beacon, +/turf/simulated/floor/plasteel/darkwarning, +/area/aisat) +"ael" = ( +/obj/machinery/status_display{ + layer = 3; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (NORTH)"; + icon_state = "warndarkcorners"; + dir = 1 + }, +/area/aisat) +"aem" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aen" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aep" = ( +/obj/machinery/ai_status_display{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeq" = ( +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aer" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aes" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/abandoned) +"aet" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/abandoned) +"aeu" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/abandoned) +"aev" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/indestructible/opshuttle, +/area/shuttle/syndicate) +"aew" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/plating, +/area/aisat) +"aex" = ( +/obj/machinery/teleport/station, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plating, +/area/aisat) +"aey" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/plating, +/area/aisat) +"aez" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/aisat) +"aeA" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeB" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/aisat) +"aeC" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/obj/effect/decal/cleanable/oil, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeD" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f13"; + icon_state = "swall_f13" + }, +/area/shuttle/abandoned) +"aeE" = ( +/obj/machinery/sleeper, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aeF" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aeG" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aeH" = ( +/obj/structure/table/optable, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aeI" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f11"; + icon_state = "swall_f11" + }, +/area/shuttle/abandoned) +"aeJ" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/abandoned) +"aeK" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"aeL" = ( +/obj/machinery/door/window{ + dir = 4; + name = "EVA Storage"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeM" = ( +/obj/structure/table, +/obj/item/weapon/c4{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/item/weapon/c4{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/c4{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/weapon/c4{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/c4{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeN" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeO" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeP" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"aeQ" = ( +/obj/machinery/door/airlock/external{ + name = "AI Satellite External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/aisat) +"aeR" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/abandoned) +"aeS" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aeT" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f18"; + icon_state = "swall_f18" + }, +/area/shuttle/abandoned) +"aeU" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/abandoned) +"aeV" = ( +/obj/machinery/door/window{ + name = "Ready Room"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeW" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "EVA Storage"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"aeY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/syndicate/black/red, +/obj/item/clothing/head/helmet/space/syndicate/black/red, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aeZ" = ( +/obj/structure/transit_tube{ + icon_state = "D-SE" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"afa" = ( +/obj/structure/transit_tube{ + icon_state = "E-SW" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"afb" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/space, +/area/space) +"afc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube{ + tag = "icon-E-W-Pass"; + icon_state = "E-W-Pass" + }, +/turf/space, +/area/space) +"afd" = ( +/obj/structure/lattice, +/obj/structure/transit_tube, +/turf/space, +/area/space) +"afe" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/simulated/floor/plating, +/area/aisat) +"aff" = ( +/obj/structure/transit_tube, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"afg" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/transit_tube/station/reverse{ + tag = "icon-closed (NORTH)"; + icon_state = "closed"; + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/aisat) +"afh" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/transit_tube{ + tag = "icon-Block (WEST)"; + icon_state = "Block"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"afi" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/aisat) +"afj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/aisat) +"afk" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall15"; + dir = 2 + }, +/area/shuttle/abandoned) +"afl" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f14"; + icon_state = "swall_f14" + }, +/area/shuttle/abandoned) +"afm" = ( +/obj/item/weapon/hemostat, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"afn" = ( +/obj/item/weapon/scalpel, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"afo" = ( +/obj/item/weapon/circuitboard/operating, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"afp" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/abandoned) +"afq" = ( +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"afr" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 8; + icon_state = "diagonalWall3" + }, +/area/shuttle/syndicate) +"afs" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + freerange = 1; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aft" = ( +/obj/structure/transit_tube{ + icon_state = "NE-SW" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"afu" = ( +/obj/structure/transit_tube{ + icon_state = "D-NW" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"afv" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/space) +"afw" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/aisat) +"afx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue, +/turf/simulated/floor/plating, +/area/aisat) +"afy" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/aisat) +"afz" = ( +/obj/machinery/door/airlock/external{ + name = "AI Satellite External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/obj/structure/cable/green{ + tag = "icon-1-10"; + icon_state = "1-10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/aisat) +"afA" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/abandoned) +"afB" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"afC" = ( +/obj/machinery/door/airlock/shuttle, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"afD" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"afE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"afF" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/space; + width = 18 + }, +/turf/space, +/area/space) +"afG" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"afH" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"afI" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 9 + }, +/obj/item/device/assembly/voice{ + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"afJ" = ( +/obj/structure/table, +/obj/item/weapon/wrench, +/obj/item/device/assembly/infra, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"afK" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"afL" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool/largetank{ + pixel_y = 3 + }, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"afM" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space) +"afN" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/space, +/area/space) +"afO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/turf/space, +/area/space) +"afP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/space, +/area/space) +"afQ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/meter, +/turf/space, +/area/space) +"afR" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-5-8"; + icon_state = "5-8" + }, +/turf/space, +/area/space) +"afS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/space, +/area/space) +"afT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"afU" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"afV" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/abandoned) +"afW" = ( +/obj/machinery/door/airlock/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"afX" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f16"; + icon_state = "swall_f16" + }, +/area/shuttle/abandoned) +"afY" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"afZ" = ( +/obj/machinery/door/window/westright{ + name = "Tool Storage"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"aga" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/syndicate, +/obj/item/weapon/crowbar/red, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"agb" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + tag = "icon-5-10"; + icon_state = "5-10" + }, +/turf/space, +/area/space) +"agc" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agd" = ( +/obj/structure/table, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"age" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Tool Storage"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"agf" = ( +/obj/structure/transit_tube{ + icon_state = "S-NE" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"agg" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f12"; + icon_state = "swall_f12" + }, +/area/shuttle/abandoned) +"agh" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agi" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/cell/high{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/cell/high, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"agj" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agk" = ( +/obj/structure/sign/bluecross_2, +/turf/indestructible/opshuttle, +/area/shuttle/syndicate) +"agl" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Infirmary"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agm" = ( +/obj/structure/table, +/obj/item/device/sbeacondrop/bomb{ + pixel_y = 5 + }, +/obj/item/device/sbeacondrop/bomb, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"agn" = ( +/obj/structure/table, +/obj/item/weapon/grenade/syndieminibomb{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/grenade/syndieminibomb{ + pixel_x = -1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"ago" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/space, +/area/space) +"agp" = ( +/obj/machinery/door/window, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor5" + }, +/area/shuttle/abandoned) +"agq" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor5" + }, +/area/shuttle/abandoned) +"agr" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Infirmary"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"ags" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"agt" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Surgery"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agu" = ( +/obj/structure/transit_tube{ + icon_state = "N-S-Pass" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"agv" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/turf/space, +/area/space) +"agw" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/oxygen, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agx" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agy" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/robot_parts/r_arm, +/obj/item/robot_parts/l_arm, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agA" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agC" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"agD" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agE" = ( +/obj/structure/table, +/obj/item/weapon/surgicaldrill, +/obj/item/weapon/circular_saw, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agF" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 30 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"agG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"agH" = ( +/obj/machinery/computer/shuttle/white_ship, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agK" = ( +/obj/item/weapon/ectoplasm, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agL" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (SOUTHWEST)"; + icon_state = "tracks"; + dir = 10 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (WEST)"; + icon_state = "tracks"; + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agO" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agP" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (WEST)"; + icon_state = "tracks"; + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agQ" = ( +/obj/machinery/door/airlock/shuttle, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (WEST)"; + icon_state = "tracks"; + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agR" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agS" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"agT" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"agU" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r" + }, +/turf/simulated/floor/plating, +/area/shuttle/syndicate) +"agV" = ( +/obj/structure/table, +/obj/item/weapon/gun/energy/laser/retro, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"agW" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor5" + }, +/area/shuttle/abandoned) +"agX" = ( +/obj/machinery/door/window/northright, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor5" + }, +/area/shuttle/abandoned) +"agY" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/abandoned) +"agZ" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/abandoned) +"aha" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahb" = ( +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahc" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahd" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahe" = ( +/obj/item/weapon/stock_parts/cell{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahf" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f15"; + icon_state = "swall_f15" + }, +/area/shuttle/abandoned) +"ahg" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/hardsuit/medical, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahh" = ( +/obj/machinery/door/poddoor{ + id = "oldship_gun"; + name = "pod bay door" + }, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"ahi" = ( +/obj/machinery/mass_driver{ + dir = 8; + icon_state = "mass_driver"; + id = "oldship_gun" + }, +/turf/simulated/floor/plating, +/area/shuttle/abandoned) +"ahj" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f17"; + icon_state = "swall_f17" + }, +/area/shuttle/abandoned) +"ahk" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/arrival) +"ahl" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/arrival) +"ahm" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f10"; + dir = 2 + }, +/area/shuttle/arrival) +"ahn" = ( +/obj/machinery/computer/pod{ + id = "oldship_gun" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aho" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/arrival) +"ahp" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahq" = ( +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahr" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahs" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"aht" = ( +/turf/simulated/wall/r_wall, +/area/hallway/secondary/entry) +"ahu" = ( +/obj/machinery/door/airlock/shuttle, +/obj/docking_port/mobile{ + dheight = 0; + dir = 1; + dwidth = 11; + height = 22; + id = "whiteship"; + launch_status = 0; + name = "NT Medical Ship"; + roundstart_move = "whiteship_away"; + travelDir = 180; + width = 35 + }, +/obj/docking_port/stationary{ + dir = 1; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13 Arrival Docking"; + width = 35 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/abandoned) +"ahv" = ( +/turf/simulated/wall, +/area/hallway/secondary/entry) +"ahw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahx" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/arrival) +"ahy" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/arrival) +"ahz" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahA" = ( +/obj/machinery/chem_heater, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"ahB" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Port Docking Bay 4"; + opacity = 0; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahC" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Port Docking Bay 3"; + opacity = 0; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahD" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_1) +"ahE" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_1) +"ahF" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + tag = "icon-propulsion (WEST)"; + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_1) +"ahG" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Escape Pod 1"; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahH" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ahI" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"ahJ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahK" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "arrival"; + dir = 8 + }, +/area/hallway/secondary/entry) +"ahM" = ( +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"ahN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahO" = ( +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahP" = ( +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod_asteroid1"; + name = "asteroid" + }, +/turf/space, +/area/space) +"ahQ" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_1) +"ahR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = 0; + pixel_y = -32; + possible_destinations = "pod_asteroid1"; + shuttleId = "pod1" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"ahS" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = 6; + pixel_y = -26 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"ahT" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 8; + id = "pod1"; + name = "escape pod 1" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"ahU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahV" = ( +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ahW" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Port Docking Bay 1"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ahX" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 + }, +/obj/docking_port/mobile{ + dir = 4; + dwidth = 5; + height = 7; + id = "arrival"; + name = "arrival shuttle"; + travelDir = -90; + width = 15 + }, +/turf/simulated/floor/plating, +/area/shuttle/arrival) +"ahY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ahZ" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/simulated/floor/plating, +/area/shuttle/arrival) +"aia" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aib" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/warning, +/area/hallway/secondary/entry) +"aic" = ( +/turf/simulated/floor/plasteel/warning, +/area/hallway/secondary/entry) +"aid" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aie" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_1) +"aif" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + tag = "icon-propulsion (WEST)"; + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_1) +"aig" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"aih" = ( +/obj/structure/sign/pods, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"aii" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Northwest"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"aij" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"aik" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle"; + dir = 4; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ail" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aim" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Northeast"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"ain" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aio" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/solar/auxport) +"aip" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiq" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"air" = ( +/obj/structure/closet/wardrobe/green, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ais" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"ait" = ( +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aiu" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiv" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_2) +"aiw" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_2) +"aix" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + tag = "icon-propulsion (WEST)"; + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_2) +"aiy" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Escape Pod 2"; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"aiz" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aiA" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aiB" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aiC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiD" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiF" = ( +/obj/machinery/camera{ + c_tag = "Arrivals East Docking Bays"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiG" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-6"; + icon_state = "0-6"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aiH" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aiI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow, +/turf/space, +/area/solar/auxport) +"aiJ" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-10"; + icon_state = "0-10"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aiK" = ( +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod_asteroid2"; + name = "asteroid" + }, +/turf/space, +/area/space) +"aiL" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_2) +"aiM" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = 0; + pixel_y = -32; + possible_destinations = "pod_asteroid2"; + shuttleId = "pod2" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"aiN" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = 6; + pixel_y = -26 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"aiO" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 8; + id = "pod2"; + name = "escape pod 2" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"aiP" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"aiQ" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/hallway/secondary/entry) +"aiR" = ( +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aiS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aiT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"aiU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"aiV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"aiW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/solar/auxport) +"aiX" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/solar/auxport) +"aiY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/solar/auxport) +"aiZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"aja" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"ajb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"ajc" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_2) +"ajd" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + tag = "icon-propulsion (WEST)"; + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_2) +"aje" = ( +/turf/simulated/floor/plasteel/warning/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"ajf" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ajg" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"ajh" = ( +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/hallway/secondary/entry) +"aji" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ajj" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/transport) +"ajk" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/transport) +"ajl" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/shuttle/transport) +"ajm" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/transport) +"ajn" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/transport) +"ajo" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-5"; + icon_state = "0-5"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ajp" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ajq" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-9"; + icon_state = "0-9"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ajr" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/turf/space, +/area/space) +"ajs" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ajt" = ( +/obj/machinery/requests_console{ + department = "Arrival Shuttle"; + name = "Arrival Shuttle RC"; + pixel_x = 30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aju" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ajv" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajw" = ( +/obj/machinery/computer/shuttle/ferry/request, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajx" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajy" = ( +/turf/simulated/floor/plasteel/shuttle, +/turf/simulated/wall/shuttle/interior{ + icon_state = "swall_f5" + }, +/area/shuttle/transport) +"ajz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/space, +/area/space) +"ajA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-9"; + icon_state = "4-9" + }, +/turf/space, +/area/space) +"ajB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/turf/space, +/area/space) +"ajC" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/space, +/area/space) +"ajD" = ( +/turf/simulated/wall, +/area/maintenance/aft) +"ajE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajF" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat/slab/meatproduct, +/obj/item/weapon/reagent_containers/food/snacks/meat/slab/xeno, +/obj/item/weapon/reagent_containers/food/snacks/meat/slab/bear, +/obj/item/weapon/reagent_containers/food/snacks/meat/slab/spider, +/obj/item/weapon/reagent_containers/food/snacks/meat/slab/killertomato, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajH" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajJ" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"ajK" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + id_tag = null; + name = "Port Docking Bay 2"; + opacity = 0; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"ajL" = ( +/obj/machinery/door/airlock/shuttle, +/obj/docking_port/mobile{ + dir = 4; + dwidth = 2; + height = 12; + id = "ferry"; + name = "ferry shuttle"; + roundstart_move = "ferry_away"; + travelDir = 180; + width = 5 + }, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/space; + width = 5 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajM" = ( +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajN" = ( +/obj/machinery/door/airlock/shuttle, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajO" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-2-9"; + icon_state = "2-9" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajQ" = ( +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajR" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajS" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajT" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ajU" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"ajV" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/arrival) +"ajW" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"ajX" = ( +/turf/simulated/wall/shuttle{ + tag = "icon-swall11"; + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/arrival) +"ajY" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"ajZ" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/transport) +"aka" = ( +/turf/simulated/floor/plasteel/shuttle, +/turf/simulated/wall/shuttle/interior{ + icon_state = "swall_f6" + }, +/area/shuttle/transport) +"akb" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/transport) +"akc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/auxport) +"akd" = ( +/obj/structure/transit_tube{ + tag = "icon-N-SE"; + icon_state = "N-SE" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ake" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"akf" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/engine/engineering) +"akg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"akh" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/engine/engineering) +"aki" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akj" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akk" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat/steak/spider, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akl" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/arrival) +"akm" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"akn" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"ako" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"akp" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + tag = "icon-swall_f9"; + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/arrival) +"akq" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/hallway/secondary/entry) +"akr" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/transport) +"aks" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"akt" = ( +/obj/structure/transit_tube{ + tag = "icon-E-NW"; + icon_state = "E-NW" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aku" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/simulated/floor/plating, +/area/engine/engineering) +"akv" = ( +/obj/structure/transit_tube, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/engine/engineering) +"akw" = ( +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/transit_tube/station/reverse, +/turf/simulated/floor/plasteel/black, +/area/engine/engineering) +"akx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/transit_tube{ + tag = "icon-Block (WEST)"; + icon_state = "Block"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/engine/engineering) +"aky" = ( +/turf/simulated/wall/r_wall, +/area/engine/engineering) +"akz" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals West"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/entry) +"akC" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals East"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"akD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"akE" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"akF" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engineering) +"akG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engineering) +"akH" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engineering) +"akI" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akJ" = ( +/turf/simulated/wall/rust, +/area/maintenance/aft) +"akK" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"akL" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akM" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"akO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"akP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"akQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"akR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"akS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/entry) +"akT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/hallway/secondary/entry) +"akU" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"akV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"akW" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"akX" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fpmaint2) +"akY" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"akZ" = ( +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"ala" = ( +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alb" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"alc" = ( +/turf/simulated/wall, +/area/maintenance/fpmaint2) +"ald" = ( +/obj/item/roller, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"ale" = ( +/obj/item/weapon/reagent_containers/blood/empty, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alf" = ( +/obj/structure/bedsheetbin, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall, +/area/engine/engineering) +"alh" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/engine/engineering) +"ali" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/engine/engineering) +"alj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Engineering AI Satellite Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/engine/engineering) +"alk" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"all" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alm" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"aln" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alo" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alp" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alq" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/scanning_module, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alr" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"als" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/security/vacantoffice) +"alt" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alu" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alv" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alw" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alx" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"aly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/hallway/secondary/entry) +"alz" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/hallway/secondary/entry) +"alA" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"alB" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = 0; + pixel_y = -32; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alD" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"alE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alF" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alG" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil/green{ + amount = 1; + icon_state = "coil_green1"; + pixel_x = -3; + pixel_y = -1; + tag = "icon-coil_green1" + }, +/obj/item/weapon/stock_parts/capacitor, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alI" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alJ" = ( +/obj/item/weapon/reagent_containers/blood/random, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alK" = ( +/obj/structure/computerframe, +/obj/item/weapon/circuitboard/operating, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alL" = ( +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"alM" = ( +/turf/simulated/wall/rust, +/area/maintenance/fpmaint2) +"alN" = ( +/turf/simulated/wall, +/area/engine/engineering) +"alO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "AI Satellite Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/engine/engineering) +"alP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/engine/engineering) +"alQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"alR" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/engine/engineering) +"alS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"alU" = ( +/turf/simulated/wall, +/area/security/vacantoffice) +"alV" = ( +/turf/simulated/wall/rust, +/area/security/vacantoffice) +"alW" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"alX" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry) +"alY" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"alZ" = ( +/turf/simulated/wall, +/area/security/checkpoint) +"ama" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amc" = ( +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"amd" = ( +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"ame" = ( +/turf/space, +/area/space/nearstation) +"amf" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amg" = ( +/obj/item/weapon/wrench, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amh" = ( +/obj/structure/table/optable, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"ami" = ( +/obj/item/weapon/shard, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amj" = ( +/obj/item/weapon/circuitboard/sleeper, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amk" = ( +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aml" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"amm" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"amn" = ( +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/structure/grille, +/obj/structure/cable/green{ + tag = "icon-2-6"; + icon_state = "2-6" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"amo" = ( +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"amp" = ( +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/structure/grille, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"amq" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"amr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall/r_wall, +/area/engine/engineering) +"ams" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/engine/engineering) +"amt" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (EAST)"; + icon_state = "bluecorner"; + dir = 4 + }, +/area/engine/engineering) +"amu" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/blue/side{ + tag = "icon-blue (NORTH)"; + icon_state = "blue"; + dir = 1 + }, +/area/engine/engineering) +"amv" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (NORTH)"; + icon_state = "bluecorner"; + dir = 1 + }, +/area/engine/engineering) +"amw" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/table, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"amx" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/obj/item/stack/cable_coil/green, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"amy" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"amz" = ( +/turf/simulated/floor/plasteel/delivery, +/area/engine/engineering) +"amA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"amB" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"amC" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"amD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"amE" = ( +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"amF" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/hallway/secondary/entry) +"amG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"amH" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"amI" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_midori, +/obj/item/weapon/lighter/greyscale, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"amJ" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"amK" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"amL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"amM" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"amN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/hallway/secondary/entry) +"amO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/checkpoint) +"amP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/checkpoint) +"amQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/checkpoint) +"amR" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/checkpoint) +"amS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amT" = ( +/obj/structure/closet/coffin, +/obj/item/weapon/firstaid_arm_assembly, +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/plating/airless{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/space/nearstation) +"amU" = ( +/obj/item/weapon/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amV" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amW" = ( +/obj/structure/table, +/obj/item/wallframe/firealarm, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amX" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amY" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"amZ" = ( +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"ana" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"anb" = ( +/obj/structure/cable/green{ + tag = "icon-2-6"; + icon_state = "2-6" + }, +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"anc" = ( +/obj/structure/cable/green{ + tag = "icon-4-9"; + icon_state = "4-9" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"and" = ( +/obj/structure/cable/green{ + tag = "icon-5-8"; + icon_state = "5-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"ane" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"anf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"ang" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"anh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engineering) +"ani" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"anj" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"ank" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"anl" = ( +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"anm" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"ann" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"ano" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"anp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"anq" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"anr" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/folder/blue, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"ans" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"ant" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/vacantoffice) +"anu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/secondary/entry) +"anv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"anw" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"anx" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"any" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/snacks/chips, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"anz" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"anA" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"anB" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"anC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/hallway/secondary/entry) +"anD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/checkpoint) +"anE" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/security/checkpoint) +"anF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/checkpoint) +"anG" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/computer/security, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Security Checkpoint"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/checkpoint) +"anH" = ( +/obj/structure/rack, +/obj/item/weapon/newspaper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anI" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anJ" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anK" = ( +/obj/structure/table/glass, +/obj/item/weapon/surgicaldrill, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anL" = ( +/obj/structure/table/glass, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anM" = ( +/obj/structure/table/glass, +/obj/item/weapon/hemostat, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"anP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/solar/auxstarboard) +"anQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/solar/auxport) +"anR" = ( +/turf/simulated/wall, +/area/maintenance/asmaint) +"anS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"anT" = ( +/obj/structure/cable/green, +/turf/simulated/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/engine/engineering) +"anU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engineering) +"anV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"anW" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"anX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"anY" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/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 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"anZ" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"aoa" = ( +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"aob" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"aoc" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"aod" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office"; + req_access_txt = "32" + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"aoe" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/secondary/entry) +"aof" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aog" = ( +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"aoh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/checkpoint) +"aoi" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/security/checkpoint) +"aoj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/checkpoint) +"aok" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/computer/card, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/checkpoint) +"aol" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aom" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aon" = ( +/turf/simulated/wall, +/area/maintenance/incinerator) +"aoo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/solar/auxstarboard) +"aop" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/circuitboard/microwave, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"aoq" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aor" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/item/weapon/circuitboard/arcade/orion_trail, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aos" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aot" = ( +/obj/structure/table, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aou" = ( +/obj/structure/cable/green{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aov" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) +"aow" = ( +/obj/structure/cable/green{ + tag = "icon-4-9"; + icon_state = "4-9" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aox" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/engineering) +"aoy" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aoz" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aoA" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aoB" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_y = 6 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aoC" = ( +/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/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aoD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aoE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/bot, +/area/engine/engineering) +"aoF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aoG" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aoH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"aoI" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/blue, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"aoJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"aoK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"aoL" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/folder/red, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"aoM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"aoN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/vacantoffice) +"aoO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/secondary/entry) +"aoP" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aoQ" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"aoR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"aoS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Meeting Room"; + dir = 10; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"aoT" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"aoU" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/paper, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry) +"aoV" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aoX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/checkpoint) +"aoY" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/checkpoint) +"aoZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/checkpoint) +"apa" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/checkpoint) +"apb" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"apc" = ( +/obj/item/device/assembly/mousetrap/armed, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"apd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"ape" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"apf" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fpmaint2) +"apg" = ( +/obj/item/weapon/rack_parts, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aph" = ( +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/incinerator) +"api" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4; + name = "input gas connector port" + }, +/obj/machinery/portable_atmospherics/canister, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Incinerator to Output"; + on = 0 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apm" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apn" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"apo" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/cell, +/obj/item/wallframe/airalarm, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"app" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"apq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"apr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"aps" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/scanning_module, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"apt" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Containment Northwest"; + dir = 4; + icon_state = "camera"; + network = list("Singularity"); + tag = "icon-camera (EAST)" + }, +/obj/structure/cable/green{ + tag = "icon-1-10"; + icon_state = "1-10" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"apu" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space/nearstation) +"apv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/engine/engineering) +"apw" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/engineering) +"apx" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"apy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"apz" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"apA" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"apB" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"apC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"apD" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"apE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"apF" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"apG" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"apH" = ( +/obj/structure/table/wood, +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"apI" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/wood, +/area/security/vacantoffice) +"apJ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/secondary/entry) +"apK" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"apL" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"apM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/security/checkpoint) +"apN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/security/checkpoint) +"apO" = ( +/obj/item/weapon/vending_refill/cigarette, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"apP" = ( +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"apQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"apR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"apS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"apT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/atmos_control) +"apU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"apV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"apW" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/incinerator) +"apX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"apZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aqa" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aqb" = ( +/obj/machinery/camera{ + c_tag = "Turbine Vent"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"aqc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space) +"aqd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"aqe" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Containment Northeast"; + dir = 8; + icon_state = "camera"; + network = list("Singularity"); + tag = "icon-camera (WEST)" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aqf" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/capacitor, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); + name = "random sheet material spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aqg" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"aqh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aqi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aqj" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aqk" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/obj/structure/cable/green{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aql" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aqm" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aqn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aqo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aqp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aqq" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aqr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aqs" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aqt" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aqu" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aqv" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aqw" = ( +/obj/machinery/vending/snack, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aqx" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Arrivals South"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aqy" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aqz" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aqA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aqB" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aqC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"aqD" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/security/checkpoint) +"aqE" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aqF" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aqG" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aqH" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aqI" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"aqJ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqL" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqN" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqO" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqQ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqR" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/atmos_control) +"aqS" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aqT" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Turbine Access"; + req_access_txt = "32" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"aqU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/maintenance/incinerator) +"aqV" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aqW" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aqX" = ( +/obj/item/weapon/cigbutt, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aqY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aqZ" = ( +/obj/machinery/airalarm{ + desc = "This particular atmos control unit appears to have no access restrictions."; + dir = 8; + icon_state = "alarm0"; + locked = 0; + name = "all-access air alarm"; + pixel_x = 24; + req_access = "0"; + req_one_access = "0" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"ara" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/incinerator) +"arb" = ( +/obj/machinery/door/poddoor{ + id = "auxincineratorvent"; + name = "Auxiliary Incinerator Vent" + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"arc" = ( +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"ard" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"are" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"arf" = ( +/obj/item/weapon/screwdriver, +/turf/space, +/area/space/nearstation) +"arg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"arh" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ari" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"arj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ark" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/toy/toy_xeno, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"arl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"arm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/asmaint) +"arn" = ( +/obj/machinery/door/airlock/maintenance{ + locked = 1; + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aro" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall, +/area/maintenance/asmaint) +"arp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"arq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/cardboard, +/obj/item/weapon/holosign_creator, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"arr" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ars" = ( +/obj/item/clothing/gloves/color/yellow, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"art" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aru" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"arv" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/weapon/extinguisher{ + pixel_x = 8 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"arw" = ( +/obj/structure/closet/radiation, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Engineering North"; + dir = 10; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"arx" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/yellow/corner, +/area/engine/engineering) +"ary" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"arz" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"arA" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"arB" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"arC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"arD" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"arE" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"arF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"arG" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"arH" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"arI" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"arJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"arK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"arL" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"arN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"arO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"arP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"arQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"arR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"arS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"arT" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"arU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"arV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"arW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/atmos_control) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/wall, +/area/maintenance/atmos_control) +"arZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"asa" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"asb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"asc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "atmospherics mix pump" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"ase" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1; + name = "Incinerator to Space" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asf" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "incinerator_airlock_exterior"; + idInterior = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator Access Console"; + pixel_x = 26; + pixel_y = 0; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/maintenance/incinerator) +"ash" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_exterior"; + idSelf = "incinerator_access_control"; + layer = 3.1; + name = "Incinerator airlock control"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/maintenance/incinerator) +"asi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 0; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"asj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"ask" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"asl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"asm" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"asn" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/asmaint) +"aso" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"asp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"asq" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"asr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ass" = ( +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/turf/space, +/area/space/nearstation) +"ast" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/engine/engineering) +"asu" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/engine/engineering) +"asv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"asw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"asx" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/matter_bin, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"asy" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"asz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"asA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"asB" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"asC" = ( +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"asD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"asE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"asF" = ( +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"asG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"asH" = ( +/turf/simulated/wall/r_wall, +/area/atmos) +"asI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmosmaint"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/atmos) +"asJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmosmaint"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/atmos) +"asK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmosmaint"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/atmos) +"asL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/atmos) +"asM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall, +/area/maintenance/atmos_control) +"asN" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"asO" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "plasma tank pump" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asQ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general{ + level = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asR" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Incinerator"; + on = 0 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"asU" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + icon_state = "closed"; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Turbine Interior Airlock"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/engine, +/area/maintenance/incinerator) +"asV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/engine, +/area/maintenance/incinerator) +"asW" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + icon_state = "closed"; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Turbine Exterior Airlock"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/engine, +/area/maintenance/incinerator) +"asX" = ( +/obj/machinery/igniter{ + icon_state = "igniter0"; + id = "Incinerator"; + luminosity = 2; + on = 0 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"asY" = ( +/obj/machinery/power/compressor{ + tag = "icon-compressor (WEST)"; + icon_state = "compressor"; + dir = 8; + luminosity = 2; + comp_id = "incineratorturbine" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"asZ" = ( +/obj/machinery/power/turbine{ + tag = "icon-turbine (EAST)"; + icon_state = "turbine"; + dir = 4; + luminosity = 2 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"ata" = ( +/obj/machinery/door/poddoor{ + id = "turbinevent"; + name = "Turbine Vent" + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"atb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"atc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"atd" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/auxsolarport) +"ate" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control Room"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarport) +"atf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/auxsolarport) +"atg" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Port Solar Control"; + track = 0 + }, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarport) +"ath" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ati" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/asmaint) +"atj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/maintenance/asmaint) +"atk" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"atl" = ( +/turf/simulated/wall/r_wall, +/area/medical/virology) +"atm" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"atn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"ato" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Solar Maintenance"; + opacity = 0; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"atp" = ( +/obj/item/weapon/wirecutters, +/turf/space, +/area/space/nearstation) +"atq" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"atr" = ( +/turf/simulated/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space/nearstation) +"ats" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"att" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/engine/engineering) +"atu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/engine/engineering) +"atv" = ( +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/engine/engineering) +"atw" = ( +/turf/simulated/floor/plating, +/area/engine/engineering) +"atx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aty" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"atz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"atA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering 2"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/warning/corner, +/area/engine/engineering) +"atB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/engine/engine_smes) +"atC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"atD" = ( +/turf/simulated/wall, +/area/engine/engine_smes) +"atE" = ( +/turf/simulated/wall/r_wall, +/area/engine/engine_smes) +"atF" = ( +/turf/simulated/wall/rust, +/area/engine/engine_smes) +"atG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"atH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"atJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"atK" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"atL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"atM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"atN" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTHEAST)"; + icon_state = "warning"; + dir = 5 + }, +/area/atmos) +"atO" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atP" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atQ" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"atS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/meter{ + frequency = 1441; + id_tag = "waste_meter"; + name = "Waste Loop" + }, +/obj/machinery/button/door{ + id = "atmosmaint"; + name = "Atmospherics Maintenance Shutters"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "24" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atT" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste"; + on = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/obj/machinery/meter{ + frequency = 1441; + id_tag = "distro_meter"; + name = "Distribution Loop" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Distro"; + on = 1; + target_pressure = 101 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atX" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1; + initialize_directions = 11 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics North"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"atY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"atZ" = ( +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/atmos) +"aua" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4; + name = "input gas connector port" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aub" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "input port pump" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"auc" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aud" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "Mix to Space" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aue" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"auf" = ( +/obj/machinery/computer/turbine_computer{ + id = "incineratorturbine" + }, +/obj/machinery/button/door{ + id = "turbinevent"; + name = "Turbine Vent Control"; + pixel_x = -6; + pixel_y = -24; + req_access_txt = "32" + }, +/obj/machinery/button/door{ + id = "auxincineratorvent"; + name = "Auxiliary Vent Control"; + pixel_x = 6; + pixel_y = -24; + req_access_txt = "32" + }, +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/incinerator) +"aug" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/engine, +/area/maintenance/incinerator) +"auh" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "air_in" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/maintenance/incinerator) +"aui" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"auj" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"auk" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Control Room"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarstarboard) +"aul" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/auxsolarstarboard) +"aum" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Starboard Solar Control"; + track = 0 + }, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarstarboard) +"aun" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auo" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aup" = ( +/obj/item/weapon/rack_parts, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auq" = ( +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aur" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/obj/effect/decal/cleanable/oil, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aus" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"aut" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"auu" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"auv" = ( +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"auw" = ( +/obj/structure/grille, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"aux" = ( +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"auy" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"auz" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"auA" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"auB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auC" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auD" = ( +/obj/item/wallframe/light_fixture, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auE" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auG" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auH" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auI" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"auJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"auK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"auL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"auM" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/medical/virology) +"auN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/medical/virology) +"auO" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/medical/virology) +"auP" = ( +/turf/simulated/wall, +/area/medical/virology) +"auQ" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"auR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"auS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Virology Monkey Pen"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"auT" = ( +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"auU" = ( +/obj/structure/closet/abductor{ + name = "strange locker" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/drone_shell, +/obj/item/stack/tile/sepia{ + amount = 6 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"auV" = ( +/turf/simulated/wall/rust, +/area/maintenance/asmaint) +"auW" = ( +/turf/simulated/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/space/nearstation) +"auX" = ( +/turf/simulated/floor/plating/airless{ + dir = 2; + icon_state = "warnplatecorner" + }, +/area/space/nearstation) +"auY" = ( +/turf/simulated/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space/nearstation) +"auZ" = ( +/turf/simulated/floor/plating/airless{ + tag = "icon-warnplatecorner (NORTH)"; + icon_state = "warnplatecorner"; + dir = 1 + }, +/area/space/nearstation) +"ava" = ( +/turf/simulated/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/space/nearstation) +"avb" = ( +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/engine/engineering) +"avc" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"avd" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"ave" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"avf" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"avg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"avh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engineering) +"avi" = ( +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engine_smes) +"avj" = ( +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/obj/structure/cable/green{ + tag = "icon-2-6"; + icon_state = "2-6" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engine_smes) +"avk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/engine/engine_smes) +"avl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/yellow/side, +/area/engine/engine_smes) +"avm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel/yellow/side, +/area/engine/engine_smes) +"avn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/yellow/side, +/area/engine/engine_smes) +"avo" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"avp" = ( +/obj/structure/cable/green{ + tag = "icon-4-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{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"avq" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/aft) +"avr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-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/aft) +"avs" = ( +/obj/structure/cable/green{ + tag = "icon-4-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 = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"avt" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"avu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"avv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"avw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fpmaint2) +"avx" = ( +/obj/machinery/pipedispenser/disposal, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"avy" = ( +/turf/simulated/floor/plasteel, +/area/atmos) +"avz" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"avA" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/turf/simulated/floor/plasteel, +/area/atmos) +"avB" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Waste to Filter"; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"avC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Incinerator"; + on = 0 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"avD" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"avE" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 6; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (SOUTHEAST)" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"avF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (EAST)" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Mix"; + on = 0 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTHWEST)"; + icon_state = "green"; + dir = 9 + }, +/area/atmos) +"avG" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (EAST)" + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1; + layer = 2.5; + on = 1; + tag = "" + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTHEAST)"; + icon_state = "green"; + dir = 5 + }, +/area/atmos) +"avH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (EAST)" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (EAST)" + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"avJ" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (EAST)" + }, +/turf/simulated/wall/r_wall, +/area/atmos) +"avK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "mix_in"; + 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/atmos) +"avL" = ( +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"avM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"avN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"avO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"avP" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating/airless, +/area/maintenance/incinerator) +"avQ" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"avR" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"avS" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"avT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"avU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"avV" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"avW" = ( +/obj/machinery/power/smes, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + dir = 2; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarport) +"avX" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/auxsolarport) +"avY" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarport) +"avZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"awa" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"awb" = ( +/obj/structure/rack, +/obj/item/weapon/light/tube, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/circuitboard/protolathe, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"awc" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"awd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"awe" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"awf" = ( +/turf/simulated/wall/rust, +/area/medical/virology) +"awg" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"awh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/plasteel{ + tag = "icon-whitegreencorner"; + icon_state = "whitegreencorner"; + dir = 2 + }, +/area/medical/virology) +"awi" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/medical/virology) +"awj" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"awk" = ( +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"awl" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + density = 0; + pass_flags = 0; + pixel_x = 32 + }, +/obj/item/weapon/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"awm" = ( +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel/whitegreen/corner{ + tag = "icon-whitegreencorner (WEST)"; + icon_state = "whitegreencorner"; + dir = 8 + }, +/area/medical/virology) +"awn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"awo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"awp" = ( +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel{ + tag = "icon-whitegreencorner"; + icon_state = "whitegreencorner"; + dir = 2 + }, +/area/medical/virology) +"awq" = ( +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The eight is slightly darker than the other numbers."; + tag = "eight" + }, +/obj/item/weapon/paper/crumpled{ + info = "Your reward is dice." + }, +/turf/simulated/floor/plating/airless{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/engine/engineering) +"awr" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + tag = "icon-emitter_center (WEST)"; + icon_state = "emitter_center"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aws" = ( +/obj/structure/particle_accelerator/power_box{ + tag = "icon-power_box (WEST)"; + icon_state = "power_box"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"awt" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + tag = "icon-fuel_chamber (WEST)"; + icon_state = "fuel_chamber"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"awu" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"awv" = ( +/obj/item/weapon/weldingtool, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"aww" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engineering) +"awx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"awy" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"awz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engineering) +"awA" = ( +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/green{ + tag = "icon-5-8"; + icon_state = "5-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engineering) +"awB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engine_smes) +"awC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engine_smes) +"awD" = ( +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/green{ + tag = "icon-4-9"; + icon_state = "4-9" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engine_smes) +"awE" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engine_smes) +"awF" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engine_smes) +"awG" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/engine_smes) +"awH" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engine_smes) +"awI" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + desc = "Marked to indicate placement of a PACMAN generator."; + dir = 1; + icon_state = "bot" + }, +/area/engine/engine_smes) +"awJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"awK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"awL" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"awN" = ( +/obj/machinery/pipedispenser, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHEAST)"; + icon_state = "warning"; + dir = 6 + }, +/area/atmos) +"awO" = ( +/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/plasteel/caution/corner, +/area/atmos) +"awP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel/caution/corner{ + tag = "icon-cautioncorner (WEST)"; + icon_state = "cautioncorner"; + dir = 8 + }, +/area/atmos) +"awQ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Filter"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 1; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (NORTH)" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"awR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supplymain/visible{ + name = "mix pipe" + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"awS" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 9; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (NORTHWEST)" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"awT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/obj/machinery/meter, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (WEST)"; + icon_state = "green"; + dir = 8 + }, +/area/atmos) +"awU" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10; + initialize_directions = 12 + }, +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "mix_in"; + name = "Gas Mix Tank Control"; + output_tag = "mix_in"; + sensors = list("mix_sensor" = "Tank") + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (EAST)"; + icon_state = "green"; + dir = 4 + }, +/area/atmos) +"awV" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"awW" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "mix_sensor" + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"awX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"awY" = ( +/obj/structure/cable/green{ + tag = "icon-1-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/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/atmos_control) +"awZ" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"axa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"axb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space) +"axd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space) +"axe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/space, +/area/space) +"axf" = ( +/obj/machinery/power/smes, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + dir = 2; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarstarboard) +"axg" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/auxsolarstarboard) +"axh" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/auxsolarstarboard) +"axi" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/item/weapon/mop, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"axj" = ( +/obj/item/weapon/wrench, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTHEAST)"; + icon_state = "tracks"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axl" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axm" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axn" = ( +/obj/effect/decal/cleanable/oil, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axo" = ( +/obj/structure/chair/stool, +/obj/machinery/newscaster{ + pixel_y = 32; + tag = "n" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axp" = ( +/obj/structure/rack, +/obj/item/weapon/wirecutters, +/obj/item/weapon/poster/contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axr" = ( +/obj/item/trash/can, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"axs" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "closed"; + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarport) +"axt" = ( +/obj/structure/rack, +/obj/item/weapon/light/bulb, +/obj/item/wallframe/light_fixture/small, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axu" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"axy" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"axz" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"axA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/medical/virology) +"axB" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/medical/virology) +"axC" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/medical/virology) +"axD" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"axE" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"axF" = ( +/obj/machinery/computer/pandemic, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"axG" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Virologist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"axH" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Virology"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"axI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology) +"axJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"axK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/medical/virology) +"axL" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space) +"axM" = ( +/obj/item/weapon/wrench, +/turf/simulated/floor/plating/airless{ + tag = "icon-warnplatecorner (WEST)"; + icon_state = "warnplatecorner"; + dir = 8 + }, +/area/space/nearstation) +"axN" = ( +/turf/simulated/floor/plating/airless{ + tag = "icon-warnplatecorner (EAST)"; + icon_state = "warnplatecorner"; + dir = 4 + }, +/area/space/nearstation) +"axO" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + tag = "icon-emitter_right (WEST)"; + icon_state = "emitter_right"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"axP" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Solar Maintenance"; + opacity = 0; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"axQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"axR" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engineering) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/engine/engineering) +"axT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering SMES Access"; + dir = 10; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engine_smes) +"axU" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/engine/engine_smes) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/engine/engine_smes) +"axW" = ( +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engine_smes) +"axX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner, +/area/engine/engine_smes) +"axY" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/side, +/area/engine/engine_smes) +"axZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/engine_smes) +"aya" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 2.9 + }, +/obj/item/weapon/wrench, +/turf/simulated/floor/plasteel, +/area/engine/engine_smes) +"ayb" = ( +/obj/item/trash/raisins, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ayc" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"ayd" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aye" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"ayf" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"ayg" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"ayh" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"ayi" = ( +/turf/simulated/wall, +/area/atmos) +"ayj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"ayk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"ayl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aym" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (EAST)"; + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ayn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/simulated/floor/plasteel/yellow, +/area/atmos) +"ayo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (WEST)"; + icon_state = "caution"; + dir = 8 + }, +/area/atmos) +"ayp" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ + dir = 8; + icon_state = "manifold"; + name = "mix pipe"; + tag = "icon-manifold (WEST)" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"ayq" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 9; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (NORTHWEST)" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"ayr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + tag = "icon-intact-g (NORTHEAST)"; + dir = 5; + initialize_directions = 12 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"ays" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix"; + on = 0 + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (SOUTHWEST)"; + icon_state = "green"; + dir = 10 + }, +/area/atmos) +"ayt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Unfiltered & Air to Mix"; + on = 1 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (SOUTHEAST)"; + icon_state = "green"; + dir = 6 + }, +/area/atmos) +"ayu" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"ayv" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"ayw" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/atmos) +"ayx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "mix_in"; + pixel_y = 1 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ayy" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Mix"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ayz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"ayA" = ( +/turf/simulated/wall/rust, +/area/maintenance/incinerator) +"ayB" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"ayC" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "closed"; + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayD" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/space, +/area/space) +"ayE" = ( +/obj/item/weapon/caution, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"ayF" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTH)"; + icon_state = "tracks"; + dir = 1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"ayG" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayH" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/bodybag, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayI" = ( +/obj/structure/table, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayJ" = ( +/obj/structure/rack, +/obj/item/weapon/lipstick/jade, +/obj/item/weapon/wirerod, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayK" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayM" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/asmaint) +"ayN" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/asmaint) +"ayO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/asmaint) +"ayP" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Maintenance"; + network = list("SS13") + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"ayQ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayR" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayS" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayT" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayU" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ayV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall/rust, +/area/medical/virology) +"ayW" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Distro to Virology"; + on = 1 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"ayX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/medical/virology) +"ayY" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/item/weapon/wrench, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/medical/virology) +"ayZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/medical/virology) +"aza" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"azb" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"azc" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"azd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aze" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"azf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"azg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"azh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"azi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"azj" = ( +/turf/simulated/floor/plasteel/whitegreen/side{ + tag = "icon-whitegreen (EAST)"; + icon_state = "whitegreen"; + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/medical/virology) +"azk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/cyan{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"azl" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"azm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"azn" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"azo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"azp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"azq" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space) +"azr" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/space, +/area/space) +"azs" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"azt" = ( +/obj/machinery/power/grounding_rod{ + anchored = 1 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"azu" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"azv" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/engine/engineering) +"azw" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/engine/engineering) +"azx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space/nearstation) +"azy" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/engine/engineering) +"azz" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"azA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"azB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning/corner{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/engine/engineering) +"azC" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (NORTH)"; + icon_state = "darkyellowcorners"; + dir = 1 + }, +/area/engine/engine_smes) +"azD" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"azE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/machinery/door/window{ + dir = 1; + name = "SMES Chamber"; + req_access_txt = "32" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"azF" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"azG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (EAST)"; + icon_state = "darkyellowcorners"; + dir = 4 + }, +/area/engine/engine_smes) +"azH" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"azI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"azJ" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"azK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"azL" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"azM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel, +/area/atmos) +"azN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"azO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"azP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel/caution/corner{ + tag = "icon-cautioncorner (EAST)"; + icon_state = "cautioncorner"; + dir = 4 + }, +/area/atmos) +"azQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"azR" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1; + initialize_directions = 11 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"azS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 1; + icon_state = "intact"; + name = "mix pipe"; + tag = "icon-intact (NORTH)" + }, +/turf/simulated/floor/plating, +/area/atmos) +"azT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/simulated/floor/plating, +/area/atmos) +"azU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"azV" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"azW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"azX" = ( +/turf/simulated/wall, +/area/maintenance/atmos_control) +"azY" = ( +/turf/simulated/wall, +/area/maintenance/fore) +"azZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aAa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aAb" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/fore) +"aAc" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fore) +"aAd" = ( +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/fore) +"aAe" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTH)"; + icon_state = "tracks"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAf" = ( +/obj/structure/statue/sandstone/assistant{ + desc = "A cheap statue of sandstone for a greyshirt. Seems oddly... realistic."; + name = "Statue of an Assistant" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAg" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAh" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/weapon/poster/contraband, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAi" = ( +/obj/structure/rack, +/obj/item/weapon/dice/d2, +/obj/item/weapon/poster/contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/medical/exam_room) +"aAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aAo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/wall, +/area/medical/medbay) +"aAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/medical/medbay) +"aAq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/wall, +/area/medical/medbay) +"aAr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aAs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"aAt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-whitegreencorner"; + icon_state = "whitegreencorner"; + dir = 2 + }, +/area/medical/virology) +"aAu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"aAv" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aAw" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aAx" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aAy" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/medical/virology) +"aAz" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aAA" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aAB" = ( +/turf/simulated/floor/plasteel/whitegreen/side{ + tag = "icon-whitegreen (EAST)"; + icon_state = "whitegreen"; + dir = 4 + }, +/obj/structure/closet/l3closet/virology, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/medical/virology) +"aAC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/cyan{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"aAD" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/warning, +/area/engine/engineering) +"aAE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/engineering) +"aAF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"aAG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aAH" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Engineering SMES Room"; + dir = 4; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aAI" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"aAJ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aAK" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"aAL" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aAM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aAN" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aAO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aAP" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "loadingarea"; + tag = "loading" + }, +/area/hallway/secondary/entry) +"aAR" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/delivery, +/area/atmos) +"aAS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/atmos) +"aAT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/atmos) +"aAU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTH)"; + icon_state = "red"; + dir = 1 + }, +/area/atmos) +"aAV" = ( +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "24" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Desk"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-escape (NORTH)"; + icon_state = "escape"; + dir = 1 + }, +/area/atmos) +"aAW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel, +/area/atmos) +"aAX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/simulated/floor/plasteel, +/area/atmos) +"aAY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Ports"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aAZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Ports"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aBa" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Pure to Ports"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aBb" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aBc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"aBd" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump"; + on = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/atmos) +"aBe" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"aBf" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"aBg" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/atmos) +"aBh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/engine/n2o, +/area/atmos) +"aBi" = ( +/turf/simulated/floor/engine/n2o, +/area/atmos) +"aBj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aBk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/atmos_control) +"aBl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBn" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBo" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Maintenance"; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBq" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBt" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aBu" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBv" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBw" = ( +/obj/structure/table, +/obj/item/wallframe/airalarm, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aBx" = ( +/obj/structure/table, +/obj/item/wallframe/airalarm, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBy" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBz" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBB" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBC" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/poster/contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBD" = ( +/turf/simulated/wall, +/area/medical/exam_room) +"aBE" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (NORTH)"; + icon_state = "whitebluecorner"; + dir = 1 + }, +/area/medical/exam_room) +"aBF" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (EAST)"; + icon_state = "whitebluecorner"; + dir = 4 + }, +/area/medical/exam_room) +"aBG" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (NORTH)"; + icon_state = "whitebluecorner"; + dir = 1 + }, +/area/medical/exam_room) +"aBH" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (EAST)"; + icon_state = "whitebluecorner"; + dir = 4 + }, +/area/medical/exam_room) +"aBI" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"aBJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aBK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/medbay) +"aBL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"aBM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-whitegreencorner"; + icon_state = "whitegreencorner"; + dir = 2 + }, +/area/medical/medbay) +"aBN" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aBO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitegreen/side, +/area/medical/virology) +"aBP" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Virology Access"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/whitegreen/side, +/area/medical/virology) +"aBQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel/whitegreen/side, +/area/medical/virology) +"aBR" = ( +/obj/structure/sign/biohazard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aBS" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aBT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aBU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aBV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"aBW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/medical/virology) +"aBX" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); + name = "random sheet material spawner" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aBY" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aBZ" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aCb" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/belt/utility, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aCc" = ( +/obj/structure/closet/radiation, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aCd" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/airlock_painter, +/obj/item/device/pipe_painter, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/engine/engineering) +"aCe" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/engine/engineering) +"aCf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aCg" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aCh" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"aCi" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aCj" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"aCk" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aCl" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aCm" = ( +/turf/simulated/floor/plasteel/darkblue, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHEAST)"; + icon_state = "warningline"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aCn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aCo" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aCp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aCq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCu" = ( +/obj/machinery/computer/atmos_control, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (NORTHEAST)"; + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"aCv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/atmos) +"aCw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/meter, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCz" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Atmospherics"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCA" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCB" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCC" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCD" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aCE" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"aCG" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/simulated/floor/engine/n2o, +/area/atmos) +"aCH" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ + valve_open = 1 + }, +/turf/simulated/floor/engine/n2o, +/area/atmos) +"aCI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/engine/n2o, +/area/atmos) +"aCJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aCK" = ( +/turf/simulated/wall/rust, +/area/maintenance/atmos_control) +"aCL" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aCM" = ( +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aCN" = ( +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aCO" = ( +/obj/effect/decal/cleanable/oil, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aCP" = ( +/turf/simulated/wall/rust, +/area/maintenance/fore) +"aCQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aCR" = ( +/obj/structure/cable/green{ + tag = "icon-9-10"; + icon_state = "9-10" + }, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aCS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aCT" = ( +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aCU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aCV" = ( +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aCW" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aCX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aCY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aDa" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"aDb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aDc" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aDd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aDe" = ( +/obj/machinery/vending/wallmed, +/turf/simulated/wall, +/area/medical/exam_room) +"aDf" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aDg" = ( +/turf/simulated/wall, +/area/medical/cmo) +"aDh" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"aDi" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/medbay) +"aDj" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "39" + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "closed"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitegreen, +/area/medical/virology) +"aDk" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/whitegreen, +/area/medical/virology) +"aDl" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/whitegreen, +/area/medical/virology) +"aDm" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/whitegreen, +/area/medical/virology) +"aDn" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "closed"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitegreen, +/area/medical/virology) +"aDo" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitegreen/side{ + tag = "icon-whitegreen (WEST)"; + icon_state = "whitegreen"; + dir = 8 + }, +/area/medical/virology) +"aDp" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aDq" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aDr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aDs" = ( +/obj/machinery/iv_drip, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aDt" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/whitegreen/corner{ + tag = "icon-whitegreencorner (NORTH)"; + icon_state = "whitegreencorner"; + dir = 1 + }, +/area/medical/virology) +"aDu" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"aDv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"aDw" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel/whitegreen/corner{ + tag = "icon-whitegreencorner (EAST)"; + icon_state = "whitegreencorner"; + dir = 4 + }, +/area/medical/virology) +"aDx" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aDy" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aDz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/space/nearstation) +"aDA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aDB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aDC" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aDD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aDE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aDF" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aDG" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"aDH" = ( +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aDI" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"aDJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aDK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aDL" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aDM" = ( +/turf/simulated/floor/plasteel/darkblue, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aDN" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/meter, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aDO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aDQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/atmos) +"aDR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/atmos) +"aDS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aDT" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aDU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (EAST)"; + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"aDV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to External Air Ports"; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aDW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aDX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/atmos) +"aDY" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/atmos) +"aDZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port Mix to Filling Ports"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aEa" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port Mix to Temperature Ports"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aEb" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "n2o"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/atmos) +"aEc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/simulated/floor/engine/n2o, +/area/atmos) +"aEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aEe" = ( +/turf/simulated/wall/mineral/wood, +/area/maintenance/atmos_control) +"aEf" = ( +/obj/structure/girder/displaced, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aEg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable/green{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aEh" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aEi" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aEj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aEk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aEl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aEm" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/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/asmaint) +"aEn" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aEo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aEp" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Privacy Shutters"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (WEST)"; + icon_state = "whitebluecorner"; + dir = 8 + }, +/area/medical/exam_room) +"aEq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/exam_room) +"aEr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (WEST)"; + icon_state = "whitebluecorner"; + dir = 8 + }, +/area/medical/exam_room) +"aEs" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv2"; + name = "Privacy Shutters"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/exam_room) +"aEt" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/weapon/bedsheet/cmo, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aEu" = ( +/obj/machinery/computer/med_data, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aEv" = ( +/obj/machinery/computer/crew, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Office"; + network = list("SS13"); + start_active = 1 + }, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/keycard_auth{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aEw" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aEx" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/suit_storage_unit/cmo, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aEy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/medical/cmo) +"aEz" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"aEA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/medical/medbay) +"aEB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/whitegreen/side{ + tag = "icon-whitegreen (NORTH)"; + icon_state = "whitegreen"; + dir = 1 + }, +/area/medical/virology) +"aEC" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/closet/l3closet, +/turf/simulated/floor/plasteel/whitegreen/side{ + tag = "icon-whitegreen (NORTH)"; + icon_state = "whitegreen"; + dir = 1 + }, +/area/medical/virology) +"aED" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 31; + pixel_y = 8; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/closet/l3closet, +/turf/simulated/floor/plasteel/whitegreen/side{ + tag = "icon-whitegreen (NORTH)"; + icon_state = "whitegreen"; + dir = 1 + }, +/area/medical/virology) +"aEE" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -22; + pixel_y = 0; + req_access_txt = "39" + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/whitegreen/corner{ + tag = "icon-whitegreencorner (NORTH)"; + icon_state = "whitegreencorner"; + dir = 1 + }, +/area/medical/virology) +"aEF" = ( +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/virology) +"aEG" = ( +/obj/structure/table, +/obj/item/device/radio/headset/headset_med, +/obj/item/stack/sheet/mineral/plasma{ + amount = 3; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aEH" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aEI" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen/red, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/medical/virology) +"aEJ" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/simulated/floor/plasteel/whitegreen/corner{ + tag = "icon-whitegreencorner (WEST)"; + icon_state = "whitegreencorner"; + dir = 8 + }, +/area/medical/virology) +"aEK" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"aEL" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"aEM" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"aEN" = ( +/obj/structure/closet, +/obj/item/bodybag, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aEO" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aEP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/space, +/area/space/nearstation) +"aEQ" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aER" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner, +/area/engine/engineering) +"aES" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/engineering) +"aET" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aEU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aEV" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aEW" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (WEST)"; + icon_state = "darkyellowcorners"; + dir = 8 + }, +/area/engine/engine_smes) +"aEX" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aEY" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/engine_smes) +"aEZ" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/darkyellow/corner, +/area/engine/engine_smes) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aFb" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aFc" = ( +/turf/simulated/floor/plasteel/darkred, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHEAST)"; + icon_state = "warningline"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aFd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aFf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/atmos) +"aFh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/atmos) +"aFi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aFj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aFk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (EAST)"; + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"aFl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "External Waste Ports to Filter"; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aFm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aFn" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTHWEST)"; + icon_state = "warning"; + dir = 9 + }, +/area/atmos) +"aFo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/atmos) +"aFp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/atmos) +"aFq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/atmos) +"aFr" = ( +/obj/item/trash/popcorn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aFs" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken"; + tag = "icon-wood-broken" + }, +/area/maintenance/atmos_control) +"aFt" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aFu" = ( +/obj/structure/chair/comfy/beige, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aFv" = ( +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken5"; + tag = "icon-wood-broken5" + }, +/area/maintenance/atmos_control) +"aFw" = ( +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken6"; + tag = "icon-wood-broken6" + }, +/area/maintenance/atmos_control) +"aFx" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/atmos_control) +"aFy" = ( +/obj/structure/falsewall, +/obj/structure/cable/green{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aFz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aFA" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/food/snacks/candy, +/obj/item/weapon/poster/contraband, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aFB" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/fore) +"aFC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aFD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aFE" = ( +/turf/simulated/wall/r_wall, +/area/medical/exam_room) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/medical/exam_room) +"aFG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aFH" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv1"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aFI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Patient Room A"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aFJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Patient Room B"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aFK" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv2"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aFL" = ( +/obj/structure/cable/cyan{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aFM" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aFN" = ( +/obj/structure/chair/office/light, +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aFO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aFP" = ( +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aFQ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Medbay Northeast"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aFR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aFS" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aFT" = ( +/obj/structure/girder/reinforced, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aFU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space/nearstation) +"aFV" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/engineering) +"aFW" = ( +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/engine/engineering) +"aFX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aFY" = ( +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/engine/engineering) +"aFZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/checkpoint/engineering) +"aGa" = ( +/turf/simulated/wall/r_wall, +/area/security/checkpoint/engineering) +"aGb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/security/checkpoint/engineering) +"aGc" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/wall/r_wall, +/area/engine/engine_smes) +"aGe" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aGf" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aGg" = ( +/turf/simulated/floor/plasteel/darkred, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aGh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aGi" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aGj" = ( +/obj/structure/sign/atmosplaque{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGm" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (SOUTHEAST)"; + icon_state = "caution"; + dir = 6 + }, +/area/atmos) +"aGn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/atmos) +"aGo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGp" = ( +/obj/machinery/suit_storage_unit/atmos, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/atmos) +"aGq" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGr" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"aGt" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump"; + on = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-purple (NORTHWEST)"; + icon_state = "purple"; + dir = 9 + }, +/area/atmos) +"aGv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aGw" = ( +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aGx" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aGy" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aGz" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aGA" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/carpet, +/area/maintenance/atmos_control) +"aGB" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/turf/simulated/floor/carpet, +/area/maintenance/atmos_control) +"aGC" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aGD" = ( +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aGE" = ( +/obj/item/weapon/paper/crumpled{ + info = "The second is surrounded by the bustle of crates..." + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aGF" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aGG" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGH" = ( +/obj/structure/cable/green{ + tag = "icon-6-9"; + icon_state = "6-9" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGI" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGJ" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGK" = ( +/obj/structure/table, +/obj/item/weapon/relic, +/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGL" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGM" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGN" = ( +/obj/item/weapon/restraints/handcuffs/cable/zipties/used, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGO" = ( +/obj/structure/closet, +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/shoes/griffin, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/head/griffin, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/under/griffin, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aGP" = ( +/obj/structure/closet/l3closet, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGQ" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGR" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGS" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGT" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGU" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aGW" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aGX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay Northwest"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aGZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aHa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aHb" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aHc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aHd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/medical/cmo) +"aHe" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/tie/stethoscope, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aHf" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/cmo, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aHg" = ( +/obj/structure/table/glass, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/glasses/hud/health, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aHh" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aHi" = ( +/obj/machinery/door/window/northright{ + name = "Chief Medical Officer's Desk Door"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cmo, +/area/medical/cmo) +"aHj" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"aHk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aHl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aHm" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/area/medical/medbay) +"aHn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/genetics) +"aHo" = ( +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel, +/area/medical/genetics) +"aHp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel, +/area/medical/genetics) +"aHq" = ( +/turf/simulated/floor/plasteel/purple/corner, +/area/medical/genetics) +"aHr" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTHWEST)"; + icon_state = "whitepurple"; + dir = 9 + }, +/area/medical/genetics) +"aHs" = ( +/obj/machinery/computer/scan_consolenew, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/area/medical/genetics) +"aHt" = ( +/obj/structure/table/glass, +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics RC"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/area/medical/genetics) +"aHu" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTHEAST)"; + icon_state = "whitepurple"; + dir = 5 + }, +/area/medical/genetics) +"aHv" = ( +/turf/simulated/wall/r_wall, +/area/medical/genetics) +"aHw" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aHx" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/maintenance/asmaint) +"aHy" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aHz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aHA" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/engine/engineering) +"aHB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engineering) +"aHC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aHD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aHE" = ( +/turf/simulated/floor/plasteel/red/corner, +/area/engine/engineering) +"aHF" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/checkpoint/engineering) +"aHG" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/checkpoint/engineering) +"aHH" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Engineering Post RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Engineering Security Post"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/checkpoint/engineering) +"aHI" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aHJ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aHK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"aHL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aHM" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aHN" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aHO" = ( +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aHP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aHQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aHR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + tag = "icon-cautioncorner"; + icon_state = "cautioncorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"aHS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/floor/plating, +/area/atmos) +"aHT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/atmos) +"aHU" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aHV" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHWEST)"; + icon_state = "warning"; + dir = 10 + }, +/area/atmos) +"aHW" = ( +/obj/item/weapon/wrench, +/turf/simulated/floor/plasteel, +/area/atmos) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Plasma Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-purple (WEST)"; + icon_state = "purple"; + dir = 8 + }, +/area/atmos) +"aHY" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor" + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aHZ" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aIa" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aIb" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aIc" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light/built{ + tag = "icon-tube1 (WEST)"; + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken5"; + tag = "icon-wood-broken5" + }, +/area/maintenance/atmos_control) +"aId" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/carpet, +/area/maintenance/atmos_control) +"aIe" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aIf" = ( +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken7"; + tag = "icon-wood-broken7" + }, +/area/maintenance/atmos_control) +"aIg" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken"; + tag = "icon-wood-broken" + }, +/area/maintenance/atmos_control) +"aIh" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aIi" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aIj" = ( +/turf/simulated/floor/plating/airless, +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The one is slightly darker than the other numbers."; + tag = "one" + }, +/turf/simulated/floor/plating/airless{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/space/nearstation) +"aIk" = ( +/obj/item/weapon/toolbox_tiles_sensor, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aIl" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aIm" = ( +/obj/machinery/vending/sustenance{ + desc = "A Nutrivend-brand vending machine which vends nutritious food. If it can be called that, at least."; + name = "\improper Nutri-vend"; + product_ads = "Sufficiently healthy.;Efficiently produced tofu!;Mmm! So good!;Have a meal.;You need food to live!;Try our new ice cups!"; + products = list(/obj/item/weapon/reagent_containers/food/snacks/tofu = 50, /obj/item/weapon/reagent_containers/food/drinks/ice = 50) + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIn" = ( +/obj/structure/cable/green{ + tag = "icon-2-9"; + icon_state = "2-9" + }, +/obj/structure/chair/office/dark, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIo" = ( +/obj/structure/rack, +/obj/item/robot_parts/l_arm, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIp" = ( +/obj/structure/closet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIq" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIr" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIs" = ( +/obj/structure/table, +/obj/item/weapon/grenade/smokebomb, +/obj/item/weapon/grenade/smokebomb, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/pneumatic_cannon/ghetto{ + desc = "A gas-powered, object-firing cannon. Seems kind of dirty."; + name = "pneumatic cannon" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"aIu" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/exam_room) +"aIA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/exam_room) +"aIB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/exam_room) +"aIC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y"; + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aID" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIE" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIF" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIG" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aIH" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aII" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + glass = 0; + name = "Chief Medical Officer"; + opacity = 1; + req_access_txt = "40" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aIJ" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aIK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aIL" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aIM" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aIN" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_command{ + glass = 0; + name = "Chief Medical Officer"; + opacity = 1; + req_access_txt = "40" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aIO" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + sortType = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"aIP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aIQ" = ( +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aIR" = ( +/turf/simulated/floor/plasteel, +/area/medical/genetics) +"aIS" = ( +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/area/medical/genetics) +"aIT" = ( +/obj/machinery/door/window/westleft{ + name = "Monkey Pen"; + req_access_txt = "9" + }, +/turf/simulated/floor/plasteel/purple, +/area/medical/genetics) +"aIU" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/area/medical/genetics) +"aIV" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aIW" = ( +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aIX" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aIY" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/area/medical/genetics) +"aIZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aJa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/wall, +/area/maintenance/asmaint) +"aJb" = ( +/turf/simulated/wall, +/area/maintenance/port) +"aJc" = ( +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aJd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"aJe" = ( +/obj/machinery/the_singularitygen/tesla{ + anchored = 1 + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aJf" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/item/weapon/screwdriver, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aJg" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 4; + layer = 4; + name = "Engine Containment Telescreen"; + network = list("Singularity"); + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aJh" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Particle Accelerator"; + dir = 1; + network = list("Singularity") + }, +/obj/item/weapon/wirecutters, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/engine/engineering) +"aJi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"aJj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"aJk" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (EAST)"; + icon_state = "red"; + dir = 4 + }, +/area/engine/engineering) +"aJl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/checkpoint/engineering) +"aJm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"aJn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/checkpoint/engineering) +"aJo" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 11; + tag = "e" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"aJp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/wall, +/area/maintenance/aft) +"aJq" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aJr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall/rust, +/area/maintenance/aft) +"aJs" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aJt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aJu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/crowbar, +/obj/item/weapon/wrench, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aJv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aJw" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aJx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aJy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Entrance"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/atmos) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/atmos) +"aJA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/atmos) +"aJB" = ( +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"aJC" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/caution/corner{ + tag = "icon-cautioncorner (WEST)"; + icon_state = "cautioncorner"; + dir = 8 + }, +/area/atmos) +"aJD" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall, +/area/atmos) +"aJE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port to Filter"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aJF" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aJG" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "plasma"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/atmos) +"aJH" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"aJI" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken6"; + tag = "icon-wood-broken6" + }, +/area/maintenance/atmos_control) +"aJJ" = ( +/obj/structure/chair/comfy/lime{ + tag = "icon-comfychair (NORTH)"; + icon_state = "comfychair"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aJK" = ( +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken"; + tag = "icon-wood-broken" + }, +/area/maintenance/atmos_control) +"aJL" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aJM" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/circuit_imprinter, +/obj/item/trash/chips, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aJN" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/green, +/obj/item/robot_parts/l_arm, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, +/obj/item/weapon/reagent_containers/food/drinks/mug/coco, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJO" = ( +/obj/structure/table, +/obj/item/toy/redbutton, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJP" = ( +/obj/structure/cable/green, +/obj/machinery/computer/monitor, +/obj/machinery/light_construct, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJQ" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJS" = ( +/obj/structure/rack, +/obj/item/wallframe/newscaster, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJT" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJU" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJV" = ( +/obj/item/weapon/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/item/weapon/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/item/weapon/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/item/weapon/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/structure/falsewall/reinforced, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aJW" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/reagent_containers/food/snacks/syndicake, +/obj/item/toy/griffin, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJX" = ( +/obj/structure/table, +/obj/item/weapon/paper/crumpled{ + info = "I'll get that Owl and show him just what he's doing for those he captures!!!!!"; + name = "crumpled paper" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aJY" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/gun/syringe, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aJZ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKb" = ( +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKe" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aKf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aKg" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/clothing/tie/stethoscope, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aKh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKi" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKj" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aKk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aKl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/medical/cmo) +"aKm" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aKn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aKo" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aKp" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aKq" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/cmo) +"aKr" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"aKs" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aKt" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"aKu" = ( +/mob/living/carbon/monkey, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (EAST)"; + icon_state = "purplecorner"; + dir = 4 + }, +/area/medical/genetics) +"aKv" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/medical/genetics) +"aKw" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/medical/genetics) +"aKx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/space, +/area/space/nearstation) +"aKz" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKA" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKB" = ( +/obj/structure/table, +/obj/item/wallframe/firealarm, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKC" = ( +/turf/simulated/wall/rust, +/area/maintenance/port) +"aKD" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/ianshirt, +/obj/item/weapon/coin/twoheaded, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKE" = ( +/obj/item/weapon/poster/contraband, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKF" = ( +/turf/simulated/floor/plating, +/area/maintenance/port) +"aKG" = ( +/obj/item/toy/minimeteor, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"aKH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"aKI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"aKJ" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"aKK" = ( +/obj/item/weapon/crowbar/large, +/turf/space, +/area/space/nearstation) +"aKL" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aKM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 4 + }, +/area/engine/engineering) +"aKN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/fire, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aKO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aKP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (EAST)"; + icon_state = "redcorner"; + dir = 4 + }, +/area/engine/engineering) +"aKQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/checkpoint/engineering) +"aKR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/checkpoint/engineering) +"aKS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/checkpoint/engineering) +"aKT" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/checkpoint/engineering) +"aKU" = ( +/turf/simulated/wall, +/area/security/checkpoint/engineering) +"aKV" = ( +/turf/simulated/floor/plasteel/yellow/side, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/warningline, +/area/engine/engineering) +"aKW" = ( +/turf/simulated/floor/plasteel/yellow/side, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plasteel/warningline, +/area/engine/engineering) +"aKX" = ( +/turf/simulated/floor/plasteel/yellow/side, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Engineering South 2"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/warningline, +/area/engine/engineering) +"aKY" = ( +/turf/simulated/floor/plasteel/yellow/side, +/obj/machinery/vending/tool, +/turf/simulated/floor/plasteel/warningline, +/area/engine/engineering) +"aKZ" = ( +/turf/simulated/floor/plasteel/yellow/side, +/obj/machinery/vending/engivend, +/turf/simulated/floor/plasteel/warningline, +/area/engine/engineering) +"aLa" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aLb" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aLc" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aLd" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aLe" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aLf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aLg" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aLh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aLi" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aLj" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + sortType = 6; + tag = "icon-pipe-j1s (NORTH)" + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aLk" = ( +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id = "atmos"; + name = "Atmos Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow, +/area/atmos) +"aLl" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"aLm" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLn" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLo" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (EAST)"; + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"aLp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/simulated/floor/plasteel/yellow, +/area/atmos) +"aLq" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/caution{ + tag = "icon-caution (WEST)"; + icon_state = "caution"; + dir = 8 + }, +/area/atmos) +"aLr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLs" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"aLt" = ( +/obj/machinery/space_heater, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics South"; + dir = 6; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHWEST)"; + icon_state = "warning"; + dir = 10 + }, +/area/atmos) +"aLu" = ( +/obj/machinery/space_heater, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHEAST)"; + icon_state = "warning"; + dir = 6 + }, +/area/atmos) +"aLv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLw" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLx" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLy" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aLz" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken7"; + tag = "icon-wood-broken7" + }, +/area/maintenance/atmos_control) +"aLA" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aLB" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aLC" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood{ + broken = 1; + icon_state = "wood-broken6"; + tag = "icon-wood-broken6" + }, +/area/maintenance/atmos_control) +"aLD" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/wood, +/area/maintenance/atmos_control) +"aLE" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); + name = "random sheet material spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aLF" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aLG" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aLH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aLI" = ( +/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/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aLJ" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/exam_room) +"aLL" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aLM" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aLN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aLO" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aLP" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aLQ" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aLR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aLS" = ( +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + layer = 2.99999 + }, +/turf/simulated/floor/plating, +/area/medical/cmo) +"aLT" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aLU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aLV" = ( +/turf/simulated/wall, +/area/medical/genetics) +"aLW" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mannitol, +/obj/machinery/camera{ + c_tag = "Medbay Genetics"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aLX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aLY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aLZ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTHWEST)"; + icon_state = "whitepurple"; + dir = 9 + }, +/area/medical/genetics) +"aMa" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aMb" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/robot_parts/l_arm, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aMc" = ( +/obj/item/weapon/bucket_sensor, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aMd" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aMe" = ( +/turf/simulated/wall/rust, +/area/engine/engineering) +"aMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/obj/machinery/camera{ + c_tag = "Engineering South 1"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aMg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aMh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aMi" = ( +/turf/simulated/floor/plasteel/yellow/corner, +/area/engine/engineering) +"aMj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/engineering) +"aMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aMl" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aMm" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aMn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/yellow/corner, +/area/engine/engineering) +"aMo" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aMp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aMq" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aMr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aMs" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-caution (SOUTHWEST)"; + icon_state = "caution"; + dir = 10 + }, +/area/atmos) +"aMt" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "caution" + }, +/area/atmos) +"aMu" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/portable_atmospherics/pump, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "caution" + }, +/area/atmos) +"aMv" = ( +/obj/structure/tank_dispenser, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/atmos) +"aMw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/caution/corner{ + tag = "icon-cautioncorner (NORTH)"; + icon_state = "cautioncorner"; + dir = 1 + }, +/area/atmos) +"aMx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aMy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"aMz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aMA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aMB" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"aMC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump"; + on = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/atmos) +"aMD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + 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/atmos) +"aME" = ( +/turf/simulated/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"aMF" = ( +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aMG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aMH" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aMI" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"aMJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/exam_room) +"aMK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aML" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aMM" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aMN" = ( +/obj/machinery/computer/med_data, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aMO" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aMP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay Sleepers"; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aMQ" = ( +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (EAST)"; + icon_state = "warnwhite"; + dir = 4 + }, +/area/medical/exam_room) +"aMR" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aMS" = ( +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aMT" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/exam_room) +"aMU" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aMV" = ( +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 2; + pixel_y = 0 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aMW" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aMX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/medbay) +"aMY" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (WEST)"; + icon_state = "whitebluecorner"; + dir = 8 + }, +/area/medical/genetics) +"aMZ" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay Cloning"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aNa" = ( +/obj/machinery/clonepod, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHWEST)"; + icon_state = "warnwhite"; + dir = 10 + }, +/area/medical/genetics) +"aNb" = ( +/obj/machinery/computer/cloning, +/turf/simulated/floor/plasteel/warnwhite, +/area/medical/genetics) +"aNc" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHEAST)"; + icon_state = "warnwhite"; + dir = 6 + }, +/area/medical/genetics) +"aNd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/whitepurple/corner, +/area/medical/genetics) +"aNe" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mutadone, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (WEST)"; + icon_state = "whitepurplecorner"; + dir = 8 + }, +/area/medical/genetics) +"aNf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aNg" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/whitebot, +/area/medical/genetics) +"aNh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aNi" = ( +/obj/structure/closet/wardrobe/genetics_white, +/obj/structure/window/reinforced, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (SOUTHWEST)"; + icon_state = "whitepurple"; + dir = 10 + }, +/area/medical/genetics) +"aNj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aNk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aNl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aNm" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/weapon/tank/internals/plasmaman/full{ + name = "plasma tank" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aNn" = ( +/obj/item/weapon/paper/crumpled{ + info = "Try not to burn out." + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aNo" = ( +/obj/item/stack/medical/ointment, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/port) +"aNp" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aNq" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aNr" = ( +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/engine/engineering) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/engine/engineering) +"aNu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/engine/engineering) +"aNv" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aNw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/aft) +"aNx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aNy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aNz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"aNA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/hallway/secondary/entry) +"aNB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/atmos) +"aNC" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/weapon/cigbutt, +/turf/simulated/floor/plasteel, +/area/atmos) +"aND" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aNE" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/floor/plasteel, +/area/atmos) +"aNF" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aNG" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plasteel, +/area/atmos) +"aNH" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"aNI" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"aNJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"aNK" = ( +/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/atmos) +"aNL" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"aNM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"aNN" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aNO" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/console_screen, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aNP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aNQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aNR" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/exam_room) +"aNS" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aNT" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aNU" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aNV" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aNW" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/exam_room) +"aNX" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Recovery Room"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/exam_room) +"aNY" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/exam_room) +"aNZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aOa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/delivery, +/area/medical/exam_room) +"aOb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aOd" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aOe" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aOf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aOg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/delivery, +/area/medical/exam_room) +"aOh" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 23 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aOi" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (EAST)"; + icon_state = "whiteblue"; + dir = 4 + }, +/area/medical/medbay) +"aOj" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/genetics) +"aOk" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (WEST)"; + icon_state = "whiteblue"; + dir = 8 + }, +/area/medical/genetics) +"aOl" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOm" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOn" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOo" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOp" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/area/medical/genetics) +"aOq" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Lab"; + req_access_txt = "5;9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/medical/genetics) +"aOr" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/area/medical/genetics) +"aOs" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOt" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOu" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOv" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aOw" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_access_txt = "5;9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/genetics) +"aOx" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"aOy" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOA" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOB" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aOD" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOE" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/port) +"aOI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall/rust, +/area/maintenance/port) +"aOJ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/port) +"aOK" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aOM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aON" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOP" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOR" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOS" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOT" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOU" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 5 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOV" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/bot, +/area/engine/engineering) +"aOW" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aOX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-4-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/engine/engineering) +"aOY" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aOZ" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aPa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aPb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPc" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/atmos_control) +"aPd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/simulated/floor/plating, +/area/atmos) +"aPe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aPf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Nitrogen Outlet"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aPg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aPh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 Outlet Pump"; + on = 0 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/atmos) +"aPk" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "co2"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-caution (SOUTHWEST)"; + icon_state = "caution"; + dir = 10 + }, +/area/atmos) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"aPm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/simulated/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"aPn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPo" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPq" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/atmos_control) +"aPs" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPt" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPu" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPv" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aPw" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPx" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPy" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPz" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPB" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aPD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aPE" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aPF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aPG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/exam_room) +"aPH" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/exam_room) +"aPI" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/exam_room) +"aPJ" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/gun/syringe, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Medbay Examination"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aPK" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aPL" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aPM" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aPN" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aPO" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aPP" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/exam_room) +"aPQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aPR" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/delivery, +/area/medical/exam_room) +"aPS" = ( +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aPT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aPU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aPV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aPW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aPX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (EAST)"; + icon_state = "whiteblue"; + dir = 4 + }, +/area/medical/medbay) +"aPY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/genetics) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (WEST)"; + icon_state = "whiteblue"; + dir = 8 + }, +/area/medical/genetics) +"aQa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aQb" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aQc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aQd" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (EAST)"; + icon_state = "whitepurplecorner"; + dir = 4 + }, +/area/medical/genetics) +"aQe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/genetics) +"aQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (NORTH)"; + icon_state = "whitepurplecorner"; + dir = 1 + }, +/area/medical/genetics) +"aQg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aQh" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/medical/genetics) +"aQj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQk" = ( +/obj/item/wallframe/light_fixture, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQm" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/locker/locker_toilet) +"aQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/locker) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/crew_quarters/locker) +"aQr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQs" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQt" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/locker) +"aQu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/port) +"aQw" = ( +/obj/item/weapon/vending_refill/clothing, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"aQy" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQA" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"aQB" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"aQC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aQD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"aQE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellow" + }, +/area/engine/engineering) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"aQG" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aQH" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aQI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/bot, +/area/engine/engineering) +"aQJ" = ( +/obj/machinery/computer/monitor, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/bot, +/area/engine/engineering) +"aQK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"aQL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellow" + }, +/area/engine/engineering) +"aQM" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellow" + }, +/area/engine/engineering) +"aQN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "yellow" + }, +/area/engine/engineering) +"aQO" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"aQP" = ( +/turf/simulated/wall/r_wall, +/area/engine/chiefs_office) +"aQQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aQR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/atmos) +"aQS" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = "n2"; + on = 1 + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTHWEST)"; + icon_state = "red"; + dir = 9 + }, +/area/atmos) +"aQT" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10; + initialize_directions = 12 + }, +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTH)"; + icon_state = "red"; + dir = 1 + }, +/area/atmos) +"aQU" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTHEAST)"; + icon_state = "red"; + dir = 5 + }, +/area/atmos) +"aQV" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/atmos) +"aQW" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = "o2"; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/atmos) +"aQX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10; + initialize_directions = 12 + }, +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/atmos) +"aQY" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/atmos) +"aQZ" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + node1_concentration = 0.8; + node2_concentration = 0.2 + }, +/turf/simulated/floor/plasteel/barber, +/area/atmos) +"aRa" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/barber, +/area/atmos) +"aRb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air Outlet Pump"; + on = 1 + }, +/turf/simulated/floor/plasteel/barber, +/area/atmos) +"aRc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/simulated/floor/plasteel, +/area/atmos) +"aRd" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/atmos_control) +"aRe" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aRf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/atmos_control) +"aRg" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aRh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aRi" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aRj" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aRk" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/courtroom) +"aRl" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aRm" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aRn" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aRo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aRp" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aRq" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/stock_parts/console_screen, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aRr" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aRs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/medical/exam_room) +"aRt" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aRu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aRv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aRw" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aRx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aRy" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/exam_room) +"aRz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel, +/area/medical/exam_room) +"aRA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aRB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (EAST)"; + icon_state = "whitebluecorner"; + dir = 4 + }, +/area/medical/medbay) +"aRC" = ( +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (NORTH)"; + icon_state = "whitebluecorner"; + dir = 1 + }, +/area/medical/genetics) +"aRD" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aRE" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/medical_cloning{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aRF" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/white, +/area/medical/genetics) +"aRG" = ( +/obj/item/weapon/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/genetics) +"aRH" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"aRI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/genetics) +"aRJ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/genetics) +"aRK" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/rxglasses, +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/genetics) +"aRL" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/genetics) +"aRM" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/genetics) +"aRN" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/crew_quarters/locker/locker_toilet) +"aRP" = ( +/turf/simulated/wall, +/area/crew_quarters/locker/locker_toilet) +"aRQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aRR" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/simulated/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"aRS" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"aRT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"aRU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aRV" = ( +/turf/simulated/wall, +/area/crew_quarters/locker) +"aRW" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/server) +"aRX" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/computer) +"aRY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aRZ" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"aSa" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/engine/engineering) +"aSb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engineering) +"aSc" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/engine/engineering) +"aSd" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aSe" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aSf" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engineering) +"aSg" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aSh" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/engine/chiefs_office) +"aSi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel, +/area/engine/chiefs_office) +"aSj" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/engine/chiefs_office) +"aSk" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/door/window/eastleft{ + name = "Chief Engineer's Desk Door"; + req_access_txt = "56" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (WEST)"; + icon_state = "darkyellowcorners"; + dir = 8 + }, +/area/engine/chiefs_office) +"aSl" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/chiefs_office) +"aSm" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/weapon/bedsheet/ce, +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/chiefs_office) +"aSn" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aSo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway South"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aSp" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"aSq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5; + initialize_directions = 12 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"aSr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/atmos) +"aSs" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/atmos_control) +"aSt" = ( +/obj/item/trash/candle, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aSu" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/poster/contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aSv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aSw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aSx" = ( +/obj/item/device/assembly/mousetrap/armed, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aSy" = ( +/turf/simulated/wall, +/area/crew_quarters/courtroom) +"aSz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aSA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aSB" = ( +/obj/structure/rack, +/obj/item/weapon/poster/contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aSC" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aSD" = ( +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/medical/exam_room) +"aSE" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/exam_room) +"aSF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/medical/exam_room) +"aSG" = ( +/obj/structure/table, +/obj/item/weapon/cautery{ + pixel_x = 4 + }, +/obj/item/weapon/surgical_drapes, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aSH" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/exam_room) +"aSI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkblue/corner, +/area/medical/exam_room) +"aSJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"aSK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aSL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/medical/genetics) +"aSM" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Genetics"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/genetics) +"aSN" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aSO" = ( +/obj/machinery/door/airlock{ + name = "Unit B" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aSP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aSQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aSR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"aSS" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"aST" = ( +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aSU" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/plasteel/brown{ + dir = 9; + icon_state = "brown"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/area/tcommsat/server) +"aSV" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/simulated/floor/plasteel/green/side{ + dir = 5; + icon_state = "green"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/area/tcommsat/server) +"aSW" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aSX" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aSY" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 5; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/area/tcommsat/server) +"aSZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"aTa" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (NORTHWEST)"; + icon_state = "darkyellow"; + dir = 9 + }, +/area/tcommsat/computer) +"aTb" = ( +/turf/simulated/floor/plasteel/black, +/area/tcommsat/computer) +"aTc" = ( +/obj/machinery/announcement_system, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (EAST)"; + icon_state = "darkyellowcorners"; + dir = 4 + }, +/area/tcommsat/computer) +"aTd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/yellow/side{ + tag = "icon-yellow (EAST)"; + icon_state = "yellow"; + dir = 4 + }, +/area/engine/engineering) +"aTe" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engineering) +"aTf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/area/engine/engineering) +"aTg" = ( +/obj/item/weapon/book/manual/wiki/engineering_hacking, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aTh" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aTi" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aTj" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/engine/engineering) +"aTk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/tank_dispenser, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"aTl" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"aTm" = ( +/obj/item/weapon/book/manual/engineering_singularity_safety{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_particle_accelerator, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/item/weapon/wrench, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"aTn" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"aTo" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + desc = "Marked to indicate placement of a PACMAN generator."; + dir = 1; + icon_state = "bot" + }, +/area/engine/engineering) +"aTp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engine/chiefs_office) +"aTq" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellowcorner" + }, +/area/engine/chiefs_office) +"aTr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/engine/chiefs_office) +"aTs" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/stamp/ce, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (WEST)"; + icon_state = "darkyellowcorners"; + dir = 8 + }, +/area/engine/chiefs_office) +"aTt" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (EAST)"; + icon_state = "darkyellowcorners"; + dir = 4 + }, +/area/engine/chiefs_office) +"aTu" = ( +/obj/machinery/computer/station_alert, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (NORTHEAST)"; + icon_state = "darkyellow"; + dir = 5 + }, +/area/engine/chiefs_office) +"aTv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/engine/chiefs_office) +"aTw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"aTy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-6"; + icon_state = "0-6" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aTz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aTA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-10"; + icon_state = "0-10" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aTB" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aTC" = ( +/turf/simulated/wall, +/area/lawoffice) +"aTD" = ( +/obj/structure/closet/secure_closet/courtroom, +/obj/item/weapon/gavelblock, +/obj/item/weapon/gavelhammer, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aTE" = ( +/obj/structure/chair{ + name = "Bailiff" + }, +/obj/machinery/camera{ + c_tag = "Courtroom"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aTF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aTG" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/courtroom) +"aTH" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/courtroom) +"aTI" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/crew_quarters/courtroom) +"aTJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aTK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/crew_quarters/courtroom) +"aTL" = ( +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"aTM" = ( +/obj/machinery/door/airlock/security{ + name = "Court Cell"; + req_access = null; + req_access_txt = "63" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/transfer) +"aTN" = ( +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"aTO" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/transfer) +"aTP" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aTQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aTR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aTS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aTT" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aTU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aTV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aTW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/exam_room) +"aTX" = ( +/obj/structure/table/optable, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aTY" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/exam_room) +"aTZ" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aUa" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aUb" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/exam_room) +"aUc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/medical/exam_room) +"aUd" = ( +/obj/machinery/door/firedoor, +/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/plasteel/blue, +/area/medical/exam_room) +"aUe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"aUf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUg" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUh" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUi" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUj" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUk" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUl" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"aUm" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"aUn" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"aUo" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUp" = ( +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUq" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUr" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUs" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUt" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUu" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUv" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (EAST)"; + icon_state = "whitebluecorner"; + dir = 4 + }, +/area/medical/medbay) +"aUw" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/medbay) +"aUx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (NORTH)"; + icon_state = "whitebluecorner"; + dir = 1 + }, +/area/medical/medbay) +"aUy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aUz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/medbay) +"aUA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aUB" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aUC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aUD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"aUE" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"aUF" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/simulated/floor/plasteel/brown{ + dir = 10; + icon_state = "brown"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/area/tcommsat/server) +"aUG" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/simulated/floor/plasteel/green/side{ + dir = 6; + icon_state = "green"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/area/tcommsat/server) +"aUH" = ( +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aUI" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aUJ" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aUK" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 6; + icon_state = "darkred"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/area/tcommsat/server) +"aUL" = ( +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (WEST)"; + icon_state = "darkyellow"; + dir = 8 + }, +/area/tcommsat/computer) +"aUM" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/tcommsat/computer) +"aUN" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/tcommsat/computer) +"aUO" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aUP" = ( +/obj/structure/closet/radiation, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/yellow/side{ + tag = "icon-yellow (EAST)"; + icon_state = "yellow"; + dir = 4 + }, +/area/engine/engineering) +"aUQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engineering) +"aUR" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/area/engine/engineering) +"aUS" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aUT" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aUU" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aUV" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aUW" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aUX" = ( +/obj/structure/cable/green{ + tag = "icon-4-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{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aUY" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aUZ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"aVa" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + glass = 0; + name = "Chief Engineer"; + opacity = 1; + req_access_txt = "56" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow, +/area/engine/chiefs_office) +"aVb" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/engine/chiefs_office) +"aVc" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/engine/chiefs_office) +"aVd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/weapon/paper/monitorkey, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (WEST)"; + icon_state = "darkyellowcorners"; + dir = 8 + }, +/area/engine/chiefs_office) +"aVe" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/chiefs_office) +"aVf" = ( +/obj/machinery/computer/atmos_alert, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (EAST)"; + icon_state = "darkyellow"; + dir = 4 + }, +/area/engine/chiefs_office) +"aVg" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/meter, +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/atmos) +"aVh" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/simulated/wall/r_wall, +/area/atmos) +"aVi" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/atmos) +"aVj" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/atmos) +"aVk" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/capacitor, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aVl" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aVm" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/atmos_control) +"aVn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aVo" = ( +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (SOUTHWEST)"; + icon_state = "darkblue"; + dir = 10 + }, +/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 + }, +/obj/structure/cable/green{ + tag = "icon-6-9"; + icon_state = "6-9" + }, +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/storage/tech) +"aVp" = ( +/turf/simulated/floor/plasteel/darkblue/side, +/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 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/warningline, +/area/storage/tech) +"aVq" = ( +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (SOUTHEAST)"; + icon_state = "darkblue"; + dir = 6 + }, +/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 + }, +/obj/structure/cable/green{ + tag = "icon-5-10"; + icon_state = "5-10" + }, +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/structure/cable/green{ + tag = "icon-1-10"; + icon_state = "1-10" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/storage/tech) +"aVr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aVs" = ( +/obj/item/device/assembly/mousetrap/armed, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/atmos_control) +"aVt" = ( +/obj/machinery/requests_console{ + department = "Law Office"; + name = "Law Office RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/lawoffice) +"aVu" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/cartridge/lawyer, +/turf/simulated/floor/wood, +/area/lawoffice) +"aVv" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/turf/simulated/floor/wood, +/area/lawoffice) +"aVw" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"aVx" = ( +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aVy" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"aVz" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)"; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"aVA" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"aVB" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"aVC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/crew_quarters/courtroom) +"aVD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"aVE" = ( +/obj/machinery/door/window/southleft{ + name = "Court Cell"; + req_access_txt = "2" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"aVF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fore) +"aVG" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aVH" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"aVI" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard, +/obj/item/weapon/screwdriver, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aVJ" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aVK" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 4; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aVL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/exam_room) +"aVM" = ( +/obj/machinery/computer/operating, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/exam_room) +"aVN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/exam_room) +"aVO" = ( +/obj/structure/table, +/obj/item/weapon/hemostat, +/obj/item/weapon/retractor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aVP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/exam_room) +"aVQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/medical/exam_room) +"aVR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = ""; + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/blue, +/area/medical/exam_room) +"aVS" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"aVT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-whiteyellowcorner"; + icon_state = "whiteyellowcorner"; + dir = 2 + }, +/area/medical/medbay) +"aVU" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"aVV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-whiteyellowcorner (WEST)"; + icon_state = "whiteyellowcorner"; + dir = 8 + }, +/area/medical/medbay) +"aVW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aVX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay West"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aVY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/medbay) +"aVZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = -24; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"aWa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"aWb" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"aWc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"aWd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"aWe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (WEST)"; + icon_state = "whitebluecorner"; + dir = 8 + }, +/area/medical/medbay) +"aWf" = ( +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aWg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aWh" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aWi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aWj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aWk" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay East"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aWl" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/medbay) +"aWm" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"aWn" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (WEST)"; + icon_state = "whitebluecorner"; + dir = 8 + }, +/area/medical/medbay) +"aWo" = ( +/turf/simulated/floor/plasteel/whitebot/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHWEST)"; + icon_state = "warningline"; + dir = 9 + }, +/area/medical/medbay) +"aWp" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitebot, +/area/medical/medbay) +"aWq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aWr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aWs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aWt" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aWu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/wall, +/area/crew_quarters/locker/locker_toilet) +"aWv" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aWw" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aWx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aWy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aWz" = ( +/obj/structure/window, +/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; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"aWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"aWB" = ( +/obj/structure/window, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"aWC" = ( +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (WEST)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 8; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"aWD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aWE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aWF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aWG" = ( +/turf/simulated/floor/bluegrid{ + icon_state = "darkyellowcorners"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aWH" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (SOUTHWEST)"; + icon_state = "darkyellow"; + dir = 10 + }, +/area/tcommsat/computer) +"aWI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/black, +/area/tcommsat/computer) +"aWJ" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel/darkyellow/corner, +/area/tcommsat/computer) +"aWK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aWL" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aWM" = ( +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/yellow/side{ + tag = "icon-yellow (EAST)"; + icon_state = "yellow"; + dir = 4 + }, +/area/engine/engineering) +"aWN" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/engine/engineering) +"aWO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Engineering Access"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/area/engine/engineering) +"aWP" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"aWQ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aWR" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aWS" = ( +/obj/machinery/cell_charger, +/obj/structure/table, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/warning/corner, +/area/engine/engineering) +"aWT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/warning, +/area/engine/engineering) +"aWU" = ( +/turf/simulated/floor/plasteel/warning, +/area/engine/engineering) +"aWV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/warning, +/area/engine/engineering) +"aWW" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/engine/engineering) +"aWX" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"aWY" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/engine/engineering) +"aWZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/engine/chiefs_office) +"aXa" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/chiefs_office) +"aXb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/engine/chiefs_office) +"aXc" = ( +/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/structure/table/reinforced, +/obj/item/weapon/cartridge/atmos, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (WEST)"; + icon_state = "darkyellowcorners"; + dir = 8 + }, +/area/engine/chiefs_office) +"aXd" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkyellow/corner, +/area/engine/chiefs_office) +"aXe" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/computer/card/minor/ce, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (SOUTHEAST)"; + icon_state = "darkyellow"; + dir = 6 + }, +/area/engine/chiefs_office) +"aXf" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/atmos_control) +"aXg" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/simulated/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"aXh" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/simulated/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"aXi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + 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/atmos) +"aXj" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/simulated/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"aXk" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/simulated/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"aXl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + 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/atmos) +"aXm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"aXn" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "air_sensor" + }, +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"aXo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + 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/atmos) +"aXp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aXq" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/atmos_control) +"aXr" = ( +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"aXs" = ( +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/structure/cable/green{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/storage/tech) +"aXt" = ( +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/structure/cable/green{ + tag = "icon-2-5"; + icon_state = "2-5" + }, +/obj/structure/cable/green{ + tag = "icon-2-9"; + icon_state = "2-9" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/storage/tech) +"aXu" = ( +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/structure/cable/green{ + tag = "icon-6-8"; + icon_state = "6-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Secure Technical Storage"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/storage/tech) +"aXv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"aXw" = ( +/turf/simulated/floor/wood, +/area/lawoffice) +"aXx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"aXy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"aXz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aXA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"aXB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aXC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/courtroom) +"aXD" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"aXF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/transfer) +"aXG" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"aXH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aXI" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/medical/exam_room) +"aXK" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/exam_room) +"aXL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-whitecorner (NORTH)"; + icon_state = "whitecorner"; + dir = 1 + }, +/area/medical/exam_room) +"aXM" = ( +/obj/structure/table, +/obj/item/weapon/razor, +/obj/item/weapon/surgicaldrill, +/turf/simulated/floor/plasteel/black, +/area/medical/exam_room) +"aXN" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/exam_room) +"aXO" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkblue/corner{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/medical/exam_room) +"aXP" = ( +/turf/simulated/wall, +/area/medical/chemistry) +"aXQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"aXR" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/whiteyellow, +/area/medical/chemistry) +"aXS" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall, +/area/medical/chemistry) +"aXT" = ( +/turf/simulated/wall, +/area/medical/medbay) +"aXU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/medbay) +"aXV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/medbay) +"aXW" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/medbay) +"aXX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/medical/medbay) +"aXY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Desk"; + req_access_txt = "5" + }, +/turf/simulated/floor/plasteel/whiteblue, +/area/medical/medbay) +"aXZ" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aYa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aYb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aYc" = ( +/turf/simulated/wall, +/area/medical/morgue) +"aYd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/medical/morgue) +"aYe" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6;5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/blue, +/area/medical/morgue) +"aYf" = ( +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/crew_quarters/locker) +"aYg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 4 + }, +/area/crew_quarters/locker) +"aYh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aYi" = ( +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Locker Room RC"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Locker Room"; + dir = 2; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aYj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aYk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aYl" = ( +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aYm" = ( +/obj/machinery/vending/clothing, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aYn" = ( +/obj/machinery/message_server, +/turf/simulated/floor/bluegrid{ + icon_state = "darkyellowfull"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aYo" = ( +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aYp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "darkyellowcorners"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aYq" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aYr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (EAST)"; + icon_state = "manifold"; + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (WEST)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 8; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"aYs" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aYt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"aYu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"aYv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/port) +"aYw" = ( +/turf/simulated/wall, +/area/engine/break_room) +"aYx" = ( +/turf/simulated/wall/r_wall, +/area/engine/break_room) +"aYy" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/engine/break_room) +"aYz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/engine/break_room) +"aYA" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall, +/area/engine/break_room) +"aYB" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"aYC" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/chiefs_office) +"aYD" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/engine/chiefs_office) +"aYE" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/item/weapon/clipboard, +/obj/item/weapon/stock_parts/cell/high/plus, +/mob/living/simple_animal/parrot/Poly, +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (WEST)"; + icon_state = "darkyellowcorners"; + dir = 8 + }, +/area/engine/chiefs_office) +"aYF" = ( +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 10; + pixel_y = -24; + req_access_txt = "24" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = 0; + pixel_y = -24; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -10; + pixel_y = -24; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/engine/chiefs_office) +"aYG" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = 0; + pixel_y = -32; + tag = "s" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/chiefs_office) +"aYH" = ( +/turf/simulated/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"aYI" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"aYJ" = ( +/turf/simulated/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"aYK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"aYL" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"aYM" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"aYN" = ( +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"aYO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aYP" = ( +/turf/simulated/wall, +/area/storage/tech) +"aYQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-5"; + icon_state = "0-5" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aYR" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/storage/tech) +"aYS" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aYT" = ( +/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) +"aYU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-9"; + icon_state = "0-9" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"aYV" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aYW" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/atmos_control) +"aYX" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aYY" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"aYZ" = ( +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"aZa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/wood, +/area/lawoffice) +"aZb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/wood, +/area/lawoffice) +"aZc" = ( +/obj/structure/closet/lawcloset, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"aZd" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"aZe" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/red, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"aZf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/crew_quarters/courtroom) +"aZg" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aZh" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"aZj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aZk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aZl" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"aZm" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aZn" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aZo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"aZp" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_med, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + name = "Chemistry RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"aZq" = ( +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/chemistry) +"aZr" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"aZs" = ( +/obj/machinery/chem_heater, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/medical/chemistry) +"aZt" = ( +/obj/machinery/chem_dispenser, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHWEST)"; + icon_state = "warnwhite"; + dir = 10 + }, +/area/medical/chemistry) +"aZu" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHEAST)"; + icon_state = "warnwhite"; + dir = 6 + }, +/area/medical/chemistry) +"aZv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"aZw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Waiting Area"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (EAST)"; + icon_state = "whitebluecorner"; + dir = 4 + }, +/area/medical/medbay) +"aZx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/medbay) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/medbay) +"aZz" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/medbay) +"aZA" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/medbay) +"aZB" = ( +/obj/structure/chair/office/light, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/medbay) +"aZC" = ( +/obj/machinery/computer/med_data, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (NORTH)"; + icon_state = "whitebluecorner"; + dir = 1 + }, +/area/medical/medbay) +"aZD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-whiteredcorner"; + icon_state = "whiteredcorner"; + dir = 2 + }, +/area/medical/medbay) +"aZE" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitered" + }, +/area/medical/medbay) +"aZF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-whiteredcorner (WEST)"; + icon_state = "whiteredcorner"; + dir = 8 + }, +/area/medical/medbay) +"aZG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aZH" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"aZI" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/corner{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/medical/morgue) +"aZJ" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/medical/morgue) +"aZK" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkblue/corner{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/medical/morgue) +"aZL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"aZM" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"aZN" = ( +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"aZO" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"aZP" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet3"; + name = "Unit 3" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aZQ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Restroom"; + dir = 9; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"aZR" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZX" = ( +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"aZY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Telecomms Server Racks"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/airalarm/server{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + tag = "icon-alarm0 (EAST)" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "darkyellowfull"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"aZZ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"baa" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bab" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bac" = ( +/obj/machinery/telecomms/hub/preset, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "darkyellowfull"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bad" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bae" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"baf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bag" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/plasteel/darkyellow, +/area/tcommsat/computer) +"bah" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/plasteel/darkyellow, +/area/tcommsat/computer) +"bai" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkyellow, +/area/tcommsat/computer) +"baj" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"bak" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"bal" = ( +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bam" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/engine/break_room) +"ban" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/break_room) +"bao" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/break_room) +"bap" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 31 + }, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"baq" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bar" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bas" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bat" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bau" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + glass = 0; + name = "Chief Engineer's Office Maintenance"; + opacity = 1; + req_access_txt = "56" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/engine/chiefs_office) +"bav" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"baw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bax" = ( +/obj/machinery/light/small, +/turf/simulated/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"bay" = ( +/obj/machinery/light/small, +/turf/simulated/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"baz" = ( +/obj/machinery/light/small, +/turf/simulated/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"baA" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/device/t_scanner, +/obj/item/device/multitool, +/turf/simulated/floor/plating, +/area/storage/tech) +"baB" = ( +/turf/simulated/floor/plating, +/area/storage/tech) +"baC" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"baD" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"baE" = ( +/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) +"baF" = ( +/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) +"baG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"baH" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/simulated/floor/plating, +/area/storage/tech) +"baI" = ( +/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/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/turf/simulated/floor/plating, +/area/storage/tech) +"baJ" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/space_heater, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/storage/art) +"baK" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"baL" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"baM" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/lawoffice) +"baN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + glass = 1; + name = "Law Office"; + opacity = 0; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/wood, +/area/lawoffice) +"baO" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/lawoffice) +"baP" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/turf/simulated/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/crew_quarters/courtroom) +"baQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 10 + }, +/area/crew_quarters/courtroom) +"baR" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/courtroom) +"baS" = ( +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/courtroom) +"baT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/courtroom) +"baU" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel{ + icon_state = "neutral"; + dir = 6 + }, +/area/crew_quarters/courtroom) +"baV" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/turf/simulated/floor/plasteel{ + icon_state = "green"; + dir = 6 + }, +/area/crew_quarters/courtroom) +"baW" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"baX" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/transfer) +"baY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/item/toy/gun, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"baZ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bba" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bbb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbd" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbe" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbf" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbg" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbh" = ( +/obj/structure/cable/cyan{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/exam_room) +"bbi" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbj" = ( +/obj/item/weapon/vending_refill/snack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/chemistry_white, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bbl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/medical/chemistry) +"bbm" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/structure/cable/cyan{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bbn" = ( +/obj/structure/cable/cyan{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bbo" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bbp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bbq" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteyellow/side{ + tag = "icon-whiteyellow (EAST)"; + icon_state = "whiteyellow"; + dir = 4 + }, +/area/medical/chemistry) +"bbr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/turf/simulated/floor/plasteel/whiteyellow, +/area/medical/chemistry) +"bbs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteyellow/side{ + tag = "icon-whiteyellow (WEST)"; + icon_state = "whiteyellow"; + dir = 8 + }, +/area/medical/medbay) +"bbt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bbu" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bbv" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bbw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bbx" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/stock_parts/cell/crap, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bby" = ( +/turf/simulated/wall, +/area/security/checkpoint/medical) +"bbz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/checkpoint/medical) +"bbA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred, +/area/security/checkpoint/medical) +"bbB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/checkpoint/medical) +"bbC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bbD" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bbE" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bbF" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bbG" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bbH" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bbI" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bbJ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bbK" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bbL" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/bluegrid{ + icon_state = "darkyellowfull"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bbM" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (NORTH)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 1; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"bbN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bbO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (EAST)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 4; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"bbP" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bbQ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (EAST)"; + icon_state = "manifold"; + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (NORTH)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 1; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"bbR" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/telecomms/receiver/preset_left, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bbS" = ( +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (EAST)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 4; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"bbT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"bbU" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"bbV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Telecomms Control Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"bbW" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/break_room) +"bbX" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/break_room) +"bbY" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bbZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bca" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/obj/item/device/radio/off, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bcb" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bcc" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bcd" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bce" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bcf" = ( +/obj/structure/table, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/weapon/stock_parts/cell/high/plus, +/turf/simulated/floor/plating, +/area/storage/tech) +"bcg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bch" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/cloning{ + pixel_x = 0 + }, +/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, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bci" = ( +/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/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bcj" = ( +/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/battle, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bck" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bcl" = ( +/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/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bcm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bcn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bco" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/turf/simulated/floor/plating, +/area/storage/tech) +"bcp" = ( +/turf/simulated/wall, +/area/storage/art) +"bcq" = ( +/obj/structure/table/wood, +/obj/item/weapon/stamp/law, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bcr" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bcs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/button/door{ + id = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_x = 25; + pixel_y = 8 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bct" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/courtroom) +"bcu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"bcv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/crew_quarters/courtroom) +"bcw" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bcx" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/circuitboard/rdconsole, +/obj/item/weapon/stock_parts/console_screen, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint) +"bcy" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/stock_parts/micro_laser, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bcz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bcA" = ( +/obj/structure/grille, +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bcB" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bcC" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bcD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint) +"bcE" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"bcG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"bcH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bcI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bcJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/bot/cleanbot{ + name = "C.L.E.A.N." + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bcK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bcL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bcM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/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/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/plasteel/whiteyellow/side{ + tag = "icon-whiteyellow (EAST)"; + icon_state = "whiteyellow"; + dir = 4 + }, +/area/medical/chemistry) +"bcN" = ( +/obj/machinery/smartfridge/chemistry, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/whiteyellow, +/area/medical/chemistry) +"bcO" = ( +/turf/simulated/floor/plasteel/whiteyellow/side{ + tag = "icon-whiteyellow (WEST)"; + icon_state = "whiteyellow"; + dir = 8 + }, +/area/medical/medbay) +"bcP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bcQ" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitebot, +/area/medical/medbay) +"bcR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bcS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bcT" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/checkpoint/medical) +"bcU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/checkpoint/medical) +"bcV" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/checkpoint/medical) +"bcW" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5; + tag = "every single paper bin is edited to this" + }, +/turf/simulated/floor/plating, +/area/medical/morgue) +"bcX" = ( +/obj/structure/filingcabinet, +/obj/structure/cable/cyan{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bcY" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bda" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/morgue) +"bdb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/port) +"bdc" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet2"; + name = "Unit 2" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"bdd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"bde" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"bdf" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdg" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdh" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdi" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdj" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdk" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdl" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bdm" = ( +/turf/simulated/floor/bluegrid{ + tag = "icon-darkyellowcorners (NORTH)"; + name = "Mainframe Floor"; + icon_state = "darkyellowcorners"; + dir = 1; + oxygen = 0; + nitrogen = 100; + temperature = 80 + }, +/area/tcommsat/server) +"bdn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bdo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bdp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"bdq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 8; + icon_state = "freezer"; + on = 1; + tag = "icon-freezer (EAST)" + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 9; + icon_state = "yellow"; + tag = "" + }, +/area/tcommsat/computer) +"bdr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/tcommsat/computer) +"bds" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/tcommsat/computer) +"bdt" = ( +/obj/machinery/vending/cola, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/engine/break_room) +"bdu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/break_room) +"bdv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/bot, +/area/engine/break_room) +"bdw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bdx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bdy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Foyer Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/turf/simulated/floor/plating, +/area/engine/break_room) +"bdz" = ( +/obj/machinery/field/generator{ + anchored = 0; + state = 2 + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bdA" = ( +/obj/machinery/the_singularitygen{ + anchored = 0 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Engineering Secure Storage"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bdB" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/plating, +/area/engine/engineering) +"bdC" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bdD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bdE" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bdF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/storage/tech) +"bdG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bdH" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bdI" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bdJ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bdK" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (NORTH)"; + icon_state = "blackcorner"; + dir = 1 + }, +/area/storage/art) +"bdL" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel, +/area/storage/art) +"bdM" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (EAST)"; + icon_state = "blackcorner"; + dir = 4 + }, +/area/storage/art) +"bdN" = ( +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bdO" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bdP" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/simulated/floor/wood, +/area/lawoffice) +"bdQ" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/lawoffice) +"bdR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bdS" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/lawoffice) +"bdT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bdU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bdV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bdW" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bdX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bdY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/transfer) +"bdZ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bea" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"beb" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bec" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bed" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bee" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bef" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"beg" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/obj/machinery/camera{ + c_tag = "Medbay Chemistry"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bei" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bej" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteyellow/side{ + tag = "icon-whiteyellow (EAST)"; + icon_state = "whiteyellow"; + dir = 4 + }, +/area/medical/chemistry) +"bek" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/turf/simulated/floor/plasteel/whiteyellow, +/area/medical/chemistry) +"bel" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whiteyellow/side{ + tag = "icon-whiteyellow (WEST)"; + icon_state = "whiteyellow"; + dir = 8 + }, +/area/medical/medbay) +"bem" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"ben" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"beo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"bep" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/medical/medbay) +"beq" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/checkpoint/medical) +"ber" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/effect/landmark/start/depsec/medical, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/checkpoint/medical) +"bes" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Medical Post RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bet" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/medical/morgue) +"beu" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/folder/white, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bev" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bew" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bex" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bey" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bez" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"beA" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 9; + icon_state = "yellow"; + nitrogen = 100; + oxygen = 0; + tag = "icon-yellow (NORTHWEST)"; + temperature = 80 + }, +/area/tcommsat/server) +"beB" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/simulated/floor/plasteel/neutral/side{ + dir = 5; + icon_state = "neutral"; + nitrogen = 100; + oxygen = 0; + tag = "icon-neutral (NORTHEAST)"; + temperature = 80 + }, +/area/tcommsat/server) +"beC" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"beD" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue"; + nitrogen = 100; + oxygen = 0; + tag = "icon-whiteblue (NORTHWEST)"; + temperature = 80 + }, +/area/tcommsat/server) +"beE" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple"; + nitrogen = 100; + oxygen = 0; + tag = "icon-whitehall (WEST)"; + temperature = 80 + }, +/area/tcommsat/server) +"beF" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 8; + icon_state = "freezer"; + on = 1; + tag = "icon-freezer (EAST)" + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 8; + icon_state = "yellow"; + nitrogen = 82.1472; + oxygen = 21.8366; + tag = ""; + temperature = 293.15 + }, +/area/tcommsat/computer) +"beG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/tcommsat/computer) +"beH" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/tcommsat/computer) +"beI" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/engine/break_room) +"beJ" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/break_room) +"beK" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"beL" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"beM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"beN" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"beO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"beP" = ( +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"beQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"beR" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"beS" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"beT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"beU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"beV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"beW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"beX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/shard, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"beY" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"beZ" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfb" = ( +/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/item/weapon/circuitboard/teleporter, +/obj/item/weapon/circuitboard/circuit_imprinter, +/obj/item/weapon/circuitboard/mechfab, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfc" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfd" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfe" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bff" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfi" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/wirecutters, +/turf/simulated/floor/plating, +/area/storage/tech) +"bfj" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/storage/art) +"bfk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/storage/art) +"bfl" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/crayons, +/turf/simulated/floor/plasteel, +/area/storage/art) +"bfm" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/atmos_control) +"bfn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bfo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bfp" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bfq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"bfr" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bfs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bft" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bfu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bfv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bfw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bfx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"bfy" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bfz" = ( +/obj/item/weapon/rack_parts, +/obj/item/weapon/vending_refill/coffee, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bfA" = ( +/obj/structure/grille, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bfB" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bfC" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"bfD" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/console_screen, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/wirecutters, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint) +"bfE" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/matter_bin, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"bfF" = ( +/obj/structure/table/glass, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bfG" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bfH" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bfI" = ( +/obj/machinery/chem_heater, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel/white, +/area/medical/chemistry) +"bfJ" = ( +/obj/machinery/chem_dispenser, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (NORTHWEST)"; + icon_state = "warnwhite"; + dir = 9 + }, +/area/medical/chemistry) +"bfK" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (NORTHEAST)"; + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/chemistry) +"bfL" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/plasteel/whiteblue/corner, +/area/medical/medbay) +"bfM" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"bfN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"bfO" = ( +/obj/structure/cable/cyan{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"bfP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"bfQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel/whiteblue/side, +/area/medical/medbay) +"bfR" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/whiteblue/corner{ + tag = "icon-whitebluecorner (WEST)"; + icon_state = "whitebluecorner"; + dir = 8 + }, +/area/medical/medbay) +"bfS" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/checkpoint/medical) +"bfT" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "5" + }, +/obj/structure/table, +/obj/item/device/radio/off, +/obj/machinery/camera{ + c_tag = "Medbay Security Post"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/checkpoint/medical) +"bfU" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/filingcabinet, +/obj/structure/cable, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/checkpoint/medical) +"bfV" = ( +/turf/simulated/floor/plating, +/area/medical/morgue) +"bfW" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/darkblue/corner, +/area/medical/morgue) +"bfX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/medical/morgue) +"bfY" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/darkblue/corner{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/medical/morgue) +"bfZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/medical/morgue) +"bga" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bgb" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bgc" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/crew_quarters/locker/locker_toilet) +"bgd" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"bge" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bgf" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/crew_quarters/locker) +"bgg" = ( +/obj/structure/closet/wardrobe/green, +/turf/simulated/floor/plasteel, +/area/crew_quarters/locker) +"bgh" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 10; + icon_state = "yellow"; + nitrogen = 100; + oxygen = 0; + tag = "icon-yellow (SOUTHWEST)"; + temperature = 80 + }, +/area/tcommsat/server) +"bgi" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/plasteel/neutral/side{ + dir = 6; + icon_state = "neutral"; + nitrogen = 100; + oxygen = 0; + tag = "icon-neutral (SOUTHEAST)"; + temperature = 80 + }, +/area/tcommsat/server) +"bgj" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"bgk" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue"; + nitrogen = 100; + oxygen = 0; + tag = "icon-whiteblue (SOUTHWEST)"; + temperature = 80 + }, +/area/tcommsat/server) +"bgl" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple"; + nitrogen = 100; + oxygen = 0; + tag = "icon-whitepurple (SOUTHEAST)"; + temperature = 80 + }, +/area/tcommsat/server) +"bgm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"bgn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 8; + icon_state = "freezer"; + on = 1; + tag = "icon-freezer (EAST)" + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 10; + icon_state = "yellow"; + tag = "" + }, +/area/tcommsat/computer) +"bgo" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/yellow/corner, +/area/tcommsat/computer) +"bgp" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/engine/break_room) +"bgq" = ( +/turf/simulated/floor/plasteel/yellow/side, +/area/engine/break_room) +"bgr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/simulated/floor/plasteel/yellow/side, +/area/engine/break_room) +"bgs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/engine/break_room) +"bgt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/engine/break_room) +"bgu" = ( +/obj/item/trash/sosjerky, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bgv" = ( +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bgw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"bgx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"bgy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/entry) +"bgz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/atmos_control) +"bgA" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bgB" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bgC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bgD" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/atmos_control) +"bgE" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bgF" = ( +/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, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgG" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgH" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgI" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Technical Storage"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgJ" = ( +/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) +"bgK" = ( +/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) +"bgL" = ( +/obj/machinery/requests_console{ + department = "Tech Storage"; + name = "Technical Storage RC"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgM" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgN" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil/green, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/storage/tech) +"bgO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Art Supply Storage"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (WEST)"; + icon_state = "blackcorner"; + dir = 8 + }, +/area/storage/art) +"bgP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/storage/art) +"bgQ" = ( +/obj/structure/table, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/black/corner, +/area/storage/art) +"bgR" = ( +/obj/item/weapon/rack_parts, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bgS" = ( +/obj/structure/closet/wardrobe/pink, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bgT" = ( +/obj/structure/rack, +/obj/item/weapon/storage/briefcase, +/turf/simulated/floor/wood, +/area/lawoffice) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/lawoffice) +"bgV" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/lawoffice) +"bgW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bgY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bgZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/crew_quarters/courtroom) +"bha" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/crew_quarters/courtroom) +"bhb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"bhc" = ( +/obj/machinery/camera{ + c_tag = "Courtroom South"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"bhd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"bhe" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"bhf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"bhg" = ( +/turf/simulated/wall, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bhi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bhj" = ( +/obj/structure/sign/bluecross_2, +/turf/simulated/wall, +/area/medical/chemistry) +"bhk" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/medical/medbay) +"bhl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/blue, +/area/medical/medbay) +"bhm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/blue, +/area/medical/medbay) +"bhn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/blue, +/area/medical/medbay) +"bho" = ( +/obj/structure/sign/bluecross_2, +/turf/simulated/wall, +/area/security/checkpoint/medical) +"bhp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkblue, +/area/medical/morgue) +"bhq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/port) +"bhr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bhs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/locker) +"bht" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/locker) +"bhu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/locker) +"bhv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/tcommsat/computer) +"bhw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/tcommsat/computer) +"bhx" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/engine/break_room) +"bhy" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/engine/break_room) +"bhz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "32" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow, +/area/engine/break_room) +"bhA" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/engine/break_room) +"bhB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bhC" = ( +/turf/simulated/wall, +/area/hallway/primary/central) +"bhD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"bhE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"bhF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/engine/engineering) +"bhG" = ( +/turf/simulated/wall, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bhH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bhI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bhJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/storage/tech) +"bhK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/storage/tech) +"bhL" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/storage/art) +"bhM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/storage/art) +"bhN" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/storage/art) +"bhO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"bhP" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "lawyer_blast"; + name = "privacy door" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"bhQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/lawoffice) +"bhR" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "lawyer_blast"; + name = "privacy door" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"bhS" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/crew_quarters/courtroom) +"bhT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"bhU" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/crew_quarters/courtroom) +"bhV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall, +/area/security/transfer) +"bhW" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bhX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bhY" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"bhZ" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"bia" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bib" = ( +/obj/item/wallframe/light_fixture/small, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"bic" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bid" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bie" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bif" = ( +/obj/structure/sign/directions{ + dir = 4; + icon_state = "direction_supply"; + name = "cargo bay"; + pixel_y = 24; + tag = "icon-direction_supply" + }, +/obj/structure/sign/directions{ + dir = 4; + icon_state = "direction_bridge"; + name = "bridge"; + pixel_y = 32; + tag = "icon-direction_bridge" + }, +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 0; + pixel_y = 40; + tag = "icon-direction_sec (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway West 3"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bih" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bii" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bij" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (EAST)"; + icon_state = "bluecorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bik" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (EAST)"; + icon_state = "bluecorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bil" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/blue/side{ + tag = "icon-blue (NORTH)"; + icon_state = "blue"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bim" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/blue/side{ + tag = "icon-blue (NORTH)"; + icon_state = "blue"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bin" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/blue/side{ + tag = "icon-blue (NORTH)"; + icon_state = "blue"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bio" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (NORTH)"; + icon_state = "bluecorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bip" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (NORTH)"; + icon_state = "bluecorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (NORTH)"; + icon_state = "bluecorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bir" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/blue/corner{ + tag = "icon-bluecorner (NORTH)"; + icon_state = "bluecorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bis" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway West 1"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bit" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biu" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Hallway"; + dir = 6; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biE" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biF" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biK" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Hallway East 2"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"biQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"biR" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + icon_state = "direction_eng"; + pixel_x = -32; + pixel_y = 24; + tag = "icon-direction_eng (WEST)" + }, +/obj/structure/sign/directions/medical{ + dir = 8; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = 32; + tag = "icon-direction_med (WEST)" + }, +/obj/structure/sign/directions/evac{ + dir = 1; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = 40; + tag = "icon-direction_evac (NORTH)" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"biS" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"biT" = ( +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/science{ + pixel_x = 32; + pixel_y = 24 + }, +/obj/structure/sign/directions{ + dir = 2; + icon_state = "direction_bridge"; + name = "bridge"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_bridge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"biU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"biV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"biW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"biX" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"biY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"biZ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bja" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bje" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Hallway West 1"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (EAST)"; + icon_state = "yellowcorner"; + dir = 4 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjg" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (NORTH)"; + icon_state = "yellowcorner"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjl" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjm" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 0; + dir = 1; + name = "Fore Starboard Hallway APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (EAST)"; + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTH)"; + icon_state = "red"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (NORTH)"; + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjr" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjs" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bju" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (EAST)"; + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTH)"; + icon_state = "red"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTH)"; + icon_state = "red"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (NORTH)"; + icon_state = "red"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (NORTH)"; + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bjB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/security/transfer) +"bjC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/transfer) +"bjD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fore) +"bjE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall/r_wall/rust, +/area/security/transfer) +"bjF" = ( +/turf/simulated/wall/r_wall, +/area/security/transfer) +"bjG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjH" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjI" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjJ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjM" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjP" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjQ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjR" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjS" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjT" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjU" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjV" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjW" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjX" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjY" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bjZ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bka" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 18 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkb" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkc" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bke" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bkf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bkg" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bkh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bki" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkj" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkk" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkl" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkm" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkn" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bko" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkq" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkr" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bks" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/bot, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkt" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bku" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkv" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bkw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bkx" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/transfer) +"bky" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/transfer) +"bkz" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall/r_wall, +/area/security/transfer) +"bkB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/transfer) +"bkC" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/transfer) +"bkD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/obj/structure/closet/secure_closet/injection, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/transfer) +"bkE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bkF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"bkG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkI" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + icon_state = "direction_eng"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_eng (EAST)" + }, +/obj/structure/sign/directions/science{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkK" = ( +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Hallway West 2"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkQ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkR" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkS" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bkZ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bla" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/green/corner, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/green/side, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/green/side, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bld" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/green/corner{ + dir = 8 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"ble" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 0; + dir = 2; + name = "Fore Port Hallway APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bli" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = 0; + pixel_y = -32; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bll" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Hallway East 1"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blo" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/corner, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/yellow/side, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bls" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/yellow/corner{ + tag = "icon-yellowcorner (WEST)"; + icon_state = "yellowcorner"; + dir = 8 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Hallway East 3"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blu" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"blv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"blw" = ( +/obj/structure/sign/directions{ + dir = 2; + icon_state = "direction_supply"; + name = "cargo bay"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_supply" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"blx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bly" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"blz" = ( +/obj/machinery/door/firedoor, +/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/plasteel, +/area/hallway/primary/central) +"blA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Hallway West 2"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blH" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blI" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blL" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blN" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_x = 32; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blP" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Hallway"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blW" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/red/side, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Fore Starboard Hallway East 1"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"blZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bma" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bmb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bmc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/hallway/secondary/entry) +"bme" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/security/transfer) +"bmf" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/transfer) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/fore) +"bmh" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bmi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/security/transfer) +"bmj" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/transfer) +"bmk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/transfer) +"bml" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + layer = 2.4 + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Additional Transfer Methods"; + req_access_txt = "2" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/transfer) +"bmm" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/escape) +"bmn" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/escape) +"bmo" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/escape) +"bmp" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bmq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Escape Waiting Area" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bmr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Escape Waiting Area" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bms" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/glass{ + name = "Escape Waiting Area" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bmt" = ( +/turf/simulated/wall, +/area/library) +"bmu" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/library) +"bmv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bmw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bmx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bmy" = ( +/turf/simulated/wall, +/area/storage/eva) +"bmz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/storage/eva) +"bmA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/storage/eva) +"bmB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/storage/eva) +"bmC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bmD" = ( +/turf/simulated/wall, +/area/hydroponics) +"bmE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hydroponics) +"bmF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/green/side{ + dir = 8 + }, +/area/hydroponics) +"bmG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side{ + dir = 4 + }, +/area/hydroponics) +"bmH" = ( +/turf/simulated/wall, +/area/crew_quarters/bar) +"bmI" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"bmJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bmK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bmL" = ( +/obj/structure/sign/barsign, +/turf/simulated/wall, +/area/crew_quarters/bar) +"bmM" = ( +/turf/simulated/wall, +/area/crew_quarters/theatre) +"bmN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bmO" = ( +/turf/simulated/wall/r_wall, +/area/engine/gravity_generator) +"bmP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/engine/gravity_generator) +"bmQ" = ( +/turf/simulated/floor/plasteel/yellow, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/warningline, +/area/engine/gravity_generator) +"bmR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/engine/gravity_generator) +"bmS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bmT" = ( +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bmU" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/port{ + name = "Fore Port Hallway" + }) +"bmV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bmW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bmX" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bmY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bmZ" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads) +"bna" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/turf/simulated/floor/plasteel/darkblue, +/area/crew_quarters/heads) +"bnb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bnc" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bnd" = ( +/turf/simulated/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bne" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bnf" = ( +/turf/simulated/wall, +/area/security/detectives_office) +"bng" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"bnh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Detective"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/grimy, +/area/security/detectives_office) +"bni" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"bnj" = ( +/turf/simulated/wall/r_wall, +/area/security/detectives_office) +"bnk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/plating, +/area/security/brig) +"bnl" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/security/brig) +"bnm" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bnn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bno" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/plating, +/area/security/brig) +"bnp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/brig) +"bnq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/brig) +"bnr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/transfer) +"bns" = ( +/obj/structure/table, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/circular_saw, +/obj/item/weapon/hemostat, +/obj/item/weapon/retractor, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/button/ignition{ + id = "executionburn"; + pixel_x = -25; + pixel_y = 5 + }, +/obj/machinery/button/flasher{ + id = "executionflash"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/transfer) +"bnt" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 1 + }, +/obj/item/device/taperecorder{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bnu" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/transfer) +"bnv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast"; + layer = 2.9; + name = "blast door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/transfer) +"bnw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/transfer) +"bnx" = ( +/obj/machinery/flasher{ + id = "executionflash"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bny" = ( +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/transfer) +"bnz" = ( +/obj/machinery/door/poddoor{ + id = "executionspaceblast"; + name = "blast door" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/security/transfer) +"bnA" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/escape) +"bnB" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating/airless, +/area/shuttle/escape) +"bnC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"bnD" = ( +/turf/simulated/wall, +/area/hallway/secondary/exit) +"bnE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"bnF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bnG" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bnH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bnI" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/library) +"bnJ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"bnK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bnL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bnM" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"bnN" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/library) +"bnO" = ( +/obj/structure/table/wood, +/obj/item/weapon/dice/d00, +/obj/item/weapon/dice/d10, +/turf/simulated/floor/wood, +/area/library) +"bnP" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/stack/packageWrap, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"bnQ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/wood, +/area/library) +"bnR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/wood, +/area/library) +"bnS" = ( +/turf/simulated/floor/wood, +/area/library) +"bnT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/library) +"bnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bnV" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bnW" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fpmaint) +"bnX" = ( +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bnY" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bnZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/storage/eva) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (EAST)"; + icon_state = "blackcorner"; + dir = 4 + }, +/area/storage/eva) +"bob" = ( +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/storage/eva) +"boc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (NORTH)"; + icon_state = "blackcorner"; + dir = 1 + }, +/area/storage/eva) +"bod" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/table, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/storage/eva) +"boe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint) +"bof" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/wrench, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/wirecutters, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bog" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/watertank, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/plantbgone, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"boh" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"boi" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/green, +/area/hydroponics) +"boj" = ( +/obj/machinery/hydroponics/constructable, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"bok" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/green/side{ + dir = 8 + }, +/area/hydroponics) +"bol" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side{ + dir = 4 + }, +/area/hydroponics) +"bom" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel/green, +/area/hydroponics) +"bon" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"boo" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/obj/item/clothing/head/hardhat/cakehat, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/crew_quarters/bar) +"bop" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"boq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bor" = ( +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bos" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bot" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bou" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bov" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/piano, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bow" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"box" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boy" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boz" = ( +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boB" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/requests_console{ + department = "Theatre"; + departmentType = 0; + name = "Theatre RC"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boC" = ( +/obj/structure/table/wood, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boD" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/item/weapon/storage/crayons, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"boF" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boG" = ( +/obj/structure/cable/yellow{ + tag = "icon-0-6"; + icon_state = "0-6"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/engine/gravity_generator) +"boH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/turf/simulated/floor/plasteel/yellow, +/area/engine/gravity_generator) +"boI" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel, +/area/engine/gravity_generator) +"boJ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boK" = ( +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boL" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boM" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boO" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"boP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"boQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"boR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"boS" = ( +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/machinery/pdapainter, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"boT" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/crew_quarters/heads) +"boU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/crew_quarters/heads) +"boV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/crew_quarters/heads) +"boW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"boX" = ( +/obj/structure/rack, +/obj/item/device/assembly/mousetrap, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"boY" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"boZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bpb" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bpc" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bpd" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bpe" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bpf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/primary/fore{ + name = "Fore Starboard Hallway" + }) +"bpg" = ( +/turf/simulated/floor/plasteel/grimy, +/area/security/detectives_office) +"bph" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/grimy, +/area/security/detectives_office) +"bpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/grimy, +/area/security/detectives_office) +"bpj" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/grimy, +/area/security/detectives_office) +"bpk" = ( +/obj/structure/filingcabinet, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"bpl" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"bpm" = ( +/obj/machinery/computer/med_data, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"bpn" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpo" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/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"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpp" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpq" = ( +/turf/simulated/wall, +/area/security/brig) +"bpr" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bps" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpt" = ( +/obj/machinery/button/door{ + id = "briggate"; + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "0" + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = -8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/brig) +"bpu" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/brig) +"bpv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bpw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/brig) +"bpx" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Brig Desk"; + dir = 8; + network = list("SS13","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/brig) +"bpy" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpz" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpA" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpB" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/turf/simulated/floor/plasteel, +/area/security/brig) +"bpC" = ( +/turf/simulated/wall, +/area/security/transfer) +"bpD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpF" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/transfer) +"bpI" = ( +/obj/structure/rack, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/weapon/tank/internals/anesthetic{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/weapon/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Transfer Area Lockdown"; + pixel_x = -25; + pixel_y = -5; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "executionspaceblast"; + name = "Vent to Space"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast"; + layer = 2.9; + name = "blast door" + }, +/obj/machinery/door/window/westright{ + dir = 8; + name = "Transfer Room"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpM" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpN" = ( +/obj/structure/bed, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/transfer) +"bpO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bpP" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"bpQ" = ( +/obj/machinery/sleeper{ + dir = 4; + icon_state = "sleeper-open" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bpR" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bpS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bpT" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/escape) +"bpU" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor2" + }, +/area/shuttle/escape) +"bpV" = ( +/obj/structure/closet, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor2" + }, +/area/shuttle/escape) +"bpW" = ( +/turf/simulated/floor/plasteel/delivery, +/area/hallway/secondary/exit) +"bpX" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/delivery, +/area/hallway/secondary/exit) +"bpY" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Escape Cargo Storage"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/delivery, +/area/hallway/secondary/exit) +"bpZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bqa" = ( +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bqb" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = 32; + tag = "icon-direction_evac (NORTH)" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bqc" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bqd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/secondary/exit) +"bqe" = ( +/obj/structure/chair/comfy/black{ + tag = "icon-comfychair (NORTH)"; + icon_state = "comfychair"; + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/wood, +/area/library) +"bqf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"bqg" = ( +/turf/simulated/floor/carpet, +/area/library) +"bqh" = ( +/obj/structure/chair/office/dark, +/turf/simulated/floor/carpet, +/area/library) +"bqi" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bqj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/library) +"bqk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bql" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bqm" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bqn" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bqo" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/crowbar, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/storage/eva) +"bqp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bqr" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/storage/eva) +"bqs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bqt" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/item/clothing/tie/armband/hydro, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bqu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bqv" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/hydroponics) +"bqw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTHWEST)"; + icon_state = "green"; + dir = 9 + }, +/area/hydroponics) +"bqx" = ( +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTH)"; + icon_state = "green"; + dir = 1 + }, +/area/hydroponics) +"bqy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTH)"; + icon_state = "green"; + dir = 1 + }, +/area/hydroponics) +"bqz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTH)"; + icon_state = "green"; + dir = 1 + }, +/area/hydroponics) +"bqA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTH)"; + icon_state = "green"; + dir = 1 + }, +/area/hydroponics) +"bqB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTHEAST)"; + icon_state = "green"; + dir = 5 + }, +/area/hydroponics) +"bqC" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"bqD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"bqE" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bqF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bqG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bqH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Mime" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Clown" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bqR" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bqS" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel, +/area/engine/gravity_generator) +"bqT" = ( +/obj/structure/cable/yellow{ + tag = "icon-6-9"; + icon_state = "6-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/engine/gravity_generator) +"bqU" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/gravity_generator) +"bqV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/gravity_generator) +"bqW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel, +/area/engine/gravity_generator) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bqY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bqZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint2) +"bra" = ( +/obj/item/weapon/stock_parts/cell/crap/empty, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"brb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"brc" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"brd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bre" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (WEST)"; + icon_state = "loadingarea"; + dir = 8 + }, +/area/hallway/primary/central) +"brf" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/delivery, +/area/hallway/primary/central) +"brg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"brh" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bri" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"brj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads) +"brk" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads) +"brl" = ( +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads) +"brm" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"brn" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bro" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"brp" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"brq" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"brr" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"brs" = ( +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"brt" = ( +/turf/simulated/wall, +/area/maintenance/maintcentral) +"bru" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + density = 0; + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"brv" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"brw" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"brx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/security/detectives_office) +"bry" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"brz" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"brA" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"brB" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/simulated/floor/plasteel/red/corner, +/area/security/brig) +"brC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/red/side, +/area/security/brig) +"brD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Cell 1"; + dir = 8; + network = list("SS13","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/security/brig) +"brE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Cell 2"; + dir = 8; + network = list("SS13","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/security/brig) +"brF" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/brig) +"brG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/brig) +"brH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/weapon/restraints/handcuffs, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"brI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/brig) +"brJ" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/brig) +"brK" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/red/corner, +/area/security/brig) +"brL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cell 3"; + dir = 8; + network = list("SS13","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/security/brig) +"brM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cell 4"; + dir = 8; + network = list("SS13","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/security/brig) +"brN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + desc = "A small wall mounted cabinet designed to hold a fire extinguisher. Excellent for extinguishing prisoners and or life."; + pixel_x = -27; + pixel_y = 0; + tag = "wsecjoke" + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"brO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/transfer) +"brP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"brQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/security/transfer) +"brR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 0; + icon_state = "closed"; + id_tag = null; + locked = 0; + name = "Prisoner Transfer Centre"; + req_access = null; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"brS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/transfer) +"brT" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"brU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/transfer) +"brV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast"; + layer = 2.9; + name = "blast door" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/security/transfer) +"brW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/transfer) +"brX" = ( +/obj/machinery/sparker{ + dir = 2; + id = "executionburn"; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"brY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/transfer) +"brZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/crowbar, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bsa" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor2" + }, +/area/shuttle/escape) +"bsb" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bsc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsg" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (EAST)"; + icon_state = "brown"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bsh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Escape Storage"; + req_one_access_txt = "50" + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/secondary/exit) +"bsj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsl" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bsn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"bso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"bsp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bsq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bsr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bss" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library Game Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"bst" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"bsu" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"bsv" = ( +/obj/structure/table/wood, +/obj/item/weapon/dice/d4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/library) +"bsw" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"bsx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/library) +"bsy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bsz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bsA" = ( +/obj/structure/cable/green{ + tag = "icon-1-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/plating, +/area/maintenance/fpmaint) +"bsB" = ( +/turf/simulated/wall/rust, +/area/maintenance/fpmaint) +"bsC" = ( +/turf/simulated/wall, +/area/maintenance/fpmaint) +"bsD" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/storage/eva) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bsF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bsG" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/storage/eva) +"bsH" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Hydroponics" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/hydroponics) +"bsI" = ( +/turf/simulated/floor/plasteel/delivery, +/area/hydroponics) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bsK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bsL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bsM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (WEST)"; + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bsN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hydroponics) +"bsO" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hydroponics) +"bsP" = ( +/obj/machinery/biogenerator, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTHWEST)"; + icon_state = "green"; + dir = 9 + }, +/area/hydroponics) +"bsQ" = ( +/obj/machinery/seed_extractor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (NORTHEAST)"; + icon_state = "green"; + dir = 5 + }, +/area/hydroponics) +"bsR" = ( +/turf/simulated/floor/plasteel, +/area/hydroponics) +"bsS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (EAST)"; + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bsT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bsU" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bsV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bsW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bsX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bsY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bsZ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bta" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/theatre) +"btb" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"btc" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/snacks/baguette, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"btd" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Theatre Backstage"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"bte" = ( +/obj/structure/mirror{ + pixel_y = -32 + }, +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/snacks/pie/cream, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"btf" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet, +/area/crew_quarters/theatre) +"btg" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bth" = ( +/obj/structure/closet/radiation, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warning, +/area/engine/gravity_generator) +"bti" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/warning, +/area/engine/gravity_generator) +"btj" = ( +/obj/structure/cable/yellow{ + tag = "icon-2-9"; + icon_state = "2-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-8-9"; + icon_state = "8-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/warning, +/area/engine/gravity_generator) +"btk" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/warning, +/area/engine/gravity_generator) +"btl" = ( +/obj/structure/closet/radiation, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning, +/area/engine/gravity_generator) +"btm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"btn" = ( +/turf/simulated/wall, +/area/maintenance/fsmaint2) +"bto" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"btp" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"btq" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"btr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bts" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads) +"btt" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/computer/card, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"btu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/crew_quarters/heads) +"btv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads) +"btw" = ( +/obj/structure/bed/dogbed{ + anchored = 0; + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads) +"btx" = ( +/turf/simulated/wall/r_wall/rust, +/area/maintenance/maintcentral) +"bty" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/maintcentral) +"btz" = ( +/turf/simulated/wall/r_wall, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"btA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"btB" = ( +/obj/structure/plasticflaps/mining{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 2; + freq = 1400; + location = "Bridge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"btC" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"btD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/simulated/floor/plating, +/area/bridge) +"btE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/machinery/ai_status_display{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/bridge) +"btF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/machinery/status_display{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/bridge) +"btG" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/bridge) +"btH" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Detective's Office"; + name = "Detective's Office RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"btI" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"btJ" = ( +/obj/structure/closet/secure_closet/detective, +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = 0; + pixel_y = -32; + tag = "s" + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"btK" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = -26 + }, +/obj/item/device/camera/detective, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"btL" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"btM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/security/brig) +"btN" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "Cell 1"; + name = "Cell 1"; + req_access_txt = "2" + }, +/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"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"btO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/security/brig) +"btP" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "2" + }, +/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"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"btQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"btR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/plating, +/area/security/brig) +"btS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/brig) +"btT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/brig) +"btU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/security/brig) +"btV" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "Cell 3"; + name = "Cell 3"; + req_access_txt = "2" + }, +/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"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"btW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/security/brig) +"btX" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "Cell 4"; + name = "Cell 4"; + req_access_txt = "2" + }, +/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"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"btY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"btZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bua" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bub" = ( +/turf/simulated/wall/r_wall/rust, +/area/security/transfer) +"buc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/security/transfer) +"bud" = ( +/turf/simulated/wall/r_wall, +/area/security/prison) +"bue" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor2" + }, +/area/shuttle/escape) +"buf" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"bug" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"buh" = ( +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"bui" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/obj/structure/cable/green{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"buj" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (SOUTHWEST)"; + icon_state = "brown"; + dir = 10 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/hallway/secondary/exit) +"buk" = ( +/turf/simulated/floor/plasteel/brown, +/area/hallway/secondary/exit) +"bul" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/brown, +/area/hallway/secondary/exit) +"bum" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bun" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (SOUTHEAST)"; + icon_state = "brown"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bup" = ( +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = -32; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (NORTH)"; + icon_state = "browncorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bur" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bus" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"but" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"buu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"buv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"buw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bux" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/library) +"buy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library Game Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"buz" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"buA" = ( +/obj/structure/table/wood, +/obj/item/weapon/dice/d12, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"buB" = ( +/obj/structure/table/wood, +/obj/item/weapon/dice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/library) +"buC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"buD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"buE" = ( +/obj/item/weapon/poster/legit, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"buF" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"buG" = ( +/obj/structure/table, +/obj/item/device/radio/off{ + pixel_x = -4 + }, +/obj/item/device/radio/off{ + pixel_x = -4 + }, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/prox_sensor, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/storage/eva) +"buH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black/corner, +/area/storage/eva) +"buI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (WEST)"; + icon_state = "blackcorner"; + dir = 8 + }, +/area/storage/eva) +"buJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/storage/eva) +"buK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"buL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"buM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"buN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"buO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"buP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (WEST)"; + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"buQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hydroponics) +"buR" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (SOUTHWEST)"; + icon_state = "green"; + dir = 10 + }, +/area/hydroponics) +"buS" = ( +/obj/machinery/vending/hydroseeds, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (SOUTHEAST)"; + icon_state = "green"; + dir = 6 + }, +/area/hydroponics) +"buT" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (EAST)"; + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"buU" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"buV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"buW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"buX" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"buY" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"buZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bva" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bvb" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bvc" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/fork, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bvd" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bve" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bvf" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bvg" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"bvh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/engine/gravity_generator) +"bvi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating, +/area/engine/gravity_generator) +"bvj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/turf/simulated/floor/plasteel/black, +/area/engine/gravity_generator) +"bvk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/engine/gravity_generator) +"bvl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bvm" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bvn" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bvo" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads) +"bvp" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads) +"bvq" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/glass = 2, /obj/item/stack/sheet/rglass = 1, /obj/item/stack/sheet/metal = 2, /obj/item/stack/sheet/plasteel = 1); + name = "random sheet material spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bvr" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bvs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bvt" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bvu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bvv" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bvw" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bvx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/bridge) +"bvy" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bvz" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bvA" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bvB" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bvC" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bvD" = ( +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bvE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge North"; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/bridge) +"bvF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bvG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/bodybag, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/detectives_office) +"bvH" = ( +/obj/machinery/door/window{ + dir = 1; + name = "glass door"; + pixel_y = 0; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/detectives_office) +"bvI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/brig) +"bvJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bvK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/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" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/brig) +"bvL" = ( +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/brig) +"bvN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bvO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/brig) +"bvP" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 7 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + sortType = 8; + tag = "icon-pipe-j1s (NORTH)" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvU" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/brig) +"bvW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bvX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/brig) +"bvY" = ( +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bvZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/brig) +"bwa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bwb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/brig) +"bwc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/transfer) +"bwd" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/clothing/head/helmet, +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver, +/obj/item/device/electropack, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/prison) +"bwe" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/prison) +"bwf" = ( +/turf/simulated/wall, +/area/security/prison) +"bwg" = ( +/obj/structure/bed, +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 0; + pixel_y = 25; + prison_radio = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Cell 3"; + dir = 4; + network = list("SS13","Prison") + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwh" = ( +/obj/machinery/button/door{ + id = "permabolt3"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwi" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/vending/sustenance{ + desc = "A Nutri-vend brand vending machine which vends food, as required by section 47-C of the NT's Prisoner Ethical Treatment Agreement."; + name = "\improper Nutri-vend" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwk" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwl" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwm" = ( +/obj/machinery/hydroponics/soil, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwn" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bwo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bwp" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/escape) +"bwq" = ( +/obj/machinery/door/airlock/glass{ + name = "Emergency Shuttle Infirmary" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bwr" = ( +/obj/machinery/status_display, +/turf/simulated/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/escape) +"bws" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/escape) +"bwt" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Cargo" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bwu" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/escape) +"bwv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"bww" = ( +/obj/effect/spawner/structure/window/reinforced, +/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/floor/plating, +/area/hallway/secondary/exit) +"bwx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Escape Storage"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/brown, +/area/hallway/secondary/exit) +"bwy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"bwz" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/hallway/secondary/exit) +"bwA" = ( +/turf/simulated/floor/plasteel/escape/corner{ + tag = "icon-escapecorner (WEST)"; + icon_state = "escapecorner"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bwB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/obj/machinery/camera{ + c_tag = "Escape East 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bwC" = ( +/obj/structure/bookcase/random/religion, +/turf/simulated/floor/wood, +/area/library) +"bwD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"bwE" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/library) +"bwF" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bwG" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fpmaint) +"bwH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bwI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bwJ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bwK" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bwL" = ( +/turf/simulated/wall/r_wall, +/area/storage/eva) +"bwM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bwN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bwO" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/item/clothing/tie/armband/hydro, +/obj/machinery/camera{ + c_tag = "Hydroponics West"; + dir = 4; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bwP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"bwQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (SOUTHWEST)"; + icon_state = "green"; + dir = 10 + }, +/area/hydroponics) +"bwR" = ( +/turf/simulated/floor/plasteel/green/side, +/area/hydroponics) +"bwS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/green/side, +/area/hydroponics) +"bwT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/green/side, +/area/hydroponics) +"bwU" = ( +/turf/simulated/floor/plasteel/green/side{ + tag = "icon-green (SOUTHEAST)"; + icon_state = "green"; + dir = 6 + }, +/area/hydroponics) +"bwV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bwW" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/kitchen/fork, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bwX" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bwY" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bwZ" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bxa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bxb" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/theatre) +"bxc" = ( +/obj/item/weapon/vending_refill/autodrobe, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bxd" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint2) +"bxe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkwarning/corner, +/area/engine/gravity_generator) +"bxf" = ( +/turf/simulated/floor/plasteel/darkwarning, +/area/engine/gravity_generator) +"bxg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/simulated/floor/plasteel/darkwarning, +/area/engine/gravity_generator) +"bxh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/darkwarning, +/area/engine/gravity_generator) +"bxi" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (NORTH)"; + icon_state = "warndarkcorners"; + dir = 1 + }, +/area/engine/gravity_generator) +"bxj" = ( +/turf/simulated/wall/r_wall, +/area/turret_protected/ai_upload) +"bxk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2"; + tag = "icon-0-2" + }, +/turf/simulated/floor/plating, +/area/turret_protected/ai_upload) +"bxl" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/turret_protected/ai_upload) +"bxm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"bxn" = ( +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/central) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bxp" = ( +/obj/machinery/computer/cargo, +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bxq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bxr" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bxs" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bxt" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bxu" = ( +/obj/item/device/firing_pin/clown/ultra{ + desc = "Advanced clowntech that can convert any firearm into a far more useful object, at least, in theory."; + force_replace = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bxv" = ( +/obj/item/weapon/paper/crumpled{ + info = "The fifth and sixth straddle the core..." + }, +/obj/structure/cable/blue, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bxw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Bridge Storage"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bxx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (WEST)"; + icon_state = "warndarkcorners"; + dir = 8 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bxy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bxz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (EAST)"; + icon_state = "warndarkcorners"; + dir = 4 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bxA" = ( +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bxB" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge Storage"; + req_access = null; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bxC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bxD" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (NORTHWEST)"; + icon_state = "darkyellow"; + dir = 9 + }, +/area/bridge) +"bxE" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/structure/cable/blue, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (NORTH)"; + icon_state = "darkyellow"; + dir = 1 + }, +/area/bridge) +"bxF" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/floor/plasteel/darkyellow/side{ + tag = "icon-darkyellow (NORTHEAST)"; + icon_state = "darkyellow"; + dir = 5 + }, +/area/bridge) +"bxG" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/wrench, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bxH" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bxI" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/bridge) +"bxJ" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/bridge) +"bxK" = ( +/obj/machinery/computer/prisoner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/bridge) +"bxL" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bxM" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/bridge) +"bxN" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/detectives_office) +"bxO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/security/detectives_office) +"bxP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/item/weapon/paper/crumpled{ + info = "The fourth follows those fit to command..." + }, +/obj/item/weapon/grenade/chem_grenade/colorful{ + desc = "Perfect for making the brig a bit less intimidating." + }, +/obj/item/weapon/screwdriver{ + desc = "A screwdriver with an ultra thin tip." + }, +/turf/simulated/floor/plating, +/area/security/brig) +"bxQ" = ( +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The three is slightly darker than the other numbers."; + tag = "three" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/security/brig) +"bxR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bxS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/brig) +"bxT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/brig) +"bxU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/brig) +"bxV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bxW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bxX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/brig) +"bxY" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/brig) +"bxZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/brig) +"bya" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"byb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/brig) +"byc" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"byd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bye" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"byf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/prison) +"byg" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Long-Term Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/security/prison) +"byh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell3"; + name = "cell blast door" + }, +/obj/machinery/door/airlock/glass{ + id_tag = "permabolt3"; + name = "Cell 3" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byk" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bym" = ( +/obj/machinery/hydroponics/soil, +/obj/item/weapon/cultivator, +/obj/item/seeds/tower/steel, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byn" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/potato, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byo" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/coffee/robusta, +/obj/item/device/analyzer/plant_analyzer, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"byq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"byr" = ( +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bys" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"byt" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Containment Southwest"; + dir = 5; + icon_state = "camera"; + network = list("Singularity"); + tag = "icon-camera (NORTHEAST)" + }, +/obj/structure/cable/green{ + tag = "icon-2-9"; + icon_state = "2-9" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"byu" = ( +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (NORTHWEST)"; + icon_state = "escape"; + dir = 9 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHWEST)"; + icon_state = "warningline"; + dir = 9 + }, +/area/hallway/secondary/exit) +"byv" = ( +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (NORTH)"; + icon_state = "escape"; + dir = 1 + }, +/area/hallway/secondary/exit) +"byw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (NORTH)"; + icon_state = "escape"; + dir = 1 + }, +/area/hallway/secondary/exit) +"byx" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (NORTH)"; + icon_state = "escape"; + dir = 1 + }, +/area/hallway/secondary/exit) +"byy" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + tag = "icon-escape (NORTH)"; + icon_state = "escape"; + dir = 1 + }, +/area/hallway/secondary/exit) +"byz" = ( +/obj/structure/chair, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "escape"; + dir = 5 + }, +/area/hallway/secondary/exit) +"byA" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"byB" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"byC" = ( +/obj/machinery/vending/cola, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"byD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"byE" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/library) +"byF" = ( +/obj/structure/table/wood, +/obj/item/weapon/dice/d20, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/library) +"byG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Library Game Room"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/wood, +/area/library) +"byH" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/library) +"byI" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"byJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/storage/eva) +"byK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"byL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"byM" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTHWEST)"; + icon_state = "warning"; + dir = 9 + }, +/area/storage/eva) +"byN" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hydroponics) +"byO" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/hydrofloor, +/area/hydroponics) +"byP" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"byQ" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel/green, +/area/hydroponics) +"byR" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics RC"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"byS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hydroponics) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hydroponics) +"byU" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/camera{ + c_tag = "Hydroponics"; + dir = 1; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"byV" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/black, +/area/hydroponics) +"byW" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/green, +/area/hydroponics) +"byX" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"byY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"byZ" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bza" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bzb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bzc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bzd" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bze" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bzf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bzg" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bzh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/gravity_generator) +"bzi" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-vault (EAST)"; + icon_state = "vault"; + dir = 4 + }, +/area/engine/gravity_generator) +"bzj" = ( +/turf/simulated/floor/plasteel/black, +/area/engine/gravity_generator) +"bzk" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-vault (NORTH)"; + icon_state = "vault"; + dir = 1 + }, +/area/engine/gravity_generator) +"bzl" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Engineering Gravity Generator Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/gravity_generator) +"bzm" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bzn" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/protectStation, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/turret_protected/ai_upload) +"bzo" = ( +/obj/machinery/computer/upload/ai, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bzp" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/corp, +/obj/structure/cable/white{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bzq" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/structure/cable/white{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bzr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/space, +/area/space/nearstation) +"bzs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"bzt" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bzu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"bzv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/central) +"bzw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bzx" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (EAST)"; + icon_state = "loadingarea"; + dir = 4 + }, +/area/hallway/primary/central) +"bzy" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads) +"bzz" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/weapon/bedsheet/hop, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bzA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/crew_quarters/heads) +"bzB" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/crew_quarters/heads) +"bzC" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/hop, +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = 0; + pixel_y = -32; + tag = "s" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/crew_quarters/heads) +"bzD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/heads) +"bzE" = ( +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The four is slightly darker than the other numbers."; + tag = "four" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/maintcentral) +"bzF" = ( +/obj/item/weapon/ore/bluespace_crystal, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bzG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bzH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bzI" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bzJ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bzK" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/black, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bzL" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bzM" = ( +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (NORTH)"; + icon_state = "darkyellowcorners"; + dir = 1 + }, +/area/bridge) +"bzN" = ( +/obj/structure/chair{ + dir = 1; + name = "Engineering Station" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bzO" = ( +/turf/simulated/floor/plasteel/darkyellow/corner{ + tag = "icon-darkyellowcorners (EAST)"; + icon_state = "darkyellowcorners"; + dir = 4 + }, +/area/bridge) +"bzP" = ( +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bzQ" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bzR" = ( +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/bridge) +"bzS" = ( +/obj/structure/chair{ + dir = 1; + name = "Security Station" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bzT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/bridge) +"bzU" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bzV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bzW" = ( +/turf/simulated/wall/r_wall, +/area/security/main) +"bzX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/wall, +/area/security/main) +"bzY" = ( +/turf/simulated/wall, +/area/security/main) +"bzZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/security/main) +"bAa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/main) +"bAb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred, +/area/security/main) +"bAc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/plating, +/area/security/main) +"bAd" = ( +/turf/simulated/wall, +/area/security/warden) +"bAe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/plating, +/area/security/warden) +"bAf" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/darkred, +/area/security/warden) +"bAg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Briefing Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred, +/area/security/brig) +"bAh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/brig) +"bAi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bAj" = ( +/obj/machinery/button/door{ + id = "permacell3"; + name = "Cell 3 Lockdown"; + pixel_x = 25; + pixel_y = 4; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 3"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bAk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/security/prison) +"bAl" = ( +/obj/structure/table, +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/paper, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bAm" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bAn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bAo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bAp" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bAq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bAr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bAs" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bAt" = ( +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (WEST)"; + icon_state = "escape"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bAu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bAv" = ( +/turf/simulated/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bAw" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bAx" = ( +/obj/structure/bookcase/random/fiction, +/turf/simulated/floor/wood, +/area/library) +"bAy" = ( +/obj/structure/bookcase/random/reference, +/turf/simulated/floor/wood, +/area/library) +"bAz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bAA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bAB" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/machinery/requests_console{ + department = "EVA"; + name = "EVA RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/storage/eva) +"bAC" = ( +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bAD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/bot, +/area/storage/eva) +"bAE" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/storage/eva) +"bAF" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bAG" = ( +/turf/simulated/wall, +/area/crew_quarters/kitchen) +"bAH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bAI" = ( +/obj/machinery/smartfridge, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bAJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bAK" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bAL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bar East"; + dir = 8; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/mob/living/carbon/monkey/punpun, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bAM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/gravity_generator) +"bAN" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/engine/gravity_generator) +"bAO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/gravity_generator) +"bAP" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3.2 + }, +/obj/item/weapon/aiModule/supplied/quarantine, +/obj/item/weapon/aiModule/core/full/antimov, +/obj/item/weapon/aiModule/reset/purge, +/obj/item/weapon/aiModule/zeroth/oneHuman, +/obj/item/weapon/aiModule/supplied/oxygen, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "left"; + dir = 4; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/turret_protected/ai_upload) +"bAQ" = ( +/obj/structure/sign/kiddieplaque{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bAR" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/turret_protected/ai_upload) +"bAS" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bAT" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bAU" = ( +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bAV" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2"; + tag = "icon-0-2" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Motion Sensor"; + network = list("Sat") + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai_upload) +"bAW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2"; + tag = "icon-0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/turret_protected/ai_upload) +"bAX" = ( +/turf/simulated/wall, +/area/turret_protected/ai_upload_foyer) +"bAY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/turret_protected/ai_upload_foyer) +"bAZ" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Central Hallway"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bBa" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bBb" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bBc" = ( +/turf/simulated/wall/r_wall, +/area/hallway/primary/central) +"bBd" = ( +/turf/simulated/wall, +/area/crew_quarters/heads) +"bBe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/crew_quarters/heads) +"bBf" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkblue, +/area/crew_quarters/heads) +"bBg" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/maintcentral) +"bBh" = ( +/turf/simulated/wall, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bBi" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bridge Storage"; + req_access = null; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkblue, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bBj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/bridge/meeting_room{ + name = "Bridge Storage" + }) +"bBk" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/bridge) +"bBl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bBm" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bBn" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/main) +"bBo" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Interrogation"; + network = list("SS13","Brig") + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/main) +"bBp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/main) +"bBq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/obj/machinery/camera{ + c_tag = "Security Break Room"; + dir = 4; + network = list("SS13","Brig") + }, +/obj/structure/closet/wardrobe/red, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bBr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/main) +"bBs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/main) +"bBt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/main) +"bBu" = ( +/obj/structure/closet/wardrobe/red, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bBv" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bBw" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bBx" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bBy" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Brig."; + name = "Brig Monitor"; + network = list("Prison","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/warden) +"bBz" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Shutters"; + pixel_x = 27; + pixel_y = -2; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = 27; + pixel_y = 8; + req_access_txt = "2" + }, +/obj/effect/landmark/start{ + name = "Warden" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/warden) +"bBA" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/security/warden) +"bBB" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_y = 4 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bBC" = ( +/obj/structure/filingcabinet, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bBD" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac, +/obj/item/clothing/tie/armband/deputy, +/obj/item/clothing/tie/armband/deputy, +/obj/item/clothing/tie/armband/deputy, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bBE" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bBF" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/brig) +"bBG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/brig) +"bBH" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/brig) +"bBI" = ( +/obj/structure/chair, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/camera{ + c_tag = "Security Briefing Room"; + dir = 8; + network = list("SS13","Brig"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bBJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 0; + icon_state = "closed"; + id_tag = null; + locked = 0; + name = "Prisoner Transfer"; + req_access = null; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/transfer) +"bBK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/security/transfer) +"bBL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Prison Wing North"; + dir = 4; + network = list("SS13","Brig") + }, +/obj/structure/extinguisher_cabinet{ + desc = "A small wall mounted cabinet designed to hold a fire extinguisher. Excellent for extinguishing prisoners and or life."; + pixel_x = -27; + pixel_y = 0; + tag = "wsecjoke" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bBM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bBN" = ( +/turf/simulated/wall/rust, +/area/security/prison) +"bBO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bBP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bBR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/security/prison) +"bBS" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (WEST)"; + icon_state = "escape"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bBT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bBU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bBV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bBW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bBX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bBY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bBZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bCa" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/chair/stool, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bCb" = ( +/obj/machinery/computer/arcade, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bCc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/library) +"bCd" = ( +/turf/simulated/floor/plating, +/area/library) +"bCe" = ( +/obj/item/weapon/paper/crumpled{ + info = "The first is unbuilt, but obvious..." + }, +/turf/simulated/floor/plating, +/area/library) +"bCf" = ( +/obj/item/weapon/storage/pill_bottle{ + desc = "Supposed to contain all the luck you'll ever need.... Seems to be missing some dice."; + icon = 'icons/obj/dice.dmi'; + icon_state = "dicebag"; + max_combined_w_class = 16; + name = "dice bag"; + storage_slots = 8 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/library) +"bCg" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/library) +"bCh" = ( +/turf/simulated/wall/rust, +/area/library) +"bCi" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bCj" = ( +/obj/structure/table, +/obj/item/weapon/wirecutters, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bCk" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bCl" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/maintenance/fpmaint) +"bCm" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bCn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bCo" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bCp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bCq" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bCr" = ( +/obj/structure/closet/chefcloset, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bCs" = ( +/obj/machinery/icecream_vat, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bCt" = ( +/obj/item/toy/beach_ball/holoball, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"bCu" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCv" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCy" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face."; + name = "kitchen sink"; + pixel_y = 28 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCz" = ( +/obj/machinery/processor, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCA" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCB" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bCC" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bCD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bCE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bCF" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bCG" = ( +/obj/structure/chair/stool, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bCH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bCI" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bCJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/table/wood, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face."; + name = "kitchen sink"; + pixel_y = 28 + }, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bCK" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/gun/projectile/revolver/doublebarrel, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bCL" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/gravity_generator) +"bCM" = ( +/obj/machinery/gravity_generator/main/station, +/turf/simulated/floor/plasteel/black, +/area/engine/gravity_generator) +"bCN" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/gravity_generator) +"bCO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/turret_protected/ai_upload) +"bCP" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/reset, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai_upload) +"bCQ" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/turret_protected/ai_upload) +"bCR" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai_upload) +"bCS" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai_upload) +"bCT" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai_upload) +"bCU" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/structure/cable/white{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai_upload) +"bCV" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/machinery/turretid{ + control_area = "AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai_upload_foyer) +"bCW" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "AI Upload Access"; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/warningline, +/area/turret_protected/ai_upload_foyer) +"bCX" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bCY" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bCZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bDa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bDb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue, +/area/bridge) +"bDc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/bridge) +"bDd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bDe" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/bridge) +"bDf" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 15 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/bridge) +"bDh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bDj" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge Hallway East"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/bridge) +"bDk" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bDl" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel/darkblue/corner{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/bridge) +"bDm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.7; + name = "bridge blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel/darkblue, +/area/bridge) +"bDn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/bridge) +"bDo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bDp" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bDq" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bDr" = ( +/obj/structure/table/wood, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/simulated/floor/carpet, +/area/bridge) +"bDs" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bDt" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bDu" = ( +/obj/machinery/computer/shuttle/mining, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTHEAST)"; + icon_state = "darkblue"; + dir = 5 + }, +/area/bridge) +"bDv" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/bridge) +"bDw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "interro blast"; + layer = 2.9; + name = "interrogation shutter" + }, +/turf/simulated/floor/plating, +/area/security/main) +"bDx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/main) +"bDy" = ( +/obj/machinery/button/door{ + id = "interro blast"; + name = "Interrogation Shutters Control"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "63" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/main) +"bDz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bDA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/main) +"bDB" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/main) +"bDC" = ( +/obj/structure/sign/goldenplaque{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bDD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bDE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bDF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bDG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/main) +"bDH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/warden) +"bDI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/warden) +"bDJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bDK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bDM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bDN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/warden) +"bDO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/warden) +"bDP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/brig) +"bDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bDR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bDS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bDT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/brig) +"bDU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bDV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/prison) +"bDW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bDX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/prison) +"bDY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bDZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/prison) +"bEa" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bEb" = ( +/obj/structure/bed, +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 0; + pixel_y = 25; + prison_radio = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Cell 2"; + dir = 4; + network = list("SS13","Prison") + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bEc" = ( +/obj/machinery/button/door{ + id = "permabolt2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bEd" = ( +/obj/structure/table, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bEe" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bEf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bEg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/status_display{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"bEh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Escape West"; + dir = 4; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (WEST)"; + icon_state = "escape"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bEi" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/secondary/exit) +"bEj" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bEk" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bEl" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bEm" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bEn" = ( +/obj/machinery/computer/arcade, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bEo" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/library) +"bEp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/simulated/floor/wood, +/area/library) +"bEq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bEr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bEs" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint) +"bEt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bEu" = ( +/obj/structure/closet/crate/rcd, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/storage/eva) +"bEv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTHWEST)"; + icon_state = "warning"; + dir = 9 + }, +/area/storage/eva) +"bEw" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + desc = "It watches you carefully."; + dir = 1; + icon_state = "camera"; + name = "motion-sensitive security camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTHEAST)"; + icon_state = "warning"; + dir = 5 + }, +/area/storage/eva) +"bEx" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/storage/eva) +"bEy" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHWEST)"; + icon_state = "warning"; + dir = 10 + }, +/area/storage/eva) +"bEz" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Kitchen" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/crew_quarters/kitchen) +"bEA" = ( +/turf/simulated/floor/plasteel/delivery, +/area/crew_quarters/kitchen) +"bEB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bEC" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room"; + dir = 8; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bED" = ( +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEI" = ( +/obj/effect/landmark/start{ + name = "Cook" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "28" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bEL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bEM" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bEN" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bEO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bEP" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bEQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bER" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bES" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/head/that, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bET" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/bar) +"bEU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bEV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bEW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bEX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bEY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bEZ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bFa" = ( +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (WEST)"; + icon_state = "warndarkcorners"; + dir = 8 + }, +/area/engine/gravity_generator) +"bFb" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/gravity_generator) +"bFc" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/gravity_generator) +"bFd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/gravity_generator) +"bFe" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (EAST)"; + icon_state = "warndarkcorners"; + dir = 4 + }, +/area/engine/gravity_generator) +"bFf" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bFg" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai_upload) +"bFh" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/turret_protected/ai_upload) +"bFi" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bFj" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bFk" = ( +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bFl" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bFm" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "closed"; + locked = 0; + name = "AI Upload"; + req_access_txt = "16" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bFn" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload_foyer) +"bFo" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai_upload_foyer) +"bFp" = ( +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "closed"; + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/turret_protected/ai_upload_foyer) +"bFq" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/hallway/primary/central) +"bFr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/turf/simulated/floor/goonplaque, +/area/hallway/primary/central) +"bFs" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bFt" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bFu" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bFv" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/bridge) +"bFw" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFx" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFy" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFz" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFA" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFB" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bFC" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFD" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bFE" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/bridge) +"bFF" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bFH" = ( +/obj/structure/table/wood, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/weapon/storage/fancy/donut_box, +/turf/simulated/floor/carpet, +/area/bridge) +"bFI" = ( +/obj/structure/table/wood, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/bridge) +"bFJ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bFK" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFL" = ( +/obj/structure/chair/comfy/black{ + dir = 4; + name = "Command Station" + }, +/obj/machinery/keycard_auth{ + pixel_x = 7; + pixel_y = 30 + }, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = -6; + pixel_y = 30; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "interro blast"; + name = "Interrogation Shutters Control"; + pixel_x = -6; + pixel_y = 39; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bFM" = ( +/obj/machinery/computer/communications, +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bFN" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/bridge) +"bFO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/main) +"bFP" = ( +/obj/structure/chair/office/dark{ + dir = 4; + name = "Interrogator" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bFQ" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bFR" = ( +/obj/structure/chair{ + dir = 8; + name = "Suspect" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bFS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/main) +"bFT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access = null; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/main) +"bFU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/main) +"bFV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bFW" = ( +/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"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey."; + name = "Officer Beepsky" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/main) +"bFX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bFY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/main) +"bFZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig Control"; + req_access_txt = "3" + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/warden) +"bGa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/warden) +"bGb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bGc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bGd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/warden) +"bGe" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bGf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/warden) +"bGg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/brig) +"bGh" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bGi" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bGj" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/brig) +"bGk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/brig) +"bGl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/prison) +"bGm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/prison) +"bGn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bGo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/prison) +"bGp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/prison) +"bGq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/prison) +"bGr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/prison) +"bGs" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/security/prison) +"bGt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell2"; + name = "cell blast door" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/table, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGA" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/camera{ + c_tag = "Prison Holding Area"; + dir = 8; + network = list("SS13","Prison"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bGB" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (WEST)"; + icon_state = "escape"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bGC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bGG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bGI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/chair/stool, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGK" = ( +/obj/machinery/computer/arcade, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bGL" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/library) +"bGM" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/simulated/floor/plasteel/cult, +/area/library) +"bGN" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/camera, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/cult, +/area/library) +"bGO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen/invisible, +/turf/simulated/floor/plasteel/cult, +/area/library) +"bGP" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bGQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bGR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"bGS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bGT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bGU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen Cold Room"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bGV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bGW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bGX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/chef_recipes, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bGY" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bGZ" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bHa" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/rollingpin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bHb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bHc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bHd" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bHe" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bHf" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bHg" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bHh" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bHi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bHj" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bHk" = ( +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 26; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bHl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bHm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bHn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/delivery, +/area/crew_quarters/bar) +"bHo" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/crew_quarters/bar) +"bHp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bHq" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/custom, +/obj/structure/cable/white{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai_upload) +"bHr" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHWEST)"; + icon_state = "warningline"; + dir = 9 + }, +/area/turret_protected/ai_upload) +"bHs" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/ai_upload) +"bHt" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/ai_upload) +"bHu" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/ai_upload) +"bHv" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/ai_upload) +"bHw" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/white, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/ai_upload_foyer) +"bHx" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/turret_protected/ai_upload_foyer) +"bHy" = ( +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bHz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bHA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bHB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bHC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue, +/area/bridge) +"bHD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/bridge) +"bHE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bHF" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge Hallway West"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/bridge) +"bHG" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/bridge) +"bHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/bridge) +"bHI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bHJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bHK" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/bridge) +"bHL" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/bridge) +"bHM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/bridge) +"bHN" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bHO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.7; + name = "bridge blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel/darkblue, +/area/bridge) +"bHP" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/area/bridge) +"bHQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bHR" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bHS" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/carpet, +/area/bridge) +"bHT" = ( +/obj/structure/table/wood, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bHU" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge) +"bHV" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/obj/item/weapon/storage/secure/briefcase, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bHW" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (SOUTHEAST)"; + icon_state = "darkblue"; + dir = 6 + }, +/area/bridge) +"bHX" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bHY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/main) +"bHZ" = ( +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/main) +"bIa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/main) +"bIc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/main) +"bId" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/security/main) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bIg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bIh" = ( +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bIi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/main) +"bIj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/security/warden) +"bIk" = ( +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/box/flashes, +/obj/structure/extinguisher_cabinet{ + desc = "A small wall mounted cabinet designed to hold a fire extinguisher. Excellent for extinguishing prisoners and or life."; + pixel_x = -27; + pixel_y = 0; + tag = "wsecjoke" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/warden) +"bIl" = ( +/obj/structure/table, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Brig Control"; + dir = 1; + network = list("SS13","Brig") + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bIm" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 0; + pixel_y = -32; + tag = "s" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bIn" = ( +/turf/simulated/floor/plasteel/darkred/side, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/warningline, +/area/security/warden) +"bIo" = ( +/turf/simulated/floor/plasteel/darkred/side, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/security/warden) +"bIp" = ( +/turf/simulated/floor/plasteel/darkred/side, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/security/warden) +"bIq" = ( +/obj/machinery/computer/prisoner, +/obj/machinery/requests_console{ + department = "Brig Control"; + departmentType = 5; + name = "Brig Control RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bIr" = ( +/obj/machinery/computer/security{ + network = list("SS13","Brig","Prison") + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/warden) +"bIs" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/warden) +"bIt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/brig) +"bIu" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/item/device/assembly/flash/handheld, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/brig) +"bIv" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/brig) +"bIw" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/restraints/handcuffs, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/brig) +"bIx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/brig) +"bIy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/security/prison) +"bIz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/prison) +"bIA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bIB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/prison) +"bIC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bID" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/prison) +"bIE" = ( +/obj/machinery/button/flasher{ + id = "PCell 2"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "permacell2"; + name = "Cell 2 Lockdown"; + pixel_x = 25; + pixel_y = 4; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bIF" = ( +/obj/structure/table, +/obj/machinery/flasher{ + id = "PCell 2"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/paper, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bIG" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bIH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bII" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bIJ" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bIK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bIL" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bIM" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/simulated/floor/wood, +/area/library) +"bIN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/library) +"bIO" = ( +/turf/simulated/floor/plasteel/cult, +/area/library) +"bIP" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/plasteel/cult, +/area/library) +"bIQ" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/turf/simulated/floor/plasteel/cult, +/area/library) +"bIR" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bIT" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/item/weapon/cigbutt/cigarbutt, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bIU" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bIV" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bIW" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fpmaint) +"bIX" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/kitchen) +"bIZ" = ( +/obj/structure/kitchenspike, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bJa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bJb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bJc" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bJd" = ( +/obj/machinery/food_cart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJe" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJf" = ( +/obj/effect/landmark/start{ + name = "Cook" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bJl" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bJm" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/lighter, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bJn" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bJo" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/wall, +/area/crew_quarters/bar) +"bJp" = ( +/obj/structure/closet/gmcloset, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bJq" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/camera{ + c_tag = "Bar Backroom"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bJr" = ( +/obj/machinery/light/small, +/obj/machinery/vending/cola, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bJs" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bJt" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint2) +"bJu" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/weapon/aiModule/core/freeformcore, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3.2 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/turret_protected/ai_upload) +"bJv" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "AI Upload"; + dir = 1; + network = list("Sat"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/turret_protected/ai_upload) +"bJw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/turf/simulated/floor/plating, +/area/turret_protected/ai_upload) +"bJx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/turret_protected/ai_upload) +"bJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/turret_protected/ai_upload_foyer) +"bJz" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bJA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bJB" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bJC" = ( +/turf/simulated/wall/r_wall, +/area/teleporter) +"bJD" = ( +/turf/simulated/wall, +/area/teleporter) +"bJE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/teleporter) +"bJF" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkblue, +/area/teleporter) +"bJG" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/captain) +"bJH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/crew_quarters/captain) +"bJI" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bJJ" = ( +/obj/structure/cable/blue, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Bridge West"; + dir = 4; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (NORTH)"; + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/bridge) +"bJK" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bJL" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/main) +"bJM" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bJN" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/main) +"bJO" = ( +/obj/machinery/syndicatebomb/training, +/obj/structure/table, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bJP" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/main) +"bJQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bJR" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/main) +"bJS" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bJT" = ( +/turf/simulated/wall/r_wall, +/area/security/armory) +"bJU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/security/armory) +"bJV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred, +/area/security/armory) +"bJW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/plating, +/area/security/armory) +"bJX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/darkred/corner, +/area/security/brig) +"bJY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/brig) +"bJZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/brig) +"bKa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/brig) +"bKb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (WEST)"; + icon_state = "darkredcorners"; + dir = 8 + }, +/area/security/brig) +"bKc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "sanitarium"; + name = "ward shutters" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/security/prison) +"bKd" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bKe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bKf" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bKg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bKh" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/docking_port/mobile/emergency{ + dir = 8 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 + }, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"bKi" = ( +/turf/simulated/floor/plasteel/escape{ + tag = "icon-escape (SOUTHWEST)"; + icon_state = "escape"; + dir = 10 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/hallway/secondary/exit) +"bKj" = ( +/turf/simulated/floor/plasteel/escape, +/area/hallway/secondary/exit) +"bKk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/escape, +/area/hallway/secondary/exit) +"bKl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/escape, +/area/hallway/secondary/exit) +"bKm" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel/escape, +/area/hallway/secondary/exit) +"bKn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + icon_state = "escape"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bKo" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bKp" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bKq" = ( +/obj/machinery/camera{ + c_tag = "Library"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"bKr" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/simulated/floor/plasteel/cult, +/area/library) +"bKs" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bKt" = ( +/turf/simulated/wall/r_wall/rust, +/area/gateway) +"bKu" = ( +/turf/simulated/wall/r_wall, +/area/gateway) +"bKv" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bKw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bKx" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bKy" = ( +/obj/machinery/gibber, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/kitchen) +"bKz" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKB" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/vegetable{ + desc = "Ah, leftovers. A slice of the most green pizza of all pizzas not containing green ingredients." + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKC" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen RC"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 1; + icon_state = "camera"; + network = list("SS13"); + tag = "" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKG" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bKH" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bKI" = ( +/obj/machinery/door/window/southright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Bar Door"; + req_access_txt = "0"; + req_one_access_txt = "25;28" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bKJ" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/barman_recipes, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = -31 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bKK" = ( +/obj/machinery/chem_dispenser/drinks{ + density = 0 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bKL" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + density = 0 + }, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Bar RC"; + pixel_x = 30; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bKM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bKN" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bKO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bKP" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bKQ" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bKR" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/asimov, +/obj/structure/cable/white{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/turret_protected/ai_upload) +"bKS" = ( +/obj/machinery/computer/upload/borg, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/white{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bKT" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (WEST)"; + icon_state = "darkblue"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/freeform, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/white{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bKU" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/structure/cable/white{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"bKV" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/space, +/area/space/nearstation) +"bKW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/space, +/area/space/nearstation) +"bKX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"bKY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/central) +"bKZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bLa" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bLb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bLc" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/teleporter) +"bLd" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/teleporter) +"bLe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bLf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/teleporter) +"bLg" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue (NORTH)"; + icon_state = "darkblue"; + dir = 1 + }, +/area/teleporter) +"bLh" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bLi" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/captain, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bLj" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bLk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/captain) +"bLl" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bLm" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/computer/communications, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bLn" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/stamp/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bLo" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bLp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bLq" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bLr" = ( +/obj/machinery/newscaster{ + hitstaken = 0; + pixel_x = -32; + pixel_y = 0; + tag = "w" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bLs" = ( +/turf/simulated/floor/plasteel/darkpurple/corner{ + tag = "icon-darkpurplecorners (WEST)"; + icon_state = "darkpurplecorners"; + dir = 8 + }, +/area/bridge) +"bLt" = ( +/obj/structure/chair{ + name = "Science Station" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bLu" = ( +/turf/simulated/floor/plasteel/darkpurple/corner, +/area/bridge) +"bLv" = ( +/turf/simulated/floor/plasteel/darkgreen/corner{ + tag = "icon-darkgreencorners (WEST)"; + icon_state = "darkgreencorners"; + dir = 8 + }, +/area/bridge) +"bLw" = ( +/obj/structure/chair{ + name = "Medical Station" + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bLx" = ( +/turf/simulated/floor/plasteel/darkgreen/corner, +/area/bridge) +"bLy" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkblue/side{ + tag = "icon-darkblue (EAST)"; + icon_state = "darkblue"; + dir = 4 + }, +/area/bridge) +"bLz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/security/main) +"bLA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/main) +"bLB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred, +/area/security/main) +"bLC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/security/main) +"bLD" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/firingpins{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/firingpins, +/obj/item/weapon/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/lockbox/loyalty, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bLE" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/storage/box/rubbershot, +/obj/item/weapon/storage/box/rubbershot, +/obj/item/weapon/storage/box/rubbershot, +/obj/item/weapon/storage/box/rubbershot, +/obj/item/weapon/storage/box/rubbershot, +/obj/item/weapon/storage/box/rubbershot, +/obj/item/weapon/gun/projectile/shotgun/riot{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/gun/projectile/shotgun/riot, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bLF" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/ionrifle{ + pin = /obj/item/device/firing_pin + }, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/key/security, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bLG" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/obj/structure/closet/l3closet/security, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/security/armory) +"bLH" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/security/armory) +"bLI" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/obj/structure/closet/bombclosetsecurity, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/security/armory) +"bLJ" = ( +/obj/machinery/flasher/portable, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bLK" = ( +/obj/machinery/flasher/portable, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Armory"; + network = list("SS13","Brig") + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bLL" = ( +/turf/simulated/wall/r_wall, +/area/security/hos) +"bLM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/turf/simulated/floor/plating, +/area/security/hos) +"bLN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/security/hos) +"bLO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + glass = 0; + name = "Head of Security"; + opacity = 1; + req_access_txt = "58" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/hos) +"bLP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/security/hos) +"bLQ" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (NORTHWEST)"; + icon_state = "whitered"; + dir = 9 + }, +/area/security/prison) +"bLR" = ( +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (NORTH)"; + icon_state = "whitered"; + dir = 1 + }, +/area/security/prison) +"bLS" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (NORTHEAST)"; + icon_state = "whitered"; + dir = 5 + }, +/area/security/prison) +"bLT" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bLU" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bLV" = ( +/obj/structure/bed, +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 0; + pixel_y = 25; + prison_radio = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Cell 1"; + dir = 4; + network = list("SS13","Prison") + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bLW" = ( +/obj/machinery/button/door{ + id = "permabolt1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bLX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bLY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bLZ" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bMa" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swallc2"; + dir = 2 + }, +/area/shuttle/escape) +"bMb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bMc" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/hallway/secondary/exit) +"bMd" = ( +/turf/simulated/floor/plasteel/escape/corner{ + tag = "icon-escapecorner (NORTH)"; + icon_state = "escapecorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bMe" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bMf" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bMg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/obj/machinery/camera{ + c_tag = "Escape East 2"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/secondary/exit) +"bMh" = ( +/obj/structure/bookcase/random/adult, +/turf/simulated/floor/wood, +/area/library) +"bMi" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/library) +"bMj" = ( +/obj/machinery/newscaster{ + pixel_y = 32; + tag = "n" + }, +/turf/simulated/floor/wood, +/area/library) +"bMk" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/library) +"bMl" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/library) +"bMm" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bMn" = ( +/obj/structure/computerframe, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bMo" = ( +/turf/simulated/floor/plasteel/darkwarning/corner, +/area/gateway) +"bMp" = ( +/turf/simulated/floor/plasteel/darkwarning, +/area/gateway) +"bMq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Gateway"; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/darkwarning, +/area/gateway) +"bMr" = ( +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (NORTH)"; + icon_state = "warndarkcorners"; + dir = 1 + }, +/area/gateway) +"bMs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bMt" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bMu" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/crew_quarters/bar) +"bMv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Counter Access"; + req_access_txt = "25" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"bMw" = ( +/obj/structure/bed/abductor{ + desc = "Seems almost like a bed, but not quite." + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"bMx" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"bMy" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bMz" = ( +/turf/simulated/wall, +/area/storage/tools) +"bMA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/storage/tools) +"bMB" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bMC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bMD" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/teleporter) +"bME" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/teleporter) +"bMF" = ( +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bMG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bMH" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bMI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bMJ" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bMK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bML" = ( +/turf/simulated/wall, +/area/crew_quarters/captain) +"bMM" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bMN" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bMO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bMP" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bMQ" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bMR" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bMS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bMT" = ( +/obj/machinery/computer/mecha, +/turf/simulated/floor/plasteel/darkpurple/side{ + tag = "icon-darkpurple (SOUTHWEST)"; + icon_state = "darkpurple"; + dir = 10 + }, +/area/bridge) +"bMU" = ( +/obj/machinery/computer/rdservercontrol, +/turf/simulated/floor/plasteel/darkpurple/side, +/area/bridge) +"bMV" = ( +/obj/machinery/computer/aifixer, +/turf/simulated/floor/plasteel/darkpurple/side{ + tag = "icon-darkpurple (SOUTHEAST)"; + icon_state = "darkpurple"; + dir = 6 + }, +/area/bridge) +"bMW" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bMX" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bMY" = ( +/obj/machinery/computer/med_data, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkgreen (SOUTHWEST)"; + icon_state = "darkgreen"; + dir = 10 + }, +/area/bridge) +"bMZ" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel/darkgreen/side, +/area/bridge) +"bNa" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkgreen (SOUTHEAST)"; + icon_state = "darkgreen"; + dir = 6 + }, +/area/bridge) +"bNb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bNc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (EAST)"; + icon_state = "darkbluecorners"; + dir = 4 + }, +/area/bridge) +"bNd" = ( +/turf/simulated/floor/plasteel/darkwarning, +/area/security/main) +"bNe" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/main) +"bNf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/computer/security, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/main) +"bNg" = ( +/obj/structure/filingcabinet, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/main) +"bNh" = ( +/obj/machinery/vending/security, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/main) +"bNi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Office"; + network = list("SS13","Brig") + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/main) +"bNj" = ( +/obj/vehicle/secway, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bNk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/main) +"bNl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/main) +"bNm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/main) +"bNn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/armory) +"bNo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bNp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bNq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bNr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bNs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bNt" = ( +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bNu" = ( +/obj/machinery/disposal/bin, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30; + pixel_y = 0 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bNv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/hos) +"bNw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/hos) +"bNx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/hos) +"bNy" = ( +/obj/structure/bed/dogbed{ + desc = "Pugley III's dog bed. Quite comfy."; + name = "Pugley's bed" + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24; + tag = "ne" + }, +/mob/living/simple_animal/pet/dog/pug{ + name = "\improper Pugley III" + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bNz" = ( +/turf/simulated/floor/plasteel/white, +/area/security/prison) +"bNA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/security/prison) +"bNB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitered/corner, +/area/security/prison) +"bNC" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "sanitarium"; + name = "ward shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bND" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bNE" = ( +/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"; + pixel_y = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/prison) +"bNF" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/security/prison) +"bNG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell1"; + name = "cell blast door" + }, +/obj/machinery/door/airlock/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bNH" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bNI" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel/shuttle/red, +/area/shuttle/escape) +"bNJ" = ( +/turf/simulated/floor/plasteel/shuttle/red, +/area/shuttle/escape) +"bNK" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/simulated/floor/plating, +/area/shuttle/escape) +"bNL" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space/nearstation) +"bNM" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Containment Southeast"; + dir = 9; + icon_state = "camera"; + network = list("Singularity"); + tag = "icon-camera (NORTHWEST)" + }, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"bNN" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHWEST)"; + icon_state = "warningline"; + dir = 9 + }, +/area/hallway/secondary/exit) +"bNO" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bNP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bNQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bNR" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/hallway/secondary/exit) +"bNS" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (WEST)"; + icon_state = "redcorner"; + dir = 8 + }, +/area/hallway/secondary/exit) +"bNT" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bNU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"bNV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/library) +"bNW" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/library) +"bNX" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/wood, +/area/library) +"bNY" = ( +/obj/machinery/libraryscanner, +/turf/simulated/floor/wood, +/area/library) +"bNZ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOa" = ( +/obj/structure/grille, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOb" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOc" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/gateway) +"bOd" = ( +/obj/machinery/gateway{ + tag = "icon-off (NORTHWEST)"; + icon_state = "off"; + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/gateway) +"bOe" = ( +/obj/machinery/gateway{ + tag = "icon-off (NORTH)"; + icon_state = "off"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"bOf" = ( +/obj/machinery/gateway{ + tag = "icon-off (NORTHEAST)"; + icon_state = "off"; + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/gateway) +"bOg" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/gateway) +"bOh" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/wardrobe/botanist, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bOm" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"bOn" = ( +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fpmaint) +"bOo" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fpmaint) +"bOp" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bOq" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bOr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bOs" = ( +/obj/machinery/computer/slot_machine, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOt" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOw" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOx" = ( +/obj/structure/chair/comfy/beige, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOy" = ( +/obj/structure/chair/comfy/brown, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bOz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bOA" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bOB" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bOC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (NORTH)"; + icon_state = "blackcorner"; + dir = 1 + }, +/area/storage/tools) +"bOD" = ( +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bOE" = ( +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bOF" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (EAST)"; + icon_state = "blackcorner"; + dir = 4 + }, +/area/storage/tools) +"bOG" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/computer/teleporter, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bOH" = ( +/obj/structure/table, +/obj/item/device/radio/beacon, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bOI" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bOJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bOK" = ( +/obj/structure/table/wood, +/obj/item/weapon/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/obj/item/weapon/storage/fancy/cigarettes/cigars, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/lighter, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bOL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bOM" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bON" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bOO" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bOP" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bOQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bOR" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/displaycase/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/bridge) +"bOT" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bOU" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bOV" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bOW" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bOX" = ( +/obj/structure/cable/blue{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkblue/side, +/area/bridge) +"bOY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Bridge South"; + dir = 1; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/bridge) +"bOZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/bridge) +"bPa" = ( +/obj/structure/plasticflaps/mining{ + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bPb" = ( +/obj/structure/plasticflaps/mining{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Security" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/main) +"bPc" = ( +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/main) +"bPd" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/security/main) +"bPe" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bPf" = ( +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bPg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bPh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bPi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Armory Desk"; + req_access_txt = "3" + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/armory) +"bPj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bPk" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun/advtaser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bPl" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bPm" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bPn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bPo" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bPp" = ( +/obj/structure/filingcabinet, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bPq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (EAST)"; + icon_state = "darkredcorners"; + dir = 4 + }, +/area/security/hos) +"bPr" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/hos) +"bPs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/corner{ + tag = "icon-darkredcorners (NORTH)"; + icon_state = "darkredcorners"; + dir = 1 + }, +/area/security/hos) +"bPt" = ( +/turf/simulated/floor/carpet, +/area/security/hos) +"bPu" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "sanitarium"; + name = "ward shutters" + }, +/turf/simulated/floor/plating, +/area/security/hos) +"bPv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/button/door{ + id = "sanitarium"; + name = "Ward Shutters Control"; + pixel_x = -26; + pixel_y = 26; + req_access_txt = "2" + }, +/turf/simulated/floor/plasteel/white, +/area/security/prison) +"bPw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/white, +/area/security/prison) +"bPx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (EAST)"; + icon_state = "whitered"; + dir = 4 + }, +/area/security/prison) +"bPy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + glass = 0; + name = "Insanity Ward"; + opacity = 1; + req_access_txt = "2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bPz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bPA" = ( +/obj/machinery/button/flasher{ + id = "PCell 1"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "permacell1"; + name = "Cell 1 Lockdown"; + pixel_x = 25; + pixel_y = 4; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bPB" = ( +/obj/structure/table, +/obj/machinery/flasher{ + id = "PCell 1"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/paper, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bPC" = ( +/obj/machinery/washing_machine, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/security/prison) +"bPD" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/security/prison) +"bPE" = ( +/obj/machinery/washing_machine, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "barber" + }, +/area/security/prison) +"bPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/security/prison) +"bPG" = ( +/obj/machinery/door/airlock/glass{ + name = "Emergency Shuttle Brig"; + req_access_txt = "2" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bPH" = ( +/obj/machinery/flasher{ + id = "shuttle_flasher"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/machinery/button/flasher{ + id = "shuttle_flasher"; + pixel_x = 24; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/shuttle/red, +/area/shuttle/escape) +"bPI" = ( +/turf/simulated/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"bPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/hallway/secondary/exit) +"bPK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/black, +/area/hallway/secondary/exit) +"bPL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/hallway/secondary/exit) +"bPM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/hallway/secondary/exit) +"bPN" = ( +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bPO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 0; + icon_state = "closed"; + id_tag = null; + locked = 0; + name = "Holding Area"; + req_access = null; + req_access_txt = "2" + }, +/turf/simulated/floor/plasteel/darkred, +/area/hallway/secondary/exit) +"bPP" = ( +/turf/simulated/floor/plasteel/red/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"bPQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bPR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/library) +"bPS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"bPT" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/simulated/floor/wood, +/area/library) +"bPU" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/library) +"bPV" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/library) +"bPW" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/turf/simulated/floor/wood, +/area/library) +"bPX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/gateway) +"bPY" = ( +/obj/machinery/gateway{ + tag = "icon-off (WEST)"; + icon_state = "off"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"bPZ" = ( +/obj/machinery/gateway/centerstation, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"bQa" = ( +/obj/machinery/gateway{ + tag = "icon-off (EAST)"; + icon_state = "off"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"bQb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/gateway) +"bQc" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bQd" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bQe" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bQf" = ( +/obj/machinery/computer/arcade, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bQg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bQh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bQi" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQl" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQm" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQn" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQo" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bQp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bQq" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bQr" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bQs" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bQt" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/storage/tools) +"bQu" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bQw" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airalarm, +/obj/item/weapon/electronics/airlock, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bQx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bQy" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_y = 6 + }, +/obj/item/weapon/stock_parts/cell, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bQz" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bQA" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bQB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning/corner, +/area/hallway/primary/central) +"bQC" = ( +/obj/machinery/teleport/station, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/teleporter) +"bQD" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/teleporter) +"bQE" = ( +/obj/machinery/bluespace_beacon, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bQF" = ( +/obj/structure/table, +/obj/item/device/gps, +/obj/item/weapon/hand_tele, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bQG" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Teleporter"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bQH" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom"; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/captain) +"bQI" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + tag = "w" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bQJ" = ( +/obj/machinery/computer/card, +/obj/item/weapon/card/id/captains_spare, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bQK" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/lockbox/medal, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bQL" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bQM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/captain) +"bQN" = ( +/obj/item/weapon/pinpointer, +/obj/structure/table/wood, +/obj/item/weapon/disk/nuclear, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bQO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bQP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/machinery/ai_status_display{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/bridge) +"bQQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/blue, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/machinery/status_display{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/bridge) +"bQR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bQS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plating, +/area/security/main) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/security/main) +"bQU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (EAST)"; + icon_state = "warndarkcorners"; + dir = 4 + }, +/area/security/main) +"bQV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bQW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bQX" = ( +/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"; + pixel_x = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bQY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bQZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bRa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/security/main) +"bRb" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory" + }, +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/armory) +"bRc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/security/armory) +"bRd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bRe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bRf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bRg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0; + tag = "" + }, +/turf/simulated/floor/plasteel/black, +/area/security/armory) +"bRh" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/table/wood, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bRi" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/simulated/floor/carpet, +/area/security/hos) +"bRj" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bRk" = ( +/obj/structure/table/wood, +/obj/item/weapon/phone{ + desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/security/hos) +"bRl" = ( +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 2; + icon_state = "rightsecure"; + name = "Head of Security's Desk"; + req_access_txt = "58" + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bRm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/security/prison) +"bRn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitered/corner{ + tag = "icon-whiteredcorner (EAST)"; + icon_state = "whiteredcorner"; + dir = 4 + }, +/area/security/prison) +"bRo" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "sanitarium"; + name = "ward shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bRp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bRq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/security/prison) +"bRr" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Unisex Showers"; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel/showroomfloor, +/area/security/prison) +"bRs" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/prison) +"bRt" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/crowbar, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bRu" = ( +/obj/machinery/flasher{ + id = "cockpit_flasher"; + pixel_x = -6; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bRv" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/shuttle/red, +/area/shuttle/escape) +"bRw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"bRx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/hallway/secondary/exit) +"bRy" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/darkred/side, +/area/hallway/secondary/exit) +"bRz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Escape Prisoner Storage"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/hallway/secondary/exit) +"bRA" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bRB" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (NORTH)"; + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bRC" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bRD" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_evac (NORTH)" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/secondary/exit) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/secondary/exit) +"bRF" = ( +/obj/structure/chair/comfy/black, +/turf/simulated/floor/wood, +/area/library) +"bRG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRH" = ( +/obj/machinery/gateway{ + density = 0; + dir = 10; + icon_state = "off"; + tag = "icon-off (SOUTHWEST)" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/gateway) +"bRI" = ( +/obj/machinery/gateway{ + density = 0 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"bRJ" = ( +/obj/machinery/gateway{ + density = 0; + dir = 6; + icon_state = "off"; + tag = "icon-off (SOUTHEAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/gateway) +"bRK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + icon_state = "intact"; + dir = 5 + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRM" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRN" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bRQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bRR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bRS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bRT" = ( +/obj/structure/chair/comfy/brown{ + tag = "icon-comfychair (EAST)"; + icon_state = "comfychair"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bRU" = ( +/obj/structure/table/wood/poker, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bRV" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bRW" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/item/weapon/cigbutt, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bRX" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bRY" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (WEST)"; + icon_state = "blackcorner"; + dir = 8 + }, +/area/storage/tools) +"bRZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bSa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bSb" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/black/corner, +/area/storage/tools) +"bSc" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bSd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"bSe" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bSf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bSg" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bSh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"bSi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bSj" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bSk" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bSl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/hallway/primary/central) +"bSm" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleporter"; + name = "Teleporter Access Shutter" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (NORTHWEST)"; + icon_state = "vault"; + dir = 9 + }, +/area/teleporter) +"bSn" = ( +/obj/machinery/teleport/hub, +/obj/machinery/button/door{ + id = "teleporter"; + name = "Teleporter Shutter Control"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "17" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/teleporter) +"bSo" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/teleporter) +"bSp" = ( +/obj/structure/cable/blue{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/teleporter) +"bSq" = ( +/obj/structure/cable/blue{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bSr" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bSs" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/captain) +"bSt" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/captain) +"bSu" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/item/weapon/soap/deluxe, +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/captain) +"bSv" = ( +/obj/machinery/door/window{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Captain's Desk Door"; + req_access_txt = "20" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bSw" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/photo_album, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bSx" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_tele, +/obj/item/weapon/melee/chainofcommand, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bSy" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bSz" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 31 + }, +/obj/item/weapon/storage/fancy/donut_box, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bSA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bSB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/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/maintenance/fore) +"bSC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/main) +"bSD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/simulated/floor/plasteel/black, +/area/security/main) +"bSE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security/sec, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/main) +"bSF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/sec, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/security/sec, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/sec, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/obj/structure/closet/secure_closet/security/sec, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark{ + name = "secequipment" + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark{ + name = "secequipment" + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSL" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/effect/landmark{ + name = "secequipment" + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSM" = ( +/obj/effect/landmark{ + name = "secequipment" + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/main) +"bSN" = ( +/obj/effect/landmark{ + name = "secequipment" + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/main) +"bSO" = ( +/obj/machinery/suit_storage_unit/security, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bSP" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bSQ" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bSR" = ( +/obj/structure/rack, +/obj/item/weapon/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bSS" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/closet/secure_closet/lethalshots, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bST" = ( +/obj/item/weapon/grenade/barrier, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/armory) +"bSU" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/stamp/hos, +/obj/item/weapon/cartridge/detective, +/obj/item/weapon/storage/secure/safe/HoS{ + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4; + network = list("SS13"); + start_active = 1 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bSV" = ( +/obj/machinery/button/door{ + id = "sanitarium"; + name = "Ward Shutters Control"; + pixel_x = -38; + pixel_y = 29; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 39 + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = -38; + pixel_y = 39 + }, +/obj/machinery/keycard_auth{ + pixel_x = -25; + pixel_y = 29 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bSW" = ( +/obj/structure/chair/comfy/black{ + tag = "icon-comfychair (NORTH)"; + icon_state = "comfychair"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bSX" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bSY" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (SOUTHWEST)"; + icon_state = "whitered"; + dir = 10 + }, +/area/security/prison) +"bSZ" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel/whitered/side, +/area/security/prison) +"bTa" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (SOUTHEAST)"; + icon_state = "whitered"; + dir = 6 + }, +/area/security/prison) +"bTb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Wing South"; + dir = 4; + network = list("SS13","Brig") + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/prison) +"bTc" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/hug/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/prison) +"bTd" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/prison) +"bTe" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/prison) +"bTf" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom"; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/prison) +"bTg" = ( +/turf/simulated/floor/plasteel/showroomfloor, +/area/security/prison) +"bTh" = ( +/obj/item/weapon/soap, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/prison) +"bTi" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/escape) +"bTj" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/escape) +"bTk" = ( +/obj/machinery/status_display, +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/escape) +"bTl" = ( +/obj/machinery/door/airlock/glass{ + name = "Emergency Shuttle Cockpit"; + req_access_txt = "19" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bTm" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/escape) +"bTn" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/library) +"bTo" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/library) +"bTp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"bTq" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/library) +"bTr" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/library) +"bTs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"bTt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/wood, +/area/library) +"bTu" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"bTv" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/wood, +/area/library) +"bTw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bTx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bTy" = ( +/obj/structure/sign/biohazard{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (WEST)"; + icon_state = "warndarkcorners"; + dir = 8 + }, +/area/gateway) +"bTz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/gateway) +"bTA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/gateway) +"bTB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/gateway) +"bTC" = ( +/obj/structure/sign/biohazard{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (EAST)"; + icon_state = "warndarkcorners"; + dir = 4 + }, +/area/gateway) +"bTD" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fpmaint) +"bTE" = ( +/turf/simulated/wall, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bTF" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bTG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bTI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bTJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Bar South 1"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bTK" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bTL" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bTM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTN" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/deck, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTO" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTP" = ( +/obj/machinery/camera{ + c_tag = "Bar South 2"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTR" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTS" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTT" = ( +/obj/structure/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"bTU" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bTV" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bTW" = ( +/obj/item/weapon/vending_refill/boozeomat, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bTX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/storage/tools) +"bTY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/turf/simulated/floor/plasteel, +/area/storage/tools) +"bTZ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/storage/tools) +"bUa" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bUb" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bUc" = ( +/obj/structure/rack, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/obj/item/weapon/pen/invisible, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"bUd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway South 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/warning/corner{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/central) +"bUe" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/oxygen/yellow, +/obj/item/weapon/tank/internals/oxygen/red, +/obj/item/weapon/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/teleporter) +"bUf" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/teleporter) +"bUg" = ( +/obj/structure/cable/blue, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/teleporter) +"bUh" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/teleporter) +"bUi" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/teleporter) +"bUj" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bUk" = ( +/obj/structure/cable/blue{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bUl" = ( +/obj/structure/chair/stool, +/obj/structure/cable/blue{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bUm" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bUn" = ( +/turf/simulated/wall, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bUo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bUp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bUq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bUr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/suit_storage_unit/hos, +/turf/simulated/floor/carpet, +/area/security/hos) +"bUs" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bUt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/computer/security{ + network = list("SS13","Brig","Prison") + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bUu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/computer/secure_data, +/turf/simulated/floor/carpet, +/area/security/hos) +"bUv" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/weapon/bedsheet/hos, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac, +/obj/machinery/newscaster/security_unit{ + pixel_x = 32; + pixel_y = 0; + tag = "e" + }, +/obj/item/weapon/storage/secure/briefcase{ + pixel_x = -2 + }, +/turf/simulated/floor/carpet, +/area/security/hos) +"bUw" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three"; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bUx" = ( +/obj/structure/sign/pods, +/turf/simulated/wall, +/area/security/prison) +"bUy" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bUz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bUA" = ( +/obj/machinery/button/flasher{ + id = "cockpit_flasher"; + pixel_x = -6; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bUB" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bUC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bUD" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bUE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/chapel/main) +"bUF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHWEST)"; + icon_state = "chapel"; + dir = 9 + }, +/area/chapel/main) +"bUG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHEAST)"; + icon_state = "chapel"; + dir = 5 + }, +/area/chapel/main) +"bUH" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHWEST)"; + icon_state = "chapel"; + dir = 9 + }, +/area/chapel/main) +"bUI" = ( +/turf/simulated/wall, +/area/chapel/main) +"bUJ" = ( +/obj/item/trash/can, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Escape Waiting Area" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Escape Waiting Area" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/glass{ + name = "Escape Waiting Area" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint) +"bUO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/engine, +/area/gateway) +"bUP" = ( +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/engine, +/area/gateway) +"bUQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/engine, +/area/gateway) +"bUR" = ( +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/engine, +/area/gateway) +"bUS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUT" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUU" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUW" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bUY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/bar, +/area/crew_quarters/bar) +"bUZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVb" = ( +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVd" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVe" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVf" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVg" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable/blue{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/turf/simulated/floor/plasteel/darkblue, +/area/teleporter) +"bVl" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVm" = ( +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVn" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVo" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVp" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVq" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bVs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bVt" = ( +/turf/simulated/wall, +/area/security/armory) +"bVu" = ( +/turf/space{ + desc = "An excellent spot for bombs." + }, +/area/space) +"bVv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/simulated/floor/plating, +/area/security/hos) +"bVw" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bVx" = ( +/turf/simulated/floor/plating, +/area/security/prison) +"bVy" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_3) +"bVz" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"bVA" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_3) +"bVB" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bVC" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bVD" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bVE" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHWEST)"; + icon_state = "chapel"; + dir = 10 + }, +/area/chapel/main) +"bVF" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHEAST)"; + icon_state = "chapel"; + dir = 6 + }, +/area/chapel/main) +"bVG" = ( +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHWEST)"; + icon_state = "chapel"; + dir = 10 + }, +/area/chapel/main) +"bVH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHEAST)"; + icon_state = "chapel"; + dir = 6 + }, +/area/chapel/main) +"bVI" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVJ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVK" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVL" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_med (NORTH)" + }, +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/science{ + dir = 4; + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_sci (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVR" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Hallway West 2"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVW" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/warning/corner{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bVZ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (NORTH)"; + icon_state = "warning"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 4 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32; + tag = "n" + }, +/obj/machinery/camera{ + c_tag = "Aft Port Hallway"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWl" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWm" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Hallway East 2"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWq" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bWr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway South 3"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWu" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWv" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = 32; + tag = "icon-direction_med (NORTH)" + }, +/obj/structure/sign/directions/science{ + dir = 8; + icon_state = "direction_sci"; + pixel_x = -32; + pixel_y = 24; + tag = "icon-direction_sci (WEST)" + }, +/obj/structure/sign/directions/evac{ + dir = 1; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = 40; + tag = "icon-direction_evac (NORTH)" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWw" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_sec (NORTH)" + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + icon_state = "direction_eng"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_eng (NORTH)" + }, +/obj/structure/sign/directions{ + dir = 4; + icon_state = "direction_supply"; + name = "cargo bay"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_supply" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = 30; + tag = "n" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway South 2"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bWB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bWC" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bWD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bWE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWI" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWJ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWL" = ( +/obj/machinery/airalarm{ + pixel_x = 32; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWM" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWO" = ( +/obj/structure/cable/green{ + tag = "icon-1-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/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bWQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Escape Pod 3"; + dir = 4; + network = list("SS13","Brig") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"bWR" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod3"; + name = "escape pod 3" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"bWS" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = 6; + pixel_y = -26 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"bWT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_asteroid3"; + shuttleId = "pod3" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"bWU" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_3) +"bWV" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_asteroid3"; + name = "asteroid" + }, +/turf/space, +/area/space) +"bWW" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/turf/simulated/wall/shuttle/interior{ + icon_state = "swall_f10" + }, +/area/shuttle/escape) +"bWX" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/crowbar, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bWY" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bWZ" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/escape) +"bXa" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/escape) +"bXb" = ( +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/turf/simulated/wall/shuttle/interior{ + icon_state = "swall_f6" + }, +/area/shuttle/escape) +"bXc" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHWEST)"; + icon_state = "chapel"; + dir = 9 + }, +/area/chapel/main) +"bXd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHEAST)"; + icon_state = "chapel"; + dir = 5 + }, +/area/chapel/main) +"bXe" = ( +/obj/structure/closet/body_bag, +/obj/item/weapon/tank/internals/plasmaman/belt/full{ + name = "plasma tank" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXf" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXg" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXi" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXj" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXk" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 17 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXl" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXm" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXn" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXp" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 16 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXq" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXr" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXs" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXt" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXu" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXv" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXw" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXx" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXy" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 22 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXA" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 19 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bXB" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bXC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bXD" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bXE" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bXF" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bXG" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bXH" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bXI" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bXJ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bXK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + desc = ""; + icon_state = "L13"; + name = "floor" + }, +/area/hallway/primary/central) +"bXL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bXM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXP" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXQ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXR" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXS" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXU" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXV" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + sortType = 1; + tag = "icon-pipe-j1s (NORTH)" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + glass = 1; + name = "maintenance access"; + opacity = 0; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bXZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYc" = ( +/obj/machinery/power/apc{ + auto_name = 0; + dir = 1; + name = "Aft Starboard Hallway APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Armory Aft Hallway"; + network = list("SS13","Brig") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bYg" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/security/prison) +"bYh" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_3) +"bYi" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_3) +"bYj" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHWEST)"; + icon_state = "chapel"; + dir = 10 + }, +/area/chapel/main) +"bYk" = ( +/obj/item/clothing/suit/radiation, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYl" = ( +/obj/structure/sign/directions{ + dir = 4; + icon_state = "direction_supply"; + name = "cargo bay"; + pixel_y = -24; + tag = "icon-direction_supply" + }, +/obj/structure/sign/directions{ + dir = 4; + icon_state = "direction_bridge"; + name = "bridge"; + pixel_y = -32; + tag = "icon-direction_bridge" + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + icon_state = "direction_eng"; + pixel_x = 0; + pixel_y = -40; + tag = "icon-direction_eng (NORTH)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Hallway West 3"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + auto_name = 0; + dir = 2; + name = "Aft Port Hallway APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYx" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning/corner, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYE" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Hallway West 1"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYI" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/neutral/corner, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYK" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYL" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYP" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Hallway East 1"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/corner, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (WEST)"; + icon_state = "purplecorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/purple/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYV" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/purple/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYY" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (WEST)"; + icon_state = "purplecorner"; + dir = 8 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bYZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bZa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bZb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bZc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"bZd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"bZe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"bZf" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"bZg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"bZi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"bZj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"bZk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown/corner, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown/corner, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel/brown/corner, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Aft Starboard Hallway West"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/brown/corner, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZs" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/brown, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZu" = ( +/obj/machinery/door/firedoor, +/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/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZw" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZB" = ( +/obj/machinery/camera{ + c_tag = "Aft Starboard Hallway East"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZD" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZE" = ( +/turf/simulated/floor/plasteel, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZG" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"bZH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = -25 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"bZI" = ( +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"bZJ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"bZK" = ( +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/obj/machinery/camera{ + c_tag = "Chapel Funeral Parlor"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"bZL" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/chapel/main) +"bZM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/carpet, +/area/chapel/main) +"bZN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/chapel/main) +"bZO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"bZP" = ( +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bZQ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (NORTHEAST)"; + icon_state = "vault"; + dir = 5 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"bZR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + icon_state = "closed"; + lockdownbyai = 0; + locked = 0; + name = "Gateway Storage"; + req_access_txt = "62" + }, +/turf/simulated/floor/plasteel/darkblue, +/area/gateway) +"bZS" = ( +/turf/simulated/floor/plasteel/darkblue, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/gateway) +"bZT" = ( +/turf/simulated/floor/plasteel/darkblue, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/gateway) +"bZU" = ( +/turf/simulated/floor/plasteel/darkblue, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/gateway) +"bZV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"bZW" = ( +/turf/simulated/wall, +/area/storage/primary) +"bZX" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/storage/primary) +"bZY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral, +/area/storage/primary) +"bZZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral, +/area/storage/primary) +"caa" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep) +"cab" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cac" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep) +"cad" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cae" = ( +/turf/simulated/wall, +/area/janitor) +"caf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/noslip, +/area/janitor) +"cag" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall, +/area/janitor) +"cah" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cai" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"caj" = ( +/turf/simulated/floor/plasteel/purple/side, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"cak" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"cal" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/toxins/lab) +"cam" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"can" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/purple, +/area/medical/research{ + name = "Research Division" + }) +"cao" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"cap" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/assembly/robotics) +"caq" = ( +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (NORTH)"; + icon_state = "loadingarea"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"car" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 26; + pixel_y = -24; + req_one_access_txt = "29" + }, +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (NORTH)"; + icon_state = "loadingarea"; + dir = 1 + }, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"cas" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/hallway/primary/aft{ + name = "Aft Port Hallway" + }) +"cat" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cau" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"cav" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"caw" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"cax" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"cay" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"caz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"caA" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"caB" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"caC" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/warning, +/area/hallway/primary/central) +"caD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"caE" = ( +/turf/simulated/wall, +/area/quartermaster/office) +"caF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/quartermaster/office) +"caG" = ( +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/office) +"caH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"caI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/office) +"caJ" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"caK" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"caL" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (NORTH)"; + icon_state = "browncorner"; + dir = 1 + }, +/area/quartermaster/office) +"caM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (EAST)"; + icon_state = "browncorner"; + dir = 4 + }, +/area/quartermaster/office) +"caN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"caO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"caP" = ( +/turf/simulated/wall/rust, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"caQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"caR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/hallway/primary/starboard{ + name = "Aft Starboard Hallway" + }) +"caS" = ( +/turf/simulated/wall, +/area/maintenance/disposal) +"caT" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/simulated/floor/plating, +/area/chapel/main) +"caU" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/chapel/main) +"caV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/chapel/main) +"caW" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "chapelgun" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Mass Driver Door"; + req_access_txt = "22" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/chapel/main) +"caX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"caY" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"caZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cba" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cbb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Funeral Parlour"; + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cbc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cbd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cbe" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cbf" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cbg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/carpet, +/area/chapel/main) +"cbh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/chapel/main) +"cbi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"cbj" = ( +/turf/simulated/wall, +/area/storage/emergency2) +"cbk" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage"; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cbl" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cbm" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cbn" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cbo" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"cbp" = ( +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/gateway) +"cbq" = ( +/obj/machinery/button/door{ + id = "stationawaygate"; + name = "Gateway Access Shutter Control"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/gateway) +"cbr" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/gateway) +"cbs" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cbt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/storage/primary) +"cbu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cbv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/storage/primary) +"cbw" = ( +/obj/structure/table, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/crowbar, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cbx" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cby" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/storage/primary) +"cbz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cbA" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/weapon/crowbar, +/obj/item/weapon/weldingtool, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/storage/primary) +"cbB" = ( +/obj/structure/bed, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/crew_quarters/sleep) +"cbC" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cbD" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cbE" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cbF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/sleep) +"cbG" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/crew_quarters/sleep) +"cbH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cbI" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cbJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cbK" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/crew_quarters/sleep) +"cbL" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"cbM" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"cbN" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"cbO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/noslip, +/area/janitor) +"cbP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/noslip, +/area/janitor) +"cbQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + network = list("SS13") + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/turf/simulated/floor/noslip, +/area/janitor) +"cbR" = ( +/obj/structure/janitorialcart, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/mousetraps, +/turf/simulated/floor/noslip, +/area/janitor) +"cbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cbT" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cbU" = ( +/turf/simulated/wall/r_wall, +/area/toxins/lab) +"cbV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/toxins/lab) +"cbW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cbX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/area/medical/research{ + name = "Research Division" + }) +"cbY" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/medical/research{ + name = "Research Division" + }) +"cbZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/area/medical/research{ + name = "Research Division" + }) +"cca" = ( +/turf/simulated/wall/r_wall, +/area/assembly/robotics) +"ccb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"ccc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ccd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/chargebay) +"cce" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/darkwarning, +/area/assembly/chargebay) +"ccf" = ( +/turf/simulated/wall, +/area/assembly/chargebay) +"ccg" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cch" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"cci" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central) +"ccj" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/black, +/area/hallway/primary/central) +"cck" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central) +"ccl" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ccm" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"ccn" = ( +/obj/structure/table, +/obj/item/device/destTagger, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (EAST)"; + icon_state = "brown"; + dir = 4 + }, +/area/quartermaster/office) +"cco" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccp" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal" + }, +/turf/simulated/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/office) +"ccq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/office) +"ccr" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/office) +"ccs" = ( +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cct" = ( +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccu" = ( +/obj/structure/table, +/obj/item/weapon/stamp, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccv" = ( +/obj/structure/table, +/obj/item/weapon/stamp/denied, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccw" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/office) +"ccx" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/chair, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/office) +"ccy" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ccB" = ( +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ccC" = ( +/turf/simulated/wall, +/area/maintenance/apmaint) +"ccD" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ccE" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ccF" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/security/main) +"ccG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/security/main) +"ccH" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/security/main) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/security/main) +"ccJ" = ( +/turf/simulated/wall/rust, +/area/storage/emergency) +"ccK" = ( +/turf/simulated/wall, +/area/storage/emergency) +"ccL" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/storage/emergency) +"ccM" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/storage/emergency) +"ccN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"ccO" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"ccP" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"ccQ" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"ccR" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ccS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ccT" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 4; + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage2" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ccU" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 8; + output_dir = 2 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"ccV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ccW" = ( +/turf/simulated/wall, +/area/chapel/office) +"ccX" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"ccY" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"ccZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cda" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHWEST)"; + icon_state = "chapel"; + dir = 9 + }, +/area/chapel/main) +"cdb" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHEAST)"; + icon_state = "chapel"; + dir = 5 + }, +/area/chapel/main) +"cdc" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHEAST)"; + icon_state = "chapel"; + dir = 5 + }, +/area/chapel/main) +"cdd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/chapel/main) +"cde" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cdf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdg" = ( +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cdh" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cdi" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdl" = ( +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdn" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"cdo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"cdp" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"cdq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"cdr" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/gateway) +"cds" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/wrench, +/obj/item/device/analyzer, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cdt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cdu" = ( +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cdv" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cdw" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/wirecutters, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cdx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cdy" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cdz" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cdA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cdB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/sleep) +"cdC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cdD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cdE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cdF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/sleep) +"cdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"cdI" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"cdJ" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"cdK" = ( +/obj/structure/closet/jcloset, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/item/stack/tile/noslip{ + amount = 30 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/noslip, +/area/janitor) +"cdL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/noslip, +/area/janitor) +"cdM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/noslip, +/area/janitor) +"cdN" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/noslip, +/area/janitor) +"cdO" = ( +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cdP" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cdQ" = ( +/obj/machinery/camera{ + c_tag = "Research and Development Lab"; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + tag = "icon-warnwhitecorner"; + icon_state = "warnwhitecorner"; + dir = 2 + }, +/area/toxins/lab) +"cdR" = ( +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"cdS" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"cdT" = ( +/obj/machinery/button/door{ + dir = 2; + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "47" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"cdU" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/lab) +"cdV" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/area/medical/research{ + name = "Research Division" + }) +"cdW" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/medical/research{ + name = "Research Division" + }) +"cdX" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/area/medical/research{ + name = "Research Division" + }) +"cdY" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cdZ" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cea" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/button/door{ + dir = 2; + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "29" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ceb" = ( +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cec" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ced" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cee" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/robotics) +"cef" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (WEST)"; + icon_state = "warndarkcorners"; + dir = 8 + }, +/area/assembly/chargebay) +"ceg" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/assembly/chargebay) +"ceh" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/assembly/chargebay) +"cei" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 26; + pixel_y = 24; + req_one_access_txt = "29" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/assembly/chargebay) +"cej" = ( +/turf/simulated/floor/plasteel/darkwarning/corner{ + tag = "icon-warndarkcorners (EAST)"; + icon_state = "warndarkcorners"; + dir = 4 + }, +/area/assembly/chargebay) +"cek" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/turf/simulated/floor/plating, +/area/assembly/chargebay) +"cel" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cem" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cen" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"ceo" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/black, +/area/hallway/primary/central) +"cep" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/hallway/primary/central) +"ceq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cer" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ces" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cet" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (EAST)"; + icon_state = "browncorner"; + dir = 4 + }, +/area/quartermaster/office) +"ceu" = ( +/turf/simulated/floor/plasteel/loadingarea, +/area/quartermaster/office) +"cev" = ( +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (NORTH)"; + icon_state = "browncorner"; + dir = 1 + }, +/area/quartermaster/office) +"cew" = ( +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cex" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cey" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/office) +"cez" = ( +/obj/structure/cable/orange{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ceA" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ceB" = ( +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ceC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ceD" = ( +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/gloves/color/rainbow, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ceE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/apmaint) +"ceF" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ceG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ceH" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Distro to Virology"; + on = 1 + }, +/turf/simulated/floor/plating, +/area/security/main) +"ceI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/security/main) +"ceJ" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/item/weapon/wrench, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/security/main) +"ceK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/security/main) +"ceL" = ( +/turf/simulated/floor/plating, +/area/storage/emergency) +"ceM" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plating, +/area/storage/emergency) +"ceN" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/apmaint) +"ceO" = ( +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ceP" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "garbage"; + name = "disposal coveyor" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ceQ" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"ceR" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "garbage3"; + name = "metal coveyor" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ceS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/disposal) +"ceT" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage3" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"ceU" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"ceV" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/eastleft{ + dir = 4; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"ceW" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"ceX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"ceY" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"ceZ" = ( +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"cfb" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHWEST)"; + icon_state = "chapel"; + dir = 10 + }, +/area/chapel/main) +"cfc" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHEAST)"; + icon_state = "chapel"; + dir = 6 + }, +/area/chapel/main) +"cfd" = ( +/turf/simulated/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"cfe" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cff" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cfg" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cfh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cfi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating, +/area/storage/emergency2) +"cfj" = ( +/turf/simulated/wall/rust, +/area/storage/emergency2) +"cfk" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cfl" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cfm" = ( +/obj/item/weapon/c_tube, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"cfn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cfo" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"cfp" = ( +/obj/structure/closet/secure_closet/exile, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"cfq" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Gateway Storage"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/vault{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/gateway) +"cfr" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/weapon/paper/pamphlet, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"cfs" = ( +/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, +/turf/simulated/floor/plasteel/black, +/area/gateway) +"cft" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Tool Storage" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/storage/primary) +"cfu" = ( +/turf/simulated/floor/plasteel/delivery, +/area/storage/primary) +"cfv" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cfw" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cfx" = ( +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/crew_quarters/sleep) +"cfy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cfz" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/device/paicard, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cfA" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cfB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"cfC" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/noslip, +/area/janitor) +"cfD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/noslip, +/area/janitor) +"cfE" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/noslip, +/area/janitor) +"cfF" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/noslip, +/area/janitor) +"cfG" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cfH" = ( +/obj/structure/table/glass, +/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/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cfI" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"cfJ" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/plasteel, +/area/toxins/lab) +"cfK" = ( +/turf/simulated/floor/plasteel, +/area/toxins/lab) +"cfL" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/plasteel, +/area/toxins/lab) +"cfM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"cfN" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/area/medical/research{ + name = "Research Division" + }) +"cfO" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/medical/research{ + name = "Research Division" + }) +"cfP" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/camera{ + c_tag = "Research Division Access"; + dir = 8; + network = list("SS13","Sci"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/area/medical/research{ + name = "Research Division" + }) +"cfQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/obj/item/weapon/stock_parts/cell/high/plus{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/cell/high/plus{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/cell/high/plus, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cfR" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cfS" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cfT" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cfU" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cfV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"cfW" = ( +/obj/machinery/mech_bay_recharge_port{ + tag = "icon-recharge_port"; + icon_state = "recharge_port"; + dir = 2 + }, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/assembly/chargebay) +"cfX" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cfY" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/chargebay) +"cfZ" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cga" = ( +/obj/machinery/mech_bay_recharge_port{ + tag = "icon-recharge_port"; + icon_state = "recharge_port"; + dir = 2 + }, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/assembly/chargebay) +"cgb" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/quartermaster/office) +"cgc" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cge" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/bot, +/area/quartermaster/office) +"cgf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgg" = ( +/obj/machinery/computer/cargo, +/turf/simulated/floor/plasteel/brown/corner, +/area/quartermaster/office) +"cgh" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/computer/cargo/request, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/quartermaster/office) +"cgi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Cargo Waiting Area"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cgo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/simulated/wall, +/area/maintenance/apmaint) +"cgp" = ( +/turf/simulated/wall/rust, +/area/maintenance/apmaint) +"cgq" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/simulated/floor/plating, +/area/security/main) +"cgr" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/storage/emergency) +"cgs" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/storage/emergency) +"cgt" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/storage/emergency) +"cgu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating, +/area/storage/emergency) +"cgv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cgw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cgx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cgy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/disposal) +"cgz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cgA" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"cgB" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"cgC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cgD" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage3" + }, +/obj/machinery/disposal/deliveryChute{ + tag = "icon-intake (NORTH)"; + icon_state = "intake"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"cgE" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"cgF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cgG" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cgH" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cgI" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/chapel/office) +"cgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cgK" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cgL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"cgM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"cgN" = ( +/turf/simulated/floor/carpet, +/area/chapel/main) +"cgO" = ( +/turf/simulated/wall, +/area/maintenance/fsmaint) +"cgP" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/meter, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cgQ" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cgR" = ( +/turf/simulated/wall/rust, +/area/maintenance/fsmaint) +"cgS" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cgT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cgU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cgV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cgW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cgX" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"cgY" = ( +/obj/structure/dresser, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cgZ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/blue, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cha" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"chb" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitories"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/crew_quarters/sleep) +"chc" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"chd" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/weapon/coin/silver, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"che" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"chf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/crew_quarters/sleep) +"chg" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"chh" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep) +"chi" = ( +/turf/simulated/floor/plasteel/delivery, +/area/janitor) +"chj" = ( +/obj/vehicle/janicart, +/obj/item/key/janitor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/noslip, +/area/janitor) +"chk" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + name = "Custodial Closet RC"; + pixel_y = -29 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/noslip, +/area/janitor) +"chl" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"chm" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"chn" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/plasteel/warning, +/area/toxins/lab) +"cho" = ( +/turf/simulated/floor/plasteel/warning, +/area/toxins/lab) +"chp" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/plasteel/warning, +/area/toxins/lab) +"chq" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"chr" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/medical/research{ + name = "Research Division" + }) +"chs" = ( +/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/crowbar, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cht" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"chu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/plasteel/whitebot, +/area/assembly/robotics) +"chv" = ( +/obj/structure/chair/stool, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"chw" = ( +/obj/structure/table, +/obj/item/stack/sheet/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/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"chx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"chy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/assembly/chargebay) +"chz" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"chA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"chB" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"chC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 8; + network = list("SS13","Sci"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/mech_bay_recharge_floor, +/area/assembly/chargebay) +"chD" = ( +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"chE" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"chF" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/vault{ + icon_state = "closed"; + locked = 1; + req_access_txt = "53" + }, +/turf/simulated/floor/plasteel/black, +/area/security/nuke_storage) +"chG" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"chH" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/quartermaster/office) +"chI" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/quartermaster/office) +"chJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"chK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (EAST)"; + icon_state = "brown"; + dir = 4 + }, +/area/quartermaster/office) +"chM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"chN" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/area/quartermaster/office) +"chO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"chP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"chQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"chR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chU" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chV" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"chX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"chZ" = ( +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cia" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cib" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cic" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cid" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cie" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "garbage2"; + name = "disposal coveyor secondary" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cif" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage2" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cig" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = 26; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = 25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cih" = ( +/turf/simulated/wall/r_wall/rust, +/area/maintenance/disposal) +"cii" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/disposal) +"cij" = ( +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + name = "Chapel RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cik" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cil" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cim" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cin" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/chapel/office) +"cio" = ( +/obj/structure/table/wood, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cip" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/chapel/main) +"ciq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cir" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"cis" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cit" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"civ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint) +"cix" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/gateway) +"ciy" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/newspaper, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciz" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciB" = ( +/obj/structure/cable/green{ + tag = "icon-1-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 = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciF" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Tool Storage"; + departmentType = 0; + name = "Tool Storage RC"; + pixel_y = -30 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciG" = ( +/obj/machinery/vending/tool, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciH" = ( +/obj/machinery/vending/assist, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciI" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/obj/item/device/t_scanner, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/multitool, +/obj/item/device/multitool{ + pixel_x = 4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/storage/primary) +"ciL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ciM" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint) +"ciN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/sleep) +"ciO" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"ciP" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"ciQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"ciR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/sleep) +"ciS" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/janitor) +"ciT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/janitor) +"ciU" = ( +/obj/structure/table/glass, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"ciV" = ( +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (WEST)"; + icon_state = "whitepurplecorner"; + dir = 8 + }, +/area/toxins/lab) +"ciW" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"ciX" = ( +/turf/simulated/wall, +/area/toxins/lab) +"ciY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (EAST)"; + icon_state = "whitepurplecorner"; + dir = 4 + }, +/area/medical/research{ + name = "Research Division" + }) +"ciZ" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cja" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (NORTH)"; + icon_state = "whitepurplecorner"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cjb" = ( +/turf/simulated/wall, +/area/assembly/robotics) +"cjc" = ( +/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, +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 4; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cjd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cje" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cjf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cjg" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cjh" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cji" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"cjj" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cjk" = ( +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cjl" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/chargebay) +"cjm" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cjn" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cjo" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/security/nuke_storage) +"cjp" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/security/nuke_storage) +"cjq" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/security/nuke_storage) +"cjr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/security/nuke_storage) +"cjs" = ( +/obj/structure/safe{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The seven is slightly darker than the other numbers."; + tag = "seven" + }, +/obj/item/weapon/paper/crumpled{ + info = "The eighth is almost certainly too close to disappearing for comfort..." + }, +/obj/item/weapon/twohanded/singularityhammer{ + desc = "This hammer harnesses the power of a miniaturized singularity to deal crushing blows, at least in theory."; + force_wielded = 10; + origin_tech = "combat=4;bluespace=3" + }, +/obj/item/weapon/sord, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/security/nuke_storage) +"cjt" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/quartermaster/office) +"cju" = ( +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cjv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cjw" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cjx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cjy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/brown/corner, +/area/quartermaster/office) +"cjz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (SOUTHEAST)"; + icon_state = "brown"; + dir = 6 + }, +/area/quartermaster/office) +"cjA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cjB" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (SOUTHWEST)"; + icon_state = "brown"; + dir = 10 + }, +/area/quartermaster/office) +"cjC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/quartermaster/office) +"cjD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (NORTH)"; + icon_state = "loadingarea"; + dir = 1 + }, +/area/quartermaster/office) +"cjE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cjF" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cjG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"cjH" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjM" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/apmaint) +"cjP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cjQ" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cjR" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"cjS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"cjT" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"cjU" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + layer = 3.3; + name = "disposal exit vent" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cjV" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "trash" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cjW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cjX" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"cjY" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/turf/simulated/floor/plating, +/area/maintenance/disposal) +"cjZ" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/fancy/candle_box, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cka" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"ckb" = ( +/obj/structure/table/wood, +/obj/item/weapon/nullrod, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"ckc" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"ckd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"cke" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/chapel/office) +"ckf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"ckg" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHWEST)"; + icon_state = "chapel"; + dir = 9 + }, +/area/chapel/main) +"ckh" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (NORTHEAST)"; + icon_state = "chapel"; + dir = 5 + }, +/area/chapel/main) +"cki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/carpet, +/area/chapel/main) +"ckj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/chapel/main) +"ckk" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall/rust, +/area/maintenance/fsmaint) +"ckm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/fsmaint) +"ckn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cko" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"ckp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cks" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckt" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cku" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckv" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckw" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ckx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cky" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + name = "Dormitories RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/crew_quarters/sleep) +"ckz" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"ckA" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/item/device/instrument/violin, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"ckB" = ( +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"ckC" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint2) +"ckD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"ckE" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/janitor) +"ckF" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Research Division" + }, +/turf/simulated/floor/plasteel/whitebot, +/area/toxins/lab) +"ckG" = ( +/turf/simulated/floor/plasteel/whitebot/delivery, +/area/toxins/lab) +"ckH" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"ckI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"ckJ" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitebot, +/area/toxins/lab) +"ckK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"ckL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/corner, +/area/toxins/lab) +"ckM" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/toxins/lab) +"ckN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (WEST)"; + icon_state = "whitepurplecorner"; + dir = 8 + }, +/area/medical/research{ + name = "Research Division" + }) +"ckO" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/whitepurple/corner, +/area/medical/research{ + name = "Research Division" + }) +"ckQ" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"ckR" = ( +/obj/machinery/button/door{ + dir = 2; + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/assembly/robotics) +"ckS" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + tag = "icon-warnwhitecorner"; + icon_state = "warnwhitecorner"; + dir = 2 + }, +/area/assembly/robotics) +"ckT" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite"; + tag = "icon-warnwhite (NORTH)" + }, +/area/assembly/robotics) +"ckU" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite"; + tag = "icon-warnwhite (NORTH)" + }, +/area/assembly/robotics) +"ckV" = ( +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite"; + tag = "icon-warnwhite (NORTH)" + }, +/area/assembly/robotics) +"ckW" = ( +/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/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warnwhite"; + tag = "icon-warnwhite (NORTH)" + }, +/area/assembly/robotics) +"ckX" = ( +/obj/machinery/recharge_station, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/assembly/chargebay) +"ckY" = ( +/turf/simulated/floor/plasteel/black, +/area/assembly/chargebay) +"ckZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/crowbar/large, +/obj/structure/cable/pink, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/turf/simulated/floor/plasteel/black, +/area/assembly/chargebay) +"cla" = ( +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/chargebay) +"clb" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/assembly/chargebay) +"clc" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cld" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cle" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"clf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/security/nuke_storage) +"clg" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"clh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"cli" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"clj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/security/nuke_storage) +"clk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cll" = ( +/turf/simulated/floor/plasteel/brown{ + dir = 10; + icon_state = "brown"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/quartermaster/office) +"clm" = ( +/turf/simulated/floor/plasteel/brown, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/turf/simulated/floor/plasteel/warningline, +/area/quartermaster/office) +"cln" = ( +/turf/simulated/floor/plasteel/brown, +/obj/machinery/camera{ + c_tag = "Cargo Office West"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/warningline, +/area/quartermaster/office) +"clo" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/office) +"clp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"clq" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"clr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cls" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption{ + input_dir = 2; + ore_pickup_rate = 30; + output_dir = 1 + }, +/turf/simulated/floor/plasteel/delivery, +/area/quartermaster/office) +"clt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/checkpoint/supply) +"clu" = ( +/turf/simulated/wall, +/area/security/checkpoint/supply) +"clv" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/apmaint) +"clw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clx" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cly" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/apmaint) +"clA" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clB" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/girder{ + layer = 2.6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clD" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clE" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/girder{ + layer = 2.6 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"clF" = ( +/turf/simulated/wall/rust, +/area/maintenance/disposal) +"clG" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"clH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"clI" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"clJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/grimy, +/area/chapel/office) +"clK" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"clL" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/plasteel{ + tag = "icon-chapel (SOUTHWEST)"; + icon_state = "chapel"; + dir = 10 + }, +/area/chapel/main) +"clM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"clN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/chapel/main) +"clO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"clP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"clQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint) +"clR" = ( +/turf/simulated/wall, +/area/maintenance/electrical) +"clS" = ( +/turf/simulated/wall/rust, +/area/maintenance/electrical) +"clT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/simulated/wall, +/area/maintenance/electrical) +"clU" = ( +/obj/item/weapon/pen/invisible, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"clV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"clW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"clX" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"clY" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/fsmaint) +"clZ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cma" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cmb" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/storage/primary) +"cmc" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cmd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cme" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cmf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cmg" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cmh" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/green, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cmi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cmj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/crew_quarters/sleep) +"cmk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/crew_quarters/sleep) +"cml" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cmm" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/purple, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cmn" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cmo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cmp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cmq" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cmr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cmt" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"cmu" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (NORTH)"; + icon_state = "whitepurplecorner"; + dir = 1 + }, +/area/toxins/lab) +"cmv" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cmw" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cmx" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cmy" = ( +/obj/structure/cable/pink{ + tag = "icon-4-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/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"cmz" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + desc = "It opens and closes. Just as secure as ever, or in other words not at all."; + glass = 1; + name = "Research and Development Lab"; + opacity = 0; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/toxins/lab) +"cmA" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + sortType = 12 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cmB" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cmC" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + sortType = 14; + tag = "icon-pipe-j1s (NORTH)" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cmD" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + glass = 0; + name = "Robotics Lab"; + opacity = 1; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/assembly/robotics) +"cmE" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/assembly/robotics) +"cmF" = ( +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"cmG" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/assembly/robotics) +"cmH" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/assembly/robotics) +"cmI" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/assembly/robotics) +"cmJ" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/assembly/robotics) +"cmK" = ( +/turf/simulated/wall/r_wall, +/area/assembly/chargebay) +"cmL" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/asmaint2) +"cmM" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation) +"cmN" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/security/nuke_storage) +"cmO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/mob/living/simple_animal/mouse/brown/Tom, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"cmP" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/security/nuke_storage) +"cmQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"cmR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/security/nuke_storage) +"cmS" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/simulated/wall/r_wall, +/area/maintenance/apmaint) +"cmT" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/apmaint) +"cmU" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/quartermaster/office) +"cmV" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/office) +"cmW" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort2" + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/quartermaster/office) +"cmX" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort2" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cmY" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8; + eject_range = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cmZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/quartermaster/office) +"cna" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1; + eject_range = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cnb" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/office) +"cnc" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/office) +"cnd" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/office) +"cne" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (NORTH)"; + icon_state = "browncorner"; + dir = 1 + }, +/area/quartermaster/office) +"cnf" = ( +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/quartermaster/office) +"cng" = ( +/turf/simulated/floor/plasteel/red/corner, +/area/quartermaster/office) +"cnh" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHWEST)"; + icon_state = "darkred"; + dir = 9 + }, +/area/security/checkpoint/supply) +"cni" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/checkpoint/supply) +"cnj" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Cargo Post RC"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Cargo Security Post"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTHEAST)"; + icon_state = "darkred"; + dir = 5 + }, +/area/security/checkpoint/supply) +"cnk" = ( +/obj/structure/cable/orange{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"cnl" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cnm" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cnn" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cno" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cnp" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cnq" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cnr" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cns" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cnt" = ( +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/chapel/office) +"cnv" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"cnw" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cnx" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cny" = ( +/obj/machinery/camera{ + c_tag = "Chapel"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cnz" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cnA" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cnB" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/mech_bay_recharge_port, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cnC" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cnD" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/computer/mech_bay_power_console, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cnE" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high/plus, +/obj/item/weapon/stock_parts/cell/high/plus, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cnF" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cnG" = ( +/turf/simulated/wall, +/area/construction) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall, +/area/construction) +"cnI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/turf/simulated/wall, +/area/construction) +"cnJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall/rust, +/area/construction) +"cnK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/wall, +/area/construction) +"cnL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnM" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnN" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnP" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnS" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cnT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/sleep) +"cnU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cnV" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cnW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral, +/area/crew_quarters/sleep) +"cnX" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep) +"cnY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/wardrobe/grey, +/obj/item/weapon/lighter/greyscale, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cnZ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coa" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cob" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coc" = ( +/obj/item/weapon/folder/white, +/obj/structure/table, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/book/manual/research_and_development, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cod" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/obj/item/weapon/stock_parts/cell/high/plus, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"coe" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/pink, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cof" = ( +/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/light/small, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"cog" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"coh" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (EAST)"; + icon_state = "whitepurplecorner"; + dir = 4 + }, +/area/toxins/lab) +"coi" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/toxins/lab) +"coj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/whitepurple/corner{ + tag = "icon-whitepurplecorner (NORTH)"; + icon_state = "whitepurplecorner"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cok" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"col" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"com" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"con" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/assembly/robotics) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"cop" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/assembly/robotics) +"coq" = ( +/turf/simulated/floor/plasteel/black, +/area/assembly/robotics) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/robotics) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/assembly/robotics) +"cot" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Lab Maintenance"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"cou" = ( +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cov" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cow" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cox" = ( +/obj/structure/rack, +/obj/item/weapon/newspaper, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coy" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coz" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coA" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/nuke_storage) +"coD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/security/nuke_storage) +"coE" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"coF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"coG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/bluegrid{ + icon_state = "gcircuit"; + luminosity = 2 + }, +/area/security/nuke_storage) +"coH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/security/nuke_storage) +"coI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"coJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"coK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/quartermaster/office) +"coL" = ( +/obj/structure/disposalpipe/wrapsortjunction{ + tag = "icon-pipe-j1s (WEST)"; + icon_state = "pipe-j1s"; + dir = 8 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"coM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"coN" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"coO" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 3 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"coP" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-y (WEST)"; + icon_state = "pipe-y"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"coQ" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"coR" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"coS" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/red/side{ + tag = "icon-red (EAST)"; + icon_state = "red"; + dir = 4 + }, +/area/quartermaster/office) +"coT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/checkpoint/supply) +"coU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/checkpoint/supply) +"coV" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/security/checkpoint/supply) +"coW" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/computer/security/mining, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/checkpoint/supply) +"coX" = ( +/turf/simulated/wall, +/area/quartermaster/miningdock) +"coY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/quartermaster/miningdock) +"coZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"cpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cpb" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cpc" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cpd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cpe" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cpf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cpg" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cph" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cpi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cpj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cpk" = ( +/obj/structure/bodycontainer/crematorium, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cpl" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/office) +"cpm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/chapel/office) +"cpn" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel/black, +/area/chapel/main) +"cpo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/wall, +/area/chapel/main) +"cpp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cpq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/chapel/main) +"cpr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cps" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cpt" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cpu" = ( +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cpv" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/electrical) +"cpw" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cpx" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cpy" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/electrical) +"cpz" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil/green, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 3 + }, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cpA" = ( +/obj/structure/computerframe, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cpB" = ( +/obj/structure/computerframe, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/construction) +"cpC" = ( +/obj/structure/computerframe, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cpD" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cpE" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cpF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cpG" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cpH" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/device/assembly/mousetrap, +/obj/item/trash/deadmouse, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"cpI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cpJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cpK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"cpL" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep) +"cpM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"cpN" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cpO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/simulated/wall/rust, +/area/maintenance/asmaint2) +"cpP" = ( +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cpQ" = ( +/turf/simulated/wall/r_wall, +/area/toxins/server) +"cpR" = ( +/turf/simulated/wall/r_wall, +/area/security/checkpoint/science) +"cpS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/turf/simulated/floor/plating, +/area/security/checkpoint/science) +"cpT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cpU" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cpV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Science Hallway North"; + dir = 8; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cpW" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"cpX" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"cpY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/assembly/robotics) +"cpZ" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/robotics) +"cqa" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/assembly/robotics) +"cqb" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkwarning{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/assembly/robotics) +"cqc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/assembly/robotics) +"cqd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cqe" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cqf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint2) +"cqg" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cqh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cqi" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold, +/obj/item/stack/sheet/mineral/gold, +/obj/item/stack/sheet/mineral/gold, +/obj/item/weapon/storage/belt/champion, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/security/nuke_storage) +"cqj" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/black, +/area/security/nuke_storage) +"cqk" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Vault"; + dir = 1; + network = list("SS13"); + start_active = 1 + }, +/obj/structure/filingcabinet, +/obj/item/weapon/folder/documents, +/turf/simulated/floor/plasteel{ + tag = "icon-vault (WEST)"; + icon_state = "vault"; + dir = 8 + }, +/area/security/nuke_storage) +"cql" = ( +/turf/simulated/floor/plasteel/black, +/area/security/nuke_storage) +"cqm" = ( +/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" + }, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/security/nuke_storage) +"cqn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cqo" = ( +/turf/simulated/wall, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cqp" = ( +/obj/structure/rack, +/obj/item/weapon/electronics/airalarm, +/obj/item/weapon/electronics/airlock, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cqq" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cqr" = ( +/obj/structure/cable/orange{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cqs" = ( +/obj/structure/rack, +/obj/item/weapon/electronics/firelock, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/firealarm, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cqt" = ( +/turf/simulated/floor/fakespace, +/area/quartermaster/storage) +"cqu" = ( +/turf/simulated/wall, +/area/quartermaster/storage) +"cqv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/obj/machinery/camera{ + c_tag = "Cargo Office South"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cqw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cqx" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cqy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cqz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel/red/corner{ + tag = "icon-redcorner (EAST)"; + icon_state = "redcorner"; + dir = 4 + }, +/area/quartermaster/office) +"cqA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/checkpoint/supply) +"cqB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHWEST)"; + icon_state = "darkred"; + dir = 10 + }, +/area/security/checkpoint/supply) +"cqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/checkpoint/supply) +"cqD" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 11; + tag = "e" + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/checkpoint/supply) +"cqE" = ( +/obj/structure/closet/wardrobe/miner, +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (NORTHWEST)"; + icon_state = "purple"; + dir = 9 + }, +/area/quartermaster/miningdock) +"cqF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (NORTH)"; + icon_state = "browncorner"; + dir = 1 + }, +/area/quartermaster/miningdock) +"cqG" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cqH" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/mining) +"cqI" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/mining) +"cqJ" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/mining) +"cqK" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/mining) +"cqL" = ( +/obj/structure/table, +/obj/item/weapon/poster/legit, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cqM" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cqN" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cqO" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/beaker, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cqP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Maintenance"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cqQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"cqR" = ( +/obj/structure/bodycontainer/morgue, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cqS" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cqT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cqU" = ( +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"cqV" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cqW" = ( +/obj/structure/closet/cardboard{ + desc = "Just a box... Contains Emergency Supplies." + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/weapon/tank/internals/emergency_oxygen, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cqX" = ( +/obj/structure/rack, +/obj/item/weapon/lipstick/random, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cqY" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/capacitor, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cqZ" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"cra" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crb" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crc" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Maintenance"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + dir = 2; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/fsmaint) +"cre" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/fsmaint) +"crf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/fsmaint) +"crg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cri" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"crj" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"crk" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"crl" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"crm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"crn" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cro" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/construction) +"crp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"crq" = ( +/obj/structure/table_frame, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"crr" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crs" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crt" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"cru" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crv" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"crx" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"cry" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"crz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"crA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"crB" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"crC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Showers"; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"crD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crE" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crF" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crG" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crH" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crJ" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"crK" = ( +/obj/machinery/r_n_d/server/core, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"crL" = ( +/obj/machinery/airalarm/server{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Server Room"; + network = list("Sci") + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"crM" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"crN" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 9 + }, +/area/security/checkpoint/science) +"crO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (NORTH)"; + icon_state = "darkred"; + dir = 1 + }, +/area/security/checkpoint/science) +"crP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 5 + }, +/area/security/checkpoint/science) +"crQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/checkpoint/science) +"crR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/whitered/corner{ + tag = "icon-whiteredcorner (WEST)"; + icon_state = "whiteredcorner"; + dir = 8 + }, +/area/medical/research{ + name = "Research Division" + }) +"crS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"crT" = ( +/turf/simulated/wall, +/area/crew_quarters/hor) +"crU" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/hor) +"crV" = ( +/turf/simulated/wall/r_wall, +/area/toxins/explab) +"crW" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"crX" = ( +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"crY" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"crZ" = ( +/obj/item/toy/foamblade{ + attack_verb = list("stoned","grabbed","smacked"); + desc = "A huge foam hand, patterned after stone."; + icon = 'icons/obj/weapons.dmi'; + icon_state = "fleshtostone"; + item_state = "fleshtostone"; + name = "huge foam hand"; + w_class = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"csa" = ( +/obj/item/weapon/dice/d8{ + desc = "A die with eight sides. It feels.... incredibly lucky. The two is slightly darker than the other numbers."; + tag = "two" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/quartermaster/storage) +"csb" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/autolathe, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"csc" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"csd" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cse" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"csf" = ( +/obj/structure/table, +/obj/item/device/multitool, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"csg" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/area/quartermaster/miningdock) +"csh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"csi" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"csj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"csk" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/mining) +"csl" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/mining) +"csm" = ( +/obj/machinery/computer/shuttle/mining, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/mining) +"csn" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cso" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"csp" = ( +/obj/structure/table, +/obj/item/device/multitool, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"csq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"csr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"css" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cst" = ( +/turf/simulated/floor/plating{ + dir = 2; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/apmaint) +"csu" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/apmaint) +"csv" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/apmaint) +"csw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/chapel/office) +"csx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"csy" = ( +/obj/structure/closet/crate, +/obj/item/trash/pistachios, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csz" = ( +/obj/structure/closet/crate, +/obj/item/weapon/c_tube, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csA" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csB" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csC" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csF" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/portsolar) +"csG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"csH" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csI" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"csJ" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"csL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"csM" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"csN" = ( +/obj/structure/cable/green, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"csO" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"csP" = ( +/obj/structure/table, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"csQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall/rust, +/area/maintenance/electrical) +"csR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plating, +/area/construction) +"csS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/construction) +"csT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/construction) +"csU" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plating, +/area/construction) +"csV" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csW" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"csZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/fsmaint) +"cta" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ctb" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"ctc" = ( +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"ctd" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"cte" = ( +/turf/simulated/wall, +/area/crew_quarters/toilet) +"ctf" = ( +/obj/machinery/shower{ + tag = "icon-shower (EAST)"; + icon_state = "shower"; + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"ctg" = ( +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"cth" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"cti" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + auto_name = 0; + dir = 8; + name = "Dormitory Showers"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/toilet) +"ctj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"ctk" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"ctl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 120; + 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/toxins/server) +"ctm" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"ctn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"cto" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons."; + name = "Research Monitor"; + network = list("Sci"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (WEST)"; + icon_state = "darkred"; + dir = 8 + }, +/area/security/checkpoint/science) +"ctp" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/security/checkpoint/science) +"ctq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (EAST)"; + icon_state = "darkred"; + dir = 4 + }, +/area/security/checkpoint/science) +"ctr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkred, +/area/security/checkpoint/science) +"cts" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/whitered/side{ + tag = "icon-whitered (WEST)"; + icon_state = "whitered"; + dir = 8 + }, +/area/medical/research{ + name = "Research Division" + }) +"ctt" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ctu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0; + tag = "e" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ctv" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (NORTHEAST)"; + icon_state = "darkpurple"; + dir = 5 + }, +/area/crew_quarters/hor) +"ctw" = ( +/obj/machinery/computer/mecha, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (SOUTHWEST)"; + icon_state = "darkpurple"; + dir = 10 + }, +/area/crew_quarters/hor) +"ctx" = ( +/obj/machinery/computer/robotics, +/obj/machinery/keycard_auth{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "rdprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + icon_state = "darkpurple" + }, +/area/crew_quarters/hor) +"cty" = ( +/obj/machinery/computer/card/minor/rd, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + network = list("SS13","RD"); + start_active = 1 + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + icon_state = "darkpurple" + }, +/area/crew_quarters/hor) +"ctz" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (SOUTHEAST)"; + icon_state = "darkpurple"; + dir = 6 + }, +/area/crew_quarters/hor) +"ctA" = ( +/obj/structure/closet/secure_closet/RD, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/weapon/bedsheet/rd, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (NORTHWEST)"; + icon_state = "darkpurple"; + dir = 9 + }, +/area/crew_quarters/hor) +"ctB" = ( +/turf/simulated/floor/engine, +/area/toxins/explab) +"ctC" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Chamber"; + network = list("SS13","Sci") + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"ctD" = ( +/obj/item/weapon/paper/crumpled{ + info = "While the third enjoys the smack of a baton..." + }, +/obj/structure/cable/orange{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"ctE" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ctF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ctG" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"ctH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/plasteel/purple/corner, +/area/quartermaster/office) +"ctI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"ctJ" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (WEST)"; + icon_state = "purplecorner"; + dir = 8 + }, +/area/quartermaster/miningdock) +"ctK" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/miningdock) +"ctL" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/quartermaster/miningdock) +"ctM" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/miningdock) +"ctN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (NORTH)"; + icon_state = "purplecorner"; + dir = 1 + }, +/area/quartermaster/miningdock) +"ctO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"ctP" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/purple/corner, +/area/quartermaster/miningdock) +"ctQ" = ( +/obj/item/weapon/ore/gold, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (WEST)"; + icon_state = "purplecorner"; + dir = 8 + }, +/area/quartermaster/miningdock) +"ctR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/ore/uranium, +/turf/simulated/floor/plasteel/warning/corner, +/area/quartermaster/miningdock) +"ctS" = ( +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/mining) +"ctT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/mining) +"ctU" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"ctV" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/starboardsolar) +"ctW" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"ctX" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/chapel/office) +"ctY" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/wallframe/light_fixture/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"ctZ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/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/fsmaint) +"cua" = ( +/obj/structure/cable/green{ + tag = "icon-4-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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cub" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cuc" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cud" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cue" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cuf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cug" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/portsolar) +"cuh" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/portsolar) +"cui" = ( +/obj/machinery/power/smes, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/portsolar) +"cuj" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cuk" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cul" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cum" = ( +/obj/structure/cable/green{ + tag = "icon-0-10"; + icon_state = "0-10" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cun" = ( +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cuo" = ( +/obj/structure/cable/green{ + tag = "icon-0-6"; + icon_state = "0-6" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/electrical) +"cup" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/construction) +"cuq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plating, +/area/construction) +"cur" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/construction) +"cus" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cut" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plating, +/area/construction) +"cuu" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint) +"cuv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cuw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/sleep) +"cux" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"cuy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/sleep) +"cuz" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/toilet) +"cuB" = ( +/obj/machinery/shower{ + tag = "icon-shower (EAST)"; + icon_state = "shower"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"cuC" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"cuD" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"cuE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cuF" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cuG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/toxins/server) +"cuH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cuI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/toxins/server) +"cuJ" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/security/checkpoint/science) +"cuK" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/darkred/side{ + dir = 10 + }, +/area/security/checkpoint/science) +"cuL" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Science Post RC"; + pixel_y = -30 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8"; + tag = "" + }, +/obj/machinery/camera{ + c_tag = "Science Security Post"; + dir = 1; + network = list("SS13","Sci") + }, +/obj/item/device/radio/off, +/turf/simulated/floor/plasteel/darkred/side, +/area/security/checkpoint/science) +"cuM" = ( +/obj/structure/filingcabinet, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/darkred/side{ + tag = "icon-darkred (SOUTHEAST)"; + icon_state = "darkred"; + dir = 6 + }, +/area/security/checkpoint/science) +"cuN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/checkpoint/science) +"cuO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/whitered/corner{ + tag = "icon-whiteredcorner (NORTH)"; + icon_state = "whiteredcorner"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cuP" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cuQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cuR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/hor) +"cuS" = ( +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/circuitboard/teleporter, +/obj/item/device/aicard, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (EAST)"; + icon_state = "darkpurple"; + dir = 4 + }, +/area/crew_quarters/hor) +"cuT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/hor) +"cuU" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/hor) +"cuV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/hor) +"cuW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/crew_quarters/hor) +"cuX" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (WEST)"; + icon_state = "darkpurple"; + dir = 8 + }, +/area/crew_quarters/hor) +"cuY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"cuZ" = ( +/obj/machinery/r_n_d/experimentor{ + pixel_x = -16 + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"cva" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"cvb" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/machinery/camera{ + c_tag = "Cargo Warehouse"; + dir = 4; + network = list("SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cvc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/closet/cardboard, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cvd" = ( +/obj/structure/closet/crate, +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cve" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cvf" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/wall{ + desc = "A huge chunk of metal used to separate rooms. There is a small hook etched on it." + }, +/area/quartermaster/storage) +"cvg" = ( +/obj/structure/cable/orange{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cvh" = ( +/obj/structure/cable/orange{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cvi" = ( +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cvj" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cvk" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (EAST)"; + icon_state = "brown"; + dir = 4 + }, +/area/quartermaster/office) +"cvl" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + glass = 1; + opacity = 0; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cvm" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/area/quartermaster/miningdock) +"cvn" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cvo" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cvp" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cvq" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cvr" = ( +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (EAST)"; + icon_state = "brown"; + dir = 4 + }, +/area/quartermaster/miningdock) +"cvs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/miningdock) +"cvt" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (WEST)"; + icon_state = "brown"; + dir = 8 + }, +/area/quartermaster/miningdock) +"cvu" = ( +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/quartermaster/miningdock) +"cvv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"cvw" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/shuttle/mining) +"cvx" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + travelDir = 90; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/simulated/floor/plating, +/area/shuttle/mining) +"cvy" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cvz" = ( +/obj/item/robot_parts/l_arm, +/obj/structure/closet, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cvA" = ( +/obj/item/clothing/tie/petcollar, +/obj/structure/closet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cvB" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cvC" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cvD" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/starboardsolar) +"cvE" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/starboardsolar) +"cvF" = ( +/obj/machinery/power/smes, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/starboardsolar) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"cvI" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/matter_bin, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvJ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint) +"cvL" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"cvM" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvN" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/wallframe/light_fixture/small, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvO" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvP" = ( +/obj/item/weapon/rack_parts, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvQ" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"cvR" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"cvS" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"cvT" = ( +/obj/structure/closet/crate, +/obj/item/trash/semki, +/obj/item/weapon/dice/d4, +/obj/item/weapon/dice/d12, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvU" = ( +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/obj/item/wallframe/light_fixture, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvV" = ( +/obj/structure/closet/crate, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/console_screen, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cvW" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/electrical) +"cvX" = ( +/obj/structure/cable/green{ + tag = "icon-5-8"; + icon_state = "5-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cvY" = ( +/obj/structure/cable/green{ + tag = "icon-6-10"; + icon_state = "6-10" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cvZ" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cwa" = ( +/obj/structure/cable/green{ + tag = "icon-6-10"; + icon_state = "6-10" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cwb" = ( +/obj/structure/cable/green{ + tag = "icon-4-9"; + icon_state = "4-9" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cwc" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cwd" = ( +/obj/item/device/healthanalyzer, +/obj/structure/closet/crate, +/obj/item/clothing/head/radiation, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cwe" = ( +/turf/simulated/floor/plating, +/area/construction) +"cwf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/construction) +"cwg" = ( +/obj/structure/closet/toolcloset, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/construction) +"cwh" = ( +/turf/simulated/wall/rust, +/area/construction) +"cwi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cwj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cwk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cwl" = ( +/turf/simulated/wall, +/area/crew_quarters/fitness) +"cwm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cwn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"cwo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep) +"cwp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"cwq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/turf/simulated/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cws" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cwt" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cwu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 4; + icon_state = "freezer"; + on = 1; + tag = "icon-freezer (EAST)" + }, +/obj/machinery/light_switch{ + pixel_x = -24; + tag = "w" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cwv" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cww" = ( +/obj/machinery/computer/rdservercontrol, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cwx" = ( +/turf/simulated/wall, +/area/security/checkpoint/science) +"cwy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cwz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cwA" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/cartridge/signal/toxins, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (SOUTHEAST)"; + icon_state = "darkpurple"; + dir = 6 + }, +/area/crew_quarters/hor) +"cwB" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (NORTHWEST)"; + icon_state = "darkpurple"; + dir = 9 + }, +/area/crew_quarters/hor) +"cwC" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (NORTH)"; + icon_state = "darkpurple"; + dir = 1 + }, +/area/crew_quarters/hor) +"cwD" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of this office."; + name = "Research Monitor"; + network = list("Xeno","Sci"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (NORTH)"; + icon_state = "darkpurple"; + dir = 1 + }, +/area/crew_quarters/hor) +"cwE" = ( +/obj/machinery/door/window/northright{ + name = "Research Director's Desk Door"; + req_access_txt = "30" + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (NORTHEAST)"; + icon_state = "darkpurple"; + dir = 5 + }, +/area/crew_quarters/hor) +"cwF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel/darkgreen/side{ + tag = "icon-darkpurple (SOUTHWEST)"; + icon_state = "darkpurple"; + dir = 10 + }, +/area/crew_quarters/hor) +"cwG" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"cwH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall/r_wall, +/area/maintenance/asmaint2) +"cwI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cwJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/green{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cwK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/simulated/wall/r_wall, +/area/maintenance/apmaint) +"cwL" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/key{ + desc = "A tiny grey key." + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cwM" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cwN" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/quartermaster/storage) +"cwO" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/quartermaster/storage) +"cwP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "QM #3" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/quartermaster/storage) +"cwQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "QM #4" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/quartermaster/storage) +"cwR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/brown, +/area/quartermaster/office) +"cwS" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/brown, +/area/quartermaster/office) +"cwT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/brown, +/area/quartermaster/office) +"cwU" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (WEST)"; + icon_state = "browncorner"; + dir = 8 + }, +/area/quartermaster/office) +"cwV" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cwW" = ( +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (EAST)"; + icon_state = "purplecorner"; + dir = 4 + }, +/area/quartermaster/office) +"cwX" = ( +/obj/machinery/computer/security/mining, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (NORTH)"; + icon_state = "purplecorner"; + dir = 1 + }, +/area/quartermaster/miningdock) +"cwY" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/plasteel/brown, +/area/quartermaster/miningdock) +"cwZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/purple/side, +/area/quartermaster/miningdock) +"cxa" = ( +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + name = "Mining RC"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel/brown, +/area/quartermaster/miningdock) +"cxb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Mining Office"; + dir = 1; + network = list("SS13") + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/purple/side, +/area/quartermaster/miningdock) +"cxc" = ( +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/plasteel/brown, +/area/quartermaster/miningdock) +"cxd" = ( +/obj/machinery/computer/shuttle/mining, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (EAST)"; + icon_state = "purplecorner"; + dir = 4 + }, +/area/quartermaster/miningdock) +"cxe" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plasteel/purple/corner{ + tag = "icon-purplecorner (NORTH)"; + icon_state = "purplecorner"; + dir = 1 + }, +/area/quartermaster/miningdock) +"cxf" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel/warning/corner{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/quartermaster/miningdock) +"cxg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cxh" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/apmaint) +"cxi" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cxj" = ( +/obj/structure/falsewall, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/apmaint) +"cxk" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"cxl" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"cxm" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"cxn" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/fsmaint) +"cxo" = ( +/obj/item/weapon/restraints/legcuffs/beartrap{ + armed = 1 + }, +/obj/structure/falsewall/reinforced, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint) +"cxp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cxq" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar_control{ + id = "portsolar"; + name = "Aft Port Solar Control"; + track = 0 + }, +/turf/simulated/floor/plating{ + dir = 2; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/portsolar) +"cxr" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/portsolar) +"cxs" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/portsolar) +"cxt" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cxu" = ( +/obj/structure/cable/green{ + tag = "icon-5-8"; + icon_state = "5-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"cxv" = ( +/obj/structure/cable/green{ + tag = "icon-0-9"; + icon_state = "0-9" + }, +/obj/structure/cable/green{ + tag = "icon-0-5"; + icon_state = "0-5" + }, +/obj/structure/cable/green, +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cxw" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/electrical) +"cxx" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/construction) +"cxy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/construction) +"cxz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/construction) +"cxA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/construction) +"cxB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cxC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cxD" = ( +/turf/simulated/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cxE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (NORTH)"; + icon_state = "blackcorner"; + dir = 1 + }, +/area/crew_quarters/fitness) +"cxF" = ( +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cxG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cxI" = ( +/obj/machinery/camera{ + c_tag = "Fitness North"; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cxJ" = ( +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (EAST)"; + icon_state = "blackcorner"; + dir = 4 + }, +/area/crew_quarters/fitness) +"cxK" = ( +/obj/structure/closet/crate, +/obj/item/stack/medical/bruise_pack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cxL" = ( +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/syringe, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/head/hasturhood{ + desc = "A puke-yellow hood. Looking at it makes you want to vomit."; + name = "strange hood" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cxM" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cxN" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/suit/hastur{ + desc = "A puke-yellow robe. Looking at it makes you want to vomit."; + name = "strange robe" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cxO" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cxP" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cxQ" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cxR" = ( +/obj/item/weapon/relic, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/medical/research{ + name = "Research Division" + }) +"cxS" = ( +/obj/item/weapon/stock_parts/capacitor{ + desc = "A research-y capacitor, for research."; + name = "research"; + origin_tech = "powerstorage=3" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/medical/research{ + name = "Research Division" + }) +"cxT" = ( +/obj/item/weapon/twohanded/dualsaber/toy, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/medical/research{ + name = "Research Division" + }) +"cxU" = ( +/turf/simulated/wall, +/area/medical/research{ + name = "Research Division" + }) +"cxV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cxW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cxX" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable/pink{ + tag = "icon-4-10"; + icon_state = "4-10" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/crew_quarters/hor) +"cxY" = ( +/obj/structure/flora/kirbyplants/dead, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitepurple"; + tag = "icon-whitehall (WEST)" + }, +/area/crew_quarters/hor) +"cxZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/crew_quarters/hor) +"cya" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" + }, +/area/crew_quarters/hor) +"cyb" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/crew_quarters/hor) +"cyc" = ( +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/suit_storage_unit/rd, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/crew_quarters/hor) +"cyd" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/toxins/explab) +"cye" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/turf/simulated/floor/engine, +/area/toxins/explab) +"cyf" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cyg" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cyh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cyi" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"cyj" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cyk" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cyl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cym" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cyn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cyo" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cyp" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/paper, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cyq" = ( +/turf/simulated/floor/plasteel/delivery, +/area/quartermaster/storage) +"cyr" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/delivery, +/area/quartermaster/storage) +"cys" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cyt" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cyu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/office) +"cyv" = ( +/turf/simulated/wall, +/area/quartermaster/qm) +"cyw" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/mining) +"cyx" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/mining) +"cyy" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/mining) +"cyz" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar_control{ + id = "starboardsolar"; + name = "Aft Starboard Solar Control"; + track = 0 + }, +/turf/simulated/floor/plating{ + dir = 2; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/starboardsolar) +"cyA" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/starboardsolar) +"cyB" = ( +/obj/item/stack/cable_coil/yellow, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplatecorner"; + tag = "" + }, +/area/maintenance/starboardsolar) +"cyC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cyD" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cyE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"cyF" = ( +/obj/structure/cable/yellow{ + tag = "icon-1-6"; + icon_state = "1-6"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cyG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Maintenance"; + req_access_txt = "32" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/construction) +"cyH" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cyI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table, +/obj/item/weapon/storage/box/hug/medical, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (NORTH)"; + icon_state = "blackcorner"; + dir = 1 + }, +/area/crew_quarters/fitness) +"cyJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness) +"cyK" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/crew_quarters/fitness) +"cyL" = ( +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side, +/area/crew_quarters/fitness) +"cyM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/neutral/side, +/area/crew_quarters/fitness) +"cyN" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/neutral/side, +/area/crew_quarters/fitness) +"cyO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (WEST)"; + icon_state = "neutralcorner"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cyP" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (EAST)"; + icon_state = "blackcorner"; + dir = 4 + }, +/area/crew_quarters/fitness) +"cyQ" = ( +/turf/simulated/wall/rust, +/area/maintenance/asmaint2) +"cyR" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"cyS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/toxins/server) +"cyT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cyU" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cyV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cyW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-5"; + icon_state = "0-5" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/hor) +"cyX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/hor) +"cyY" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + glass = 0; + name = "Research Director"; + opacity = 1; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/whitepurple, +/area/crew_quarters/hor) +"cyZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/crew_quarters/hor) +"cza" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/explab) +"czb" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7; + tag = "every single paper bin is edited to this" + }, +/obj/item/weapon/pen, +/obj/item/weapon/book/manual/experimentor, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/explab) +"czc" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/explab) +"czd" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench, +/obj/item/weapon/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/explab) +"cze" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/explab) +"czf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"czg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"czh" = ( +/obj/structure/closet/crate/internals, +/obj/item/weapon/paper, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"czi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"czj" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"czk" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"czl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"czm" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"czn" = ( +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"czo" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (EAST)"; + icon_state = "browncorner"; + dir = 4 + }, +/area/quartermaster/storage) +"czp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"czq" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"czr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"czs" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/brown/corner{ + tag = "icon-browncorner (NORTH)"; + icon_state = "browncorner"; + dir = 1 + }, +/area/quartermaster/storage) +"czt" = ( +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"czu" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"czv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/qm) +"czw" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/computer/security/mining, +/turf/simulated/floor/plasteel/darkbrown/side{ + tag = "icon-darkbrown (NORTHWEST)"; + icon_state = "darkbrown"; + dir = 9 + }, +/area/quartermaster/qm) +"czx" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/computer/cargo, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel/darkbrown/side{ + tag = "icon-darkbrown (NORTH)"; + icon_state = "darkbrown"; + dir = 1 + }, +/area/quartermaster/qm) +"czy" = ( +/obj/machinery/computer/shuttle/mining, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel/darkbrown/side{ + tag = "icon-darkbrown (NORTHEAST)"; + icon_state = "darkbrown"; + dir = 5 + }, +/area/quartermaster/qm) +"czz" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/mining) +"czA" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/mining) +"czB" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/mining) +"czC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"czD" = ( +/obj/structure/cable/green{ + tag = "icon-1-9"; + icon_state = "1-9" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"czE" = ( +/obj/structure/chair, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czF" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs/cable/green, +/obj/item/weapon/restraints/handcuffs/cable/green, +/obj/item/toy/owl, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czG" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czH" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czI" = ( +/obj/structure/table, +/obj/item/wallframe/firealarm, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czJ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"czK" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czL" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/fsmaint) +"czM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czN" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/construction) +"czO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint) +"czP" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/maintenance/fsmaint) +"czQ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czR" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"czS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/fitness) +"czT" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Fitness Ring" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"czU" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"czV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"czW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"czX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/fitness) +"czY" = ( +/obj/structure/closet/lasertag/red, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"czZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cAa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cAb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cAc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAd" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAe" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAf" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science Hallway West"; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAg" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAh" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAi" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAj" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAk" = ( +/obj/structure/cable/pink{ + tag = "icon-4-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 = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAl" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAm" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAn" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 13 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAo" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cAq" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/toxins/explab) +"cAr" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/toxins/explab) +"cAs" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cAt" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cAu" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cAv" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cAw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Experimentation Lab Maintenance"; + req_access_txt = "7" + }, +/obj/structure/cable/pink{ + tag = "icon-4-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/toxins/explab) +"cAx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cAy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cAz" = ( +/turf/simulated/floor/plasteel/brown, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "31" + }, +/turf/simulated/floor/plasteel/warningline, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cAA" = ( +/turf/simulated/floor/plasteel/brown, +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/turf/simulated/floor/plasteel/warningline, +/area/quartermaster/sorting{ + name = "\improper Warehouse" + }) +"cAB" = ( +/obj/structure/cable/orange{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cAC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cAD" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cAE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cAF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cAG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/qm) +"cAH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/darkbrown/corner{ + tag = "icon-darkbrowncorners (NORTH)"; + icon_state = "darkbrowncorners"; + dir = 1 + }, +/area/quartermaster/qm) +"cAI" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cAJ" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen/red, +/turf/simulated/floor/plasteel/darkbrown/corner{ + tag = "icon-darkbrowncorners (EAST)"; + icon_state = "darkbrowncorners"; + dir = 4 + }, +/area/quartermaster/qm) +"cAK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"cAL" = ( +/obj/structure/closet, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/gloves/color/brown, +/obj/item/clothing/mask/gas/owl_mask, +/obj/item/clothing/under/owl, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cAM" = ( +/obj/structure/table, +/obj/item/weapon/grenade/smokebomb, +/obj/item/weapon/grenade/smokebomb, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cAN" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/cell, +/obj/item/weapon/melee/baton/cattleprod, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cAO" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cAP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall, +/area/maintenance/fsmaint) +"cAQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (NORTH)"; + icon_state = "blackcorner"; + dir = 1 + }, +/area/crew_quarters/fitness) +"cAR" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cAS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/red, +/area/crew_quarters/fitness) +"cAT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cAU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/crew_quarters/fitness) +"cAV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/crew_quarters/fitness) +"cAW" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cAX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cAY" = ( +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cAZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cBa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cBc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"cBd" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBg" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable/pink, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBj" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBk" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBl" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cBo" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/toxins/explab) +"cBp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/toxins/explab) +"cBq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cBr" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/whitebot, +/area/toxins/explab) +"cBs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cBt" = ( +/obj/structure/cable/pink, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/toxins/explab) +"cBv" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cBw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cBx" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space/nearstation) +"cBy" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"cBz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"cBA" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"cBB" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay RC"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (NORTH)"; + icon_state = "brown"; + dir = 1 + }, +/area/quartermaster/storage) +"cBC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cBD" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cBE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cBF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cBG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cBH" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cBI" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cBJ" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cBK" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cBL" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/darkbrown/side{ + tag = "icon-darkbrown (WEST)"; + icon_state = "darkbrown"; + dir = 8 + }, +/area/quartermaster/qm) +"cBM" = ( +/obj/structure/cable/orange{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cBO" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cBP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/solar/starboard) +"cBQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cBR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/wall, +/area/maintenance/fsmaint) +"cBS" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"cBT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/fitness) +"cBU" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cBV" = ( +/obj/machinery/computer/holodeck, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cBW" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cBX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cBY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cBZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/fitness) +"cCa" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/crew_quarters/fitness) +"cCb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/crew_quarters/fitness) +"cCc" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cCd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cCe" = ( +/obj/structure/closet/masks, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 31 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cCf" = ( +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cCg" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cCh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cCi" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cCj" = ( +/turf/simulated/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"cCk" = ( +/turf/simulated/wall/r_wall, +/area/toxins/storage) +"cCl" = ( +/turf/simulated/wall, +/area/toxins/storage) +"cCm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cCn" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/medical/research{ + name = "Research Division" + }) +"cCp" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cCq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall/rust, +/area/maintenance/atmos_control) +"cCr" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cCs" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTHEAST)"; + icon_state = "whitepurple"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHEAST)"; + icon_state = "warningline"; + dir = 5 + }, +/area/medical/research{ + name = "Research Division" + }) +"cCt" = ( +/obj/machinery/vending/coffee, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Science Hallway East"; + dir = 1; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cCu" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"cCv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"cCw" = ( +/obj/structure/closet/radiation, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"cCx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"cCy" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"cCz" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cCA" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCB" = ( +/obj/structure/cable/orange{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCC" = ( +/obj/structure/cable/orange{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCD" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCE" = ( +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCF" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/loadingarea, +/area/quartermaster/storage) +"cCG" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCH" = ( +/obj/structure/cable/orange{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCI" = ( +/obj/structure/cable/orange{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cCM" = ( +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (NORTH)"; + icon_state = "loadingarea"; + dir = 1 + }, +/area/quartermaster/storage) +"cCN" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cCO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + frequency = 1439; + id_tag = null; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cCP" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cCQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/solar/port) +"cCR" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint2) +"cCS" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cCT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cCU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cCV" = ( +/obj/structure/table, +/obj/item/weapon/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cCW" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cCX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cCY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cCZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (EAST)"; + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/fitness) +"cDa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cDb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/crew_quarters/fitness) +"cDc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/crew_quarters/fitness) +"cDd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (WEST)"; + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cDe" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cDf" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cDg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cDh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cDi" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/asmaint2) +"cDj" = ( +/obj/item/weapon/grenade/clusterbuster/cleaner{ + desc = "A 'Mr. Proper' supercleaning grenade. Will cover the nearby area in foam." + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cDk" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel/delivery, +/area/toxins/storage) +"cDl" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/simulated/floor/plasteel/delivery, +/area/toxins/storage) +"cDm" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plasteel/delivery, +/area/toxins/storage) +"cDn" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/light_switch{ + pixel_y = 24; + tag = "n" + }, +/turf/simulated/floor/plasteel/delivery, +/area/toxins/storage) +"cDo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cDp" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cDq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cDr" = ( +/turf/simulated/wall, +/area/toxins/mixing) +"cDs" = ( +/obj/structure/sign/fire, +/turf/simulated/wall, +/area/toxins/mixing) +"cDt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/toxins/mixing) +"cDu" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cDv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/toxins/mixing) +"cDw" = ( +/turf/simulated/wall/r_wall, +/area/toxins/mixing) +"cDx" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cDy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/simulated/wall, +/area/toxins/mixing) +"cDz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cDA" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cDB" = ( +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cDC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay West"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/quartermaster/storage) +"cDE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + tag = "cargoshuttledown" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cDF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/quartermaster/storage) +"cDG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cDH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cDI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cDJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bot"; + dir = 1 + }, +/area/quartermaster/storage) +"cDK" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/simulated/floor/plasteel, +/area/quartermaster/storage) +"cDL" = ( +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (EAST)"; + icon_state = "warning"; + dir = 4 + }, +/area/quartermaster/storage) +"cDM" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2"; + tag = "cargoshuttleup" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cDN" = ( +/obj/structure/table, +/obj/structure/cable/orange, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cDO" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/weapon/bedsheet/qm, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cDP" = ( +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 1; + network = list("SS13"); + start_active = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/black, +/area/quartermaster/qm) +"cDQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow, +/turf/space, +/area/solar/port) +"cDR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (WEST)"; + icon_state = "blackcorner"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cDS" = ( +/obj/machinery/camera{ + c_tag = "Holodeck Control"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cDT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/green, +/area/crew_quarters/fitness) +"cDU" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cDV" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cDW" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Fitness Ring" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/fitness) +"cDX" = ( +/obj/structure/closet/lasertag/blue, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cEa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cEb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cEc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cEd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cEe" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cEf" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cEg" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 4; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cEh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cEi" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cEj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cEk" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cEl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/toxins/storage) +"cEm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cEn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cEo" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/mixing) +"cEp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cEq" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cEr" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/weapon/storage/firstaid/toxin, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHWEST)"; + icon_state = "warnwhite"; + dir = 10 + }, +/area/toxins/mixing) +"cEs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHEAST)"; + icon_state = "warnwhite"; + dir = 6 + }, +/area/toxins/mixing) +"cEt" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHWEST)"; + icon_state = "warnwhite"; + dir = 10 + }, +/area/toxins/mixing) +"cEu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/simulated/floor/plasteel/warnwhite{ + tag = "icon-warnwhite (SOUTHEAST)"; + icon_state = "warnwhite"; + dir = 6 + }, +/area/toxins/mixing) +"cEv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cEw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/mixing) +"cEx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/toxins/mixing) +"cEy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/toxins/mixing) +"cEz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/toxins/mixing) +"cEA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/toxins/mixing) +"cEB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/toxins/mixing) +"cEC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/toxins/mixing) +"cED" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (SOUTHEAST)"; + icon_state = "purple"; + dir = 6 + }, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Toxins Launch Room"; + network = list("SS13","Sci") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/toxins/mixing) +"cEE" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (SOUTHWEST)"; + icon_state = "purple"; + dir = 10 + }, +/obj/structure/closet/bombcloset, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/toxins/mixing) +"cEF" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (SOUTHEAST)"; + icon_state = "purple"; + dir = 6 + }, +/obj/structure/closet/bombcloset, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/toxins/mixing) +"cEG" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/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{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/mixing) +"cEH" = ( +/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_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/turf/simulated/floor/plasteel/white, +/area/toxins/mixing) +"cEI" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"cEJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable/orange{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cEK" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/turf/simulated/wall, +/area/quartermaster/storage) +"cEL" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + tag = "cargoshuttledown" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cEM" = ( +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHWEST)"; + icon_state = "warning"; + dir = 10 + }, +/area/quartermaster/storage) +"cEN" = ( +/turf/simulated/floor/plasteel/warning, +/area/quartermaster/storage) +"cEO" = ( +/turf/simulated/floor/plasteel/warning/corner{ + dir = 1 + }, +/area/quartermaster/storage) +"cEP" = ( +/turf/simulated/floor/plasteel/warning/corner, +/area/quartermaster/storage) +"cEQ" = ( +/turf/simulated/floor/plasteel/warning{ + tag = "icon-warning (SOUTHEAST)"; + icon_state = "warning"; + dir = 6 + }, +/area/quartermaster/storage) +"cER" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2"; + tag = "cargoshuttleup" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cES" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/turf/simulated/wall, +/area/quartermaster/qm) +"cET" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/solar/port) +"cEU" = ( +/turf/simulated/wall/rust, +/area/crew_quarters/fitness) +"cEV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cEW" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (WEST)"; + icon_state = "blackcorner"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cEX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (EAST)"; + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/fitness) +"cEY" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plasteel/neutral/side{ + tag = "icon-neutral (NORTH)"; + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/fitness) +"cEZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/neutral/corner{ + tag = "icon-neutralcorner (NORTH)"; + icon_state = "neutralcorner"; + dir = 1 + }, +/area/crew_quarters/fitness) +"cFa" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plasteel/black/corner, +/area/crew_quarters/fitness) +"cFb" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cFc" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cFd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cFe" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/clothing/head/cone, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cFf" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cFg" = ( +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cFh" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cFi" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cFj" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cFk" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cFl" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cFm" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cFn" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cFo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cFp" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (NORTHEAST)"; + icon_state = "purple"; + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHEAST)"; + icon_state = "warningline"; + dir = 5 + }, +/area/toxins/mixing) +"cFq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cFr" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel/whitebot, +/area/toxins/mixing) +"cFs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cFt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cFu" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cFv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cFw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cFx" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (EAST)"; + icon_state = "whitepurple"; + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/mixing) +"cFy" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/toxins/mixing) +"cFz" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/toxins/mixing) +"cFA" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/toxins/mixing) +"cFB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/toxins/mixing) +"cFC" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (WEST)"; + icon_state = "purple"; + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/mixing) +"cFD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cFE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cFG" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/mixing) +"cFH" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plasteel/white, +/area/toxins/mixing) +"cFI" = ( +/obj/machinery/power/apc{ + auto_name = 1; + dir = 8; + name = "Autoname APC West"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/apmaint) +"cFJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cFK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cFL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cFM" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cFN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cFO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"cFP" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cFQ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cFR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + tag = "cargoshuttledown" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cFS" = ( +/turf/simulated/floor/plasteel/brown{ + dir = 10; + icon_state = "brown"; + nitrogen = 100; + oxygen = 0; + tag = "SERVER"; + temperature = 80 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHWEST)"; + icon_state = "warningline"; + dir = 10 + }, +/area/quartermaster/storage) +"cFT" = ( +/turf/simulated/floor/plasteel/brown, +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -8; + pixel_y = -24 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = 8; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/warningline, +/area/quartermaster/storage) +"cFU" = ( +/turf/simulated/floor/plasteel/brown{ + tag = "icon-brown (SOUTHEAST)"; + icon_state = "brown"; + dir = 6 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/quartermaster/storage) +"cFV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cFW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cFX" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-6"; + icon_state = "0-6"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cFY" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cFZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow, +/turf/space, +/area/solar/starboard) +"cGa" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-10"; + icon_state = "0-10"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cGb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"cGc" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint) +"cGd" = ( +/turf/simulated/floor/plasteel/black/corner{ + tag = "icon-blackcorner (WEST)"; + icon_state = "blackcorner"; + dir = 8 + }, +/area/crew_quarters/fitness) +"cGe" = ( +/obj/machinery/camera{ + c_tag = "Fitness South"; + dir = 1; + network = list("SS13") + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cGf" = ( +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel, +/area/crew_quarters/fitness) +"cGg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/black/corner, +/area/crew_quarters/fitness) +"cGh" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cGi" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cGj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cGk" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cGl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cGm" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plasteel/bot, +/area/toxins/storage) +"cGn" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/plasteel/bot, +/area/toxins/storage) +"cGo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plasteel/bot, +/area/toxins/storage) +"cGp" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cGq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cGr" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (SOUTHEAST)"; + icon_state = "purple"; + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/toxins/mixing) +"cGs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGt" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Mixing West"; + dir = 1; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGu" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGv" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGw" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGx" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30; + tag = "s" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGy" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGz" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cGB" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cGC" = ( +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cGD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cGE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cGF" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (WEST)"; + icon_state = "whitepurple"; + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/mixing) +"cGG" = ( +/obj/item/device/assembly/signaler{ + pixel_x = 0; + 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, +/obj/machinery/light_switch{ + pixel_x = 24; + tag = "e" + }, +/turf/simulated/floor/plasteel/white, +/area/toxins/mixing) +"cGH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cGI" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cGJ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cGK" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + tag = "cargoshuttledown" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cGL" = ( +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/engine/engineering) +"cGM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"cGN" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2"; + tag = "cargoshuttleup" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cGO" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-6"; + icon_state = "0-6"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cGP" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cGQ" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-10"; + icon_state = "0-10"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cGR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cGS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cGT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cGU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/solar/starboard) +"cGV" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/solar/starboard) +"cGW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/solar/starboard) +"cGX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cGY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cGZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cHa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHb" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHc" = ( +/obj/item/weapon/stock_parts/matter_bin, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHd" = ( +/obj/item/mecha_parts/part/odysseus_right_leg, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHe" = ( +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/item/weapon/circuitboard/destructive_analyzer, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHf" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/simulated/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cHg" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cHh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Science Hallway South"; + dir = 8; + network = list("SS13","Sci"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cHi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/wall/r_wall, +/area/toxins/mixing) +"cHj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cHk" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cHl" = ( +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + aidisabled = 0; + auto_name = 1; + cell_type = 2500; + dir = 4; + name = "Autoname APC East"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cHm" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/wallframe/newscaster, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHn" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cHo" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warning/corner, +/area/toxins/mixing) +"cHp" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/weapon/poster/legit, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cHq" = ( +/obj/item/weapon/weldingtool/mini, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cHr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + tag = "cargoshuttledown" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cHs" = ( +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/quartermaster/storage) +"cHt" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/quartermaster/storage) +"cHu" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2"; + tag = "cargoshuttleup" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cHv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cHw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cHx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cHy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/space, +/area/solar/port) +"cHz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/space, +/area/solar/port) +"cHA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cHB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cHC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-5-8"; + icon_state = "5-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-6-8"; + icon_state = "6-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cHD" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-5"; + icon_state = "0-5"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cHE" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cHF" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil/yellow, +/turf/space, +/area/solar/starboard) +"cHG" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-9"; + icon_state = "0-9"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cHH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cHI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cHJ" = ( +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cHK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cHL" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHM" = ( +/obj/structure/cable/green{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/fitness) +"cHN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/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/asmaint2) +"cHP" = ( +/obj/structure/cable/green{ + tag = "icon-4-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/asmaint2) +"cHQ" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cHR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cHS" = ( +/obj/machinery/door/poddoor{ + id = "mixvent"; + name = "Mixer Room Vent" + }, +/turf/simulated/floor/engine/vacuum, +/area/toxins/mixing) +"cHT" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/engine/vacuum, +/area/toxins/mixing) +"cHU" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/simulated/floor/engine/vacuum, +/area/toxins/mixing) +"cHV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/toxins/mixing) +"cHW" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/engine, +/area/toxins/mixing) +"cHX" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller{ + airpump_tag = "tox_airlock_pump"; + exterior_door_tag = "tox_airlock_exterior"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cHY" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cHZ" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (NORTHEAST)"; + icon_state = "purple"; + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHEAST)"; + icon_state = "warningline"; + dir = 5 + }, +/area/toxins/mixing) +"cIa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIb" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0; + tag = "w" + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cIc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel, +/area/toxins/mixing) +"cId" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 4 + }, +/area/toxins/mixing) +"cIe" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel/loadingarea{ + tag = "icon-loadingarea (EAST)"; + icon_state = "loadingarea"; + dir = 4 + }, +/area/toxins/mixing) +"cIf" = ( +/obj/machinery/mass_driver{ + dir = 2; + id = "toxinsdriver" + }, +/turf/simulated/floor/plating, +/area/toxins/mixing) +"cIg" = ( +/obj/item/stack/medical/gauze, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cIh" = ( +/obj/structure/rack, +/obj/item/weapon/storage/belt/utility, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cIi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cIj" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-5"; + icon_state = "0-5"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cIk" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cIl" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Fore Port Solar Array" + }, +/obj/structure/cable/yellow{ + tag = "icon-0-9"; + icon_state = "0-9"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cIm" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIn" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIo" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIr" = ( +/obj/item/weapon/lipstick/black, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cIs" = ( +/obj/item/weapon/lighter, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cIt" = ( +/obj/item/weapon/paper, +/obj/item/weapon/storage/box/donkpockets, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cIu" = ( +/obj/structure/table/glass, +/obj/item/device/radio/off, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20; + tag = "NORTH" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cIv" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cIw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cIx" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cIy" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cIz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cIA" = ( +/turf/simulated/floor/engine/vacuum, +/area/toxins/mixing) +"cIB" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "closed"; + id_tag = "tox_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/simulated/floor/engine, +/area/toxins/mixing) +"cIC" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump" + }, +/turf/simulated/floor/engine, +/area/toxins/mixing) +"cID" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "closed"; + id_tag = "tox_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/simulated/floor/engine, +/area/toxins/mixing) +"cIE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cIF" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cIG" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Mixing East"; + dir = 8; + network = list("SS13","Sci"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = 26; + pixel_y = -2; + tag = "EAST" + }, +/obj/item/weapon/wrench, +/obj/item/weapon/cigbutt, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/mixing) +"cIH" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cII" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/target/alien, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/syndicate, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/plasteel/bot, +/area/toxins/mixing) +"cIJ" = ( +/turf/simulated/floor/plasteel/warning/corner{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cIK" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/toxins/mixing) +"cIL" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cIM" = ( +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"cIN" = ( +/obj/item/weapon/cigbutt, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cIO" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/apmaint) +"cIP" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/supply) +"cIQ" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/supply) +"cIR" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + tag = "cargoshuttledown" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"cIS" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"cIT" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/obj/docking_port/mobile/supply{ + dir = 2; + dwidth = 5; + width = 12 + }, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"cIU" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"cIV" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/supply) +"cIW" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/supply) +"cIX" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cIY" = ( +/obj/item/stack/sheet/cardboard, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cIZ" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/weapon/storage/box/lights/tubes, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJb" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJc" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/simulated/wall/rust, +/area/maintenance/asmaint2) +"cJe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cJf" = ( +/obj/structure/chair/stool, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJg" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + layer = 2.4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJh" = ( +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Break Room"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2"; + tag = "icon-pipe-j1 (WEST)" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cJm" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cJn" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "air_in" + }, +/turf/simulated/floor/engine/vacuum, +/area/toxins/mixing) +"cJo" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/engine, +/area/toxins/mixing) +"cJp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door{ + id = "mixvent"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "mixingsparker"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cJq" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cJr" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (SOUTHEAST)"; + icon_state = "purple"; + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (SOUTHEAST)"; + icon_state = "warningline"; + dir = 6 + }, +/area/toxins/mixing) +"cJs" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights/bulbs, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJt" = ( +/obj/machinery/doppler_array, +/turf/simulated/floor/plasteel/bot, +/area/toxins/mixing) +"cJu" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 4; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel/purple/corner, +/area/toxins/mixing) +"cJv" = ( +/obj/structure/chair/office/light, +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel/purple/side, +/area/toxins/mixing) +"cJw" = ( +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/toxins/mixing) +"cJx" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cJy" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/supply) +"cJz" = ( +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/supply) +"cJA" = ( +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_x = -8; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + name = "Loading Doors"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/supply) +"cJB" = ( +/turf/simulated/floor/plasteel/shuttle, +/turf/simulated/wall/shuttle/interior{ + icon_state = "swall_f5" + }, +/area/shuttle/supply) +"cJC" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall15"; + dir = 2 + }, +/area/shuttle/supply) +"cJD" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/supply) +"cJE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/starboard) +"cJF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cJG" = ( +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 1; + name = "Autoname APC North"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/fsmaint) +"cJH" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/fsmaint) +"cJI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJJ" = ( +/obj/item/device/assembly/mousetrap/armed, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJK" = ( +/mob/living/simple_animal/mouse/brown, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJL" = ( +/obj/item/clothing/head/cone, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJM" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJN" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJO" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJP" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cJQ" = ( +/obj/structure/cable/green{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cJR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Break Room Maintenance"; + req_access_txt = "47" + }, +/turf/simulated/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cJS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_y = -24; + tag = "s" + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJT" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science Break Room"; + dir = 1; + network = list("SS13","Sci") + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJV" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel/cafeteria, +/area/medical/research{ + name = "Research Division" + }) +"cJW" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cJX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/research{ + name = "Research Division" + }) +"cJY" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/research{ + name = "Research Division" + }) +"cJZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/side, +/area/medical/research{ + name = "Research Division" + }) +"cKa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/wall/r_wall, +/area/toxins/mixing) +"cKb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Lab Mainteneance"; + req_access_txt = "8" + }, +/turf/simulated/floor/plating, +/area/toxins/mixing) +"cKc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKd" = ( +/obj/structure/grille, +/obj/item/weapon/shard, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKf" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/turf/simulated/floor/plating, +/area/toxins/mixing) +"cKg" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKh" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKi" = ( +/obj/structure/grille, +/obj/item/weapon/shard, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKj" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/airless, +/area/shuttle/supply) +"cKk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + tag = "icon-4-9"; + icon_state = "4-9"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + tag = "icon-4-10"; + icon_state = "4-10"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/space, +/area/solar/port) +"cKl" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/space, +/area/space) +"cKm" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKo" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/whitepurple, +/area/medical/research{ + name = "Research Division" + }) +"cKp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cKq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/apmaint) +"cKu" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKv" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKw" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKx" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKy" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKz" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cKB" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cKC" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKD" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKF" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/area/toxins/xenobiology) +"cKG" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/area/toxins/xenobiology) +"cKH" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/area/toxins/xenobiology) +"cKI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "maintenance access"; + req_access_txt = "12" + }, +/obj/structure/cable/pink{ + tag = "icon-4-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/asmaint2) +"cKJ" = ( +/obj/structure/cable/green{ + tag = "icon-4-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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKK" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKL" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKP" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cKR" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/space, +/area/space) +"cKS" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKT" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKU" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKV" = ( +/obj/machinery/door/airlock/maintenance{ + glass = 1; + name = "maintenance access"; + opacity = 0; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKW" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKX" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cKZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cLb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cLc" = ( +/turf/simulated/floor/plasteel/whitepurple/side, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel/warningline, +/area/toxins/xenobiology) +"cLd" = ( +/turf/simulated/floor/plasteel/whitepurple/side, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/simulated/floor/plasteel/warningline, +/area/toxins/xenobiology) +"cLe" = ( +/turf/simulated/floor/plasteel/whitepurple/side, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/warningline, +/area/toxins/xenobiology) +"cLf" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLh" = ( +/obj/structure/table, +/obj/item/weapon/rollingpaper, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/stock_parts/manipulator, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLi" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/console_screen, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLj" = ( +/obj/structure/rack, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/scanning_module, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cLk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLo" = ( +/obj/machinery/door/airlock/maintenance{ + glass = 1; + name = "maintenance access"; + opacity = 0; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cLp" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/apmaint) +"cLr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/apmaint) +"cLs" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/maintenance/apmaint) +"cLt" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"cLu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cLv" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cLw" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/syringe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cLx" = ( +/turf/simulated/floor/plasteel/shuttle, +/turf/simulated/wall/shuttle/interior{ + icon_state = "swall_f6" + }, +/area/shuttle/supply) +"cLy" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/manipulator, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLz" = ( +/obj/structure/chair/stool, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLB" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/no_raisin, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLC" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLD" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cLF" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Xenobiology Lab"; + opacity = 0; + req_access_txt = "55" + }, +/turf/simulated/floor/plasteel/whitepurple, +/area/toxins/xenobiology) +"cLG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-2"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cLH" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLI" = ( +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cLJ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cLK" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/paper, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cLL" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/supply) +"cLM" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/supply) +"cLN" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/supply) +"cLO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/solar/starboard) +"cLP" = ( +/obj/structure/chair/stool, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cLQ" = ( +/obj/structure/rack, +/obj/item/weapon/coin/twoheaded, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLR" = ( +/turf/simulated/wall/r_wall, +/area/toxins/xenobiology) +"cLS" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/toxins/xenobiology) +"cLT" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/toxins/xenobiology) +"cLU" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTH)"; + icon_state = "whitepurple"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTH)"; + icon_state = "warningline"; + dir = 1 + }, +/area/toxins/xenobiology) +"cLV" = ( +/obj/item/weapon/bombcore/training, +/obj/item/weapon/screwdriver, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cLW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/bottle/charcoal, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint2) +"cLX" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/weapon/circuitboard/chem_master, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLY" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/bottle/capsaicin, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cLZ" = ( +/obj/structure/closet/wardrobe/green, +/obj/item/clothing/under/color/yellowgreen{ + desc = "A hideous fluorescent yellow jumpsuit." + }, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cMa" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cMb" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cMc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/space, +/area/solar/port) +"cMd" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMe" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMf" = ( +/obj/item/clothing/suit/bio_suit/plaguedoctorsuit, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cMg" = ( +/obj/structure/spirit_board, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cMh" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMi" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cMl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cMm" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMn" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMo" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMp" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cMq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cMr" = ( +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMs" = ( +/obj/item/weapon/wirecutters, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cMt" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/salglu_solution, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMu" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cMv" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/airless, +/area/maintenance/asmaint2) +"cMw" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cMx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMy" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMz" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (WEST)"; + icon_state = "purple"; + dir = 8 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/xenobiology) +"cMA" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/xenobiology) +"cMB" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMC" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMD" = ( +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cME" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (WEST)"; + icon_state = "purple"; + dir = 8 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/xenobiology) +"cMF" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/xenobiology) +"cMG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMH" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMI" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow, +/turf/simulated/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cMJ" = ( +/obj/structure/bed, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMK" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cML" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cMN" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cMO" = ( +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMP" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cMQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cMS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cMT" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMU" = ( +/obj/item/weapon/reagent_containers/glass/beaker, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cMV" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMW" = ( +/obj/structure/cable/green{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMX" = ( +/obj/structure/chair/stool, +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/stack/sheet/mineral/wood{ + amount = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMY" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/cable/green{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cMZ" = ( +/turf/simulated/wall, +/area/toxins/xenobiology) +"cNa" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/toxins/xenobiology) +"cNb" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNc" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab North"; + dir = 8; + network = list("SS13","Sci"); + pixel_x = 0; + pixel_y = 0; + start_active = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNd" = ( +/obj/structure/girder, +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNe" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNf" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNh" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNj" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNk" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + layer = 2.4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNl" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cNm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNn" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNo" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/wrench, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNp" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNq" = ( +/obj/item/toy/spinningtoy{ + desc = "It's a gravitational \"Singulo!\"" + }, +/turf/space, +/area/space/nearstation) +"cNr" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/mob/living/simple_animal/slime, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cNs" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (WEST)"; + icon_state = "purple"; + dir = 8 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/xenobiology) +"cNt" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNu" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/xenobiology) +"cNv" = ( +/obj/item/stack/sheet/metal{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNw" = ( +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/syringe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/clothing/under/color/lightpurple, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNx" = ( +/obj/structure/closet/toolcloset, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNy" = ( +/obj/item/weapon/coin/diamond, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cNz" = ( +/obj/item/weapon/coin/uranium, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cNA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNB" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cNC" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cND" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNF" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNG" = ( +/obj/item/weapon/coin/plasma, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cNH" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cNI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint2) +"cNJ" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab"; + dir = 4; + network = list("SS13","Sci"); + start_active = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cNL" = ( +/obj/structure/table, +/obj/item/wallframe/firealarm, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNN" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cNO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNP" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cNQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNR" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (WEST)"; + icon_state = "purple"; + dir = 8 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (WEST)"; + icon_state = "warningline"; + dir = 8 + }, +/area/toxins/xenobiology) +"cNS" = ( +/turf/simulated/floor/plasteel/purple/side{ + tag = "icon-purple (EAST)"; + icon_state = "purple"; + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (EAST)"; + icon_state = "warningline"; + dir = 4 + }, +/area/toxins/xenobiology) +"cNT" = ( +/obj/structure/chair, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cNU" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cNV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-4"; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNW" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cNX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cNY" = ( +/obj/machinery/nuclearbomb/syndicate, +/obj/machinery/door/window{ + dir = 1; + name = "Secure Storage"; + req_access_txt = "150" + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"cNZ" = ( +/turf/simulated/floor/plasteel/whitepurple/side, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel/warningline, +/area/toxins/xenobiology) +"cOa" = ( +/turf/simulated/floor/plasteel/whitepurple/side, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/warningline, +/area/toxins/xenobiology) +"cOb" = ( +/turf/simulated/floor/plasteel/whitepurple/side, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel/warningline, +/area/toxins/xenobiology) +"cOc" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOd" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/weapon/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOe" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab South 2"; + network = list("Sci"); + start_active = 1 + }, +/obj/machinery/computer/camera_advanced/xenobio, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOf" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOh" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24; + tag = "ne" + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOj" = ( +/obj/machinery/monkey_recycler, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOk" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab South 1"; + network = list("Sci"); + start_active = 1 + }, +/obj/machinery/computer/camera_advanced/xenobio, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOl" = ( +/obj/machinery/smartfridge/extract, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOm" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma{ + amount = 3; + layer = 2.9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"cOo" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Escape Pod 4"; + dir = 8; + network = list("SS13","Sci"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cOp" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_4) +"cOq" = ( +/turf/simulated/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_4) +"cOr" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_4) +"cOs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cOt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cOu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOA" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/whitebot, +/area/toxins/xenobiology) +"cOB" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOC" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOD" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOE" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cOG" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cOH" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "0" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cOI" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cOJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = 6; + pixel_y = -26 + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cOK" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_asteroid4"; + shuttleId = "pod4" + }, +/turf/simulated/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cOL" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/shuttle/pod_4) +"cOM" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_asteroid4"; + name = "asteroid" + }, +/turf/space, +/area/space) +"cON" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/stack/sheet/mineral/wood{ + amount = 3 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cOO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cOP" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOR" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOX" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 0 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cOZ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cPa" = ( +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cPb" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cPc" = ( +/obj/structure/sign/pods, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cPd" = ( +/turf/space, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_4) +"cPe" = ( +/turf/space, +/turf/simulated/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_4) +"cPf" = ( +/obj/structure/closet, +/obj/structure/cable/pink{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPh" = ( +/obj/structure/table/glass, +/obj/machinery/light, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPi" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPj" = ( +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable/pink{ + tag = "icon-2-4"; + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPl" = ( +/obj/structure/cable/pink{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPm" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPn" = ( +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPo" = ( +/obj/structure/cable/pink{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + tag = "icon-2-8"; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/structure/cable/pink{ + tag = "icon-0-8"; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + auto_name = 1; + dir = 2; + name = "Autoname APC South"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -25; + tag = "SOUTH" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPr" = ( +/obj/structure/table, +/obj/item/device/electropack, +/obj/item/device/healthanalyzer, +/obj/item/device/assembly/signaler, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "whitepurple" + }, +/area/toxins/xenobiology) +"cPs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cPt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink{ + tag = "icon-0-9"; + icon_state = "0-9" + }, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cPu" = ( +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cPv" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Test Chamber Monitor"; + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cPw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = -6; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cPx" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cPy" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cPz" = ( +/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/structure/cable/pink{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cPA" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2, /obj/item/weapon/shard = 2, "" = 3); + lootcount = 2; + name = "random material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cPB" = ( +/turf/simulated/floor/engine/vacuum, +/area/toxins/xenobiology) +"cPC" = ( +/obj/machinery/shieldwallgen{ + req_access = list(55) + }, +/obj/structure/cable/pink, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cPD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cPE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cPF" = ( +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door"; + unacidable = 1 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/pink, +/turf/simulated/floor/plating, +/area/toxins/xenobiology) +"cPH" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/device/flashlight/slime = 1, /obj/item/weapon/stock_parts/cell/high/slime = 1); + name = "random yellow slime device" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cPI" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/simulated/floor/plating{ + burnt = 1; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cPJ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/toxins/xenobiology) +"cPK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPL" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPM" = ( +/obj/item/stack/sheet/mineral/wood, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cPN" = ( +/obj/structure/bookcase, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cPO" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/toxins/xenobiology) +"cPP" = ( +/obj/structure/table_frame, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/stack/sheet/metal = 1, /obj/item/stack/rods = 2); + name = "random metal material damage spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cPQ" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cPR" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/stack/sheet/mineral/wood, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cPS" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint2) +"cPT" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + tag = "WEST" + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPU" = ( +/obj/effect/spawner/lootdrop{ + loot = list(/obj/effect/decal/remains/xeno = 49, /obj/structure/alien/egg = 1); + name = "2% chance xeno egg spawner" + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + unacidable = 1 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPW" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPX" = ( +/obj/machinery/sparker{ + dir = 2; + id = "Xenobio"; + pixel_x = 25 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPY" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Secure Xenobiology Pen"; + dir = 1; + network = list("Xeno","Sci"); + start_active = 1 + }, +/turf/simulated/floor/engine, +/area/toxins/xenobiology) +"cPZ" = ( +/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQa" = ( +/obj/structure/barricade/wooden, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQb" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQc" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/weapon/wirecutters, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQd" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/stack/sheet/mineral/wood, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQe" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/item/stack/sheet/mineral/wood{ + amount = 3 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQf" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQg" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQh" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQi" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + broken = 1; + icon_state = "platingdmg1" + }, +/area/maintenance/asmaint2) +"cQj" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQk" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQl" = ( +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQm" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQn" = ( +/obj/item/weapon/lighter/greyscale, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"cQo" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/maintenance/asmaint2) +"cQp" = ( +/obj/structure/table/optable, +/obj/item/weapon/surgical_drapes, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"cQq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) +"cQr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/simulated/wall, +/area/toxins/test_area) +"cQs" = ( +/turf/simulated/floor/plating/airless, +/area/toxins/test_area) +"cQt" = ( +/obj/effect/spawner/structure/window, +/turf/simulated/floor/plating/airless, +/area/toxins/test_area) +"cQu" = ( +/turf/simulated/wall, +/area/toxins/test_area) +"cQv" = ( +/turf/simulated/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQw" = ( +/obj/structure/chair, +/turf/simulated/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQx" = ( +/turf/simulated/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQy" = ( +/obj/structure/chair, +/turf/simulated/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQz" = ( +/obj/structure/table, +/obj/item/weapon/cautery, +/obj/item/weapon/scalpel, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"cQA" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQB" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQC" = ( +/turf/simulated/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQD" = ( +/turf/simulated/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQE" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/plating/airless, +/area/toxins/test_area) +"cQF" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/simulated/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQH" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQI" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 1; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + start_active = 1; + use_power = 0 + }, +/obj/item/target/alien{ + anchored = 1 + }, +/turf/simulated/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cQK" = ( +/turf/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/toxins/test_area) +"cQL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/simulated/wall, +/area/maintenance/atmos_control) +"cQM" = ( +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"cQN" = ( +/obj/structure/cable/green{ + tag = "icon-1-6"; + icon_state = "1-6" + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cQO" = ( +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/item/weapon/wirerod, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cQP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"cQQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"cQR" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cQS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/plasteel, +/area/hallway/primary/central) +"cQT" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cQU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"cQV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plasteel/warning{ + dir = 8 + }, +/area/engine/engineering) +"cQW" = ( +/obj/structure/cable/green{ + tag = "icon-1-4"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + tag = "icon-1-2"; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"cQX" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/engine/engineering) +"cQY" = ( +/obj/structure/cable/green{ + tag = "icon-1-9"; + icon_state = "1-9" + }, +/obj/structure/cable/green{ + tag = "icon-4-9"; + icon_state = "4-9" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cQZ" = ( +/obj/structure/cable/green{ + tag = "icon-4-8"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cRa" = ( +/obj/structure/cable/green{ + tag = "icon-5-8"; + icon_state = "5-8" + }, +/obj/structure/cable/green{ + tag = "icon-1-8"; + icon_state = "1-8" + }, +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/engine/engineering) +"cRb" = ( +/turf/simulated/floor/plasteel/whitepurple/side{ + tag = "icon-whitepurple (NORTHWEST)"; + icon_state = "whitepurple"; + dir = 9 + }, +/turf/simulated/floor/plasteel/warningline{ + tag = "icon-warningline (NORTHWEST)"; + icon_state = "warningline"; + dir = 9 + }, +/area/medical/research{ + name = "Research Division" + }) +"cRc" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2"; + tag = "cargoshuttleup" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply) +"cRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/apmaint) +"cRe" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Cargo Escape Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/hallway/secondary/exit) +"cRf" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Cargo Escape Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/exit) +"cRg" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Escape Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/hallway/secondary/exit) +"cRh" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Escape Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/exit) +"cRi" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Security Escape Airlock"; + opacity = 0; + req_access_txt = "2" + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/hallway/secondary/exit) +"cRj" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Security Escape Airlock"; + opacity = 0; + req_access_txt = "2" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/exit) +"cRk" = ( +/turf/simulated/floor/plasteel, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining Dock Airlock"; + opacity = 0; + req_access = null; + req_access_txt = "48" + }, +/turf/simulated/floor/plasteel/sandeffect, +/area/quartermaster/miningdock) +"cRl" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Solar Maintenance"; + opacity = 0; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/portsolar) +"cRm" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Solar Maintenance"; + opacity = 0; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/starboardsolar) +"cRn" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Supply Dock Airlock"; + opacity = 0; + req_access_txt = "31" + }, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/quartermaster/storage) +"cRo" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Supply Dock Airlock"; + opacity = 0; + req_access_txt = "31" + }, +/turf/simulated/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/quartermaster/storage) +"cRp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space/nearstation) +"cRq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space/nearstation) +"cRr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-4"; + d1 = 1; + d2 = 4 + }, +/turf/space, +/area/space/nearstation) +"cRs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space/nearstation) +"cRt" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor3" + }, +/area/shuttle/syndicate) +"cRu" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"cRv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/syndicate) +"cRw" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/space; + width = 18 + }, +/turf/space, +/area/space) +"cRx" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/space; + width = 18 + }, +/turf/space, +/area/space) +"cRy" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/space; + width = 18 + }, +/turf/space, +/area/space) +"cRB" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/airless, +/area/space) +"cRA" = ( +/turf/simulated/floor/plating/airless, +/area/space) +"cRz" = ( +/turf/simulated/wall, +/area/space) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaacaacaacaacaacaacaacaaeaaeaafaaeaaeaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaeaaaaaaaaaaaaaaaaaaaagaagaahaaiaahaagaagaaaaaaaaaaaaaaaaaaaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaajaakaakaakaakaakaakaagaalaamaanaaoaapaagaakaakaakaakaakaakaajaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaqaaraaraaraaraaraasaataauaavaawaaxaayaazaazaazaazaazaaAaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaBaajaakaakaakaakaagaaCaaDaaEaaFaaGaagaakaakaakaakaajaaHaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaeaaeaaaaaaaagaaJaaKaaLaaMaaNaagaaaaaaaaeaaeaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaeaaPaaQaaQaaPaaQaaQaaQaaQaaRaaPaaQaaQaaPaaeaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQaaQaaQaaQaaQaaQaaSaaQaaQaaQaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQaaTaaUaaVaaUaaWaaUaaVaaUaaXaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQaaYaaZabaabaabbabaabaabcabdaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQabeabfabgabhabiabhabjabfabkaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaajaaIablaaQaaQaaPabmabfabnaaPaboaaPabpabfabqaaPaaQaaQablabraajaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaajabsabtabuaaQabvabwabxabyaaQaaQaaQabzabxabAabBaaQabCabtabDaajaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaajaaIablaaQaaQaaPabmabfabnaaPabEaaPabpabfabqaaPaaQaaQablaaOaajaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQabeabfabGabHabIabJabKabLabMaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQabNabOabPabQabRabaabSabTabUaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaaaQaaQabVabWabXabYabZacaacbaccacdaaQaaQaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaakaaIaakaaeaaQaaQaaQaceacfaaQacgaaQachaciaaQaaQaaQaaeaakaaOaakaaeaacaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjacmaclaclaclaclaclacmacLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaajacnaajaaeacoacpacpacqacracsactacuacracvacpacpacoaaeaajacwaajaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmacxacyaczacAacBacCacCacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaakacDaakaaeacoaaeacEacFacGacGacHacGacGacIacJaaeacoaaeaakaaOaakaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmacKacyacyadJacyacyacyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaacoacMacNacOacPacQacRacSacTacUacVacWacoaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmacXacyacyacyacYacyacZacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaacoadaacpacpadbadcaddadeadfacpacpadgacoaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhacmacmacmadiackacmacmadjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaaacoadaaaeacpadkadladmadnadoacpaaeadpacoaaaaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhacmadqacyadracmadjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakaaIaakaaeacoadsacoacoacpadtaduadvacpacoacoadwacoaaeaakaaOaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmadxacyadyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakadzadAadBadBadCaaaacoacpadDadEadDacpacoaaaadFadGadGadHadIaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafracmacmacmacmacmadxacyadyaeeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakadKaajaakablablablablacpacpadLacpacpablablablablaakaajadMaakaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmadNacyacyadOacmadxacyadyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaakadPaaraaradQadRadSadTadUadVadWadXadYadZaeaaebaecaazaazaedaakaaaaacaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmadNacyaegaefacmadxacyadyacmacmaehaevacLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaajaakaakaakablaejaekaejaelaemaenaeoaepaeqaeraeqablaakaakaakaajaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaesaetaetaetaetaetaeuaaaaaaaaaaaaaaaaaaaaaaesaeuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmadNacyacyaeMacmaeXaeVaeXacmacyacyacyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaeaaaaaaaaaablaewaexaeyablaezaeAaeBablaeCaeraeqablaaaaaaaaaaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaesaetaeDaeEaeFaeFaeGaeHaeIaetaeuaaaaaaaaaaaaaesaeJaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmadNacyacyacyaeLacyacyacyafEacyacyacyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacablablablablablaeNaeOaePablablaeQablablaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaesaeRaeGaeFaeFaeFaeFaeFaeFaeFaeSaeIaeuaaaaaaaesaeTaeUaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmadNacyacyacyaeWacyacyacyaeXacyacyacyacmaeiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaeZafaafbafcafdafeaffafgafhaajafiafjaajaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaesafkaeJaflaeFaeFaeFafmafnaeFaeFaeFafoafpaeuaesaeTafqaeUaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafracmacmacmacmacmacmafsacyacyacmacmacmacmacmacmaeiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaeZaftafuaaeafvaaeafwafxafxafxafyaajafzaajaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaesafkaeDaeGaeIaetafAafBafBafBaetaetafCaetaeJaeJaeRafqafqaeUaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmafHafGagcafYagdacmacyacyacyacmagiafIafJafKafLacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaaaaaaeZaftafuafNafOafPafPafPafPafQafPafPafRafSaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafpaeDaeFafTaeFafUafVaeFaeFaeFaeFaeFaeFaeFaeFaeFafWafqafXaetaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmagjafGafGafGafGagkacyacyacyacmacyacyacyaegagaacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaaaeZaftafuafNagbaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVaeFaeFaeFaeFafUafVaeFaeFaeFaeFaeFaeFaeFaeFaeFafpaetafkaeuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmafHafGafGafGafGaglacyacyacyafZacyacyacyacyacyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagfafuafNagbaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafBaeFaeFaeFaeFafUafVaeFaeFaggaetaetafCaflaeFaeFafVaghaeIaeJafAaeuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaacmafGafGafGafGafGagracyacyacyageacyacyacyacyafDacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoafNagbaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafBaeFaeFaeFaeFaeFafVaeFaeFafVagpagqaeFafVaeFaeFafVaeFaeFaeFaeIafkaeuaaaaesafAaetaetaetaetaetaetaetafAaeuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmagzagtagBagAagDacmacyacyacyacmagmagnacyacyafDacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeaguagvaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafBafUafUaeFaeFaeFafBaeFaeFafVaeFagwaeFafVaeFaeFafBaeFagxaeFaeFaeIafkaetafkaeDagyagxaeFaeFaeFaeFaeFaeIaeRaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmagEafGagFacmacmacmaeXcNYaeXacmagsacmacyacyacyacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaaaaeaaeaaaaaaaaaaaeaaeaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafBagHagIagJaeFagKagLaeFaeFafVaeFaeFaeFafVagJaeFagLaeFagMagNagOagPagQagOagQagPagPagRaeFaeFaeFagxaeFaeFafCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmcQzcQpcRtacmaaaacmagCagCagCacmacmacmcRvcRuaeYacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaaaaaaaeaaeaaaaaeaaeaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaaafBagVafUaeFagJaeFafBagJaeFafVaeFagWagXafVaeFaeFafBaeFagJaeFaeFaggafkaetafkaflaeFaeFagxaeFaeFaeFaeFaggaeRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacmagCagCagCacmaaaadhagSagTagUadjaaaacmagCagCagCacmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaafBaeFaeFaeFaeFaeFafVaeFaeFaeIafCaetaetaeDaeFagJafVaeFaeFaeFaggafkagYaaaagZaeJaetaetaetaetaetaetaetaeJagYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhagSagTagUadjaaaaaaaaaaaaaaaaaaaaaadhagSagTagUadjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeaguagGaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaafBaeFaeFaeFaeFaeFafpaflaeFaeFagJaeFaeFagJaeFaeFafVahaaggafAaeJagYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaaaaaaaeaaeaaaaaeaaeaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaafVahbahcahcaeFaggafkaeJafCaetaetafAaflaeFaeFaeFafpaetafkagYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaaaaeaaeaaaaaaaaaaaeaaeaaaaaaaaeaaaaaaaaaafvaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaafpaflaeGaeGaggafkaeDaeFaeFaeFahdaeIaeRaeFaheaeFafWafqahfaetaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaaaeaaaaaaaaaaaeaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaagZafkaetafAaeJaeDaeFaeFaeFaeFaeFahgafVaeFaeFaggaeRafqafqaeUaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaguagGaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaeaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaabaaaahhahiafWaeFaeFaeFaeFaeFaeFaeFahgafVaeFaggagYagZahjafqaeUaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaabaaeaaaaaaaaeaaeaaaaaaahkahlahlahlahmaaaaaaaaeaaaaaaagZafAaeRahnaeFaeFaeFaeFaeFaeFaeFafpafAagYaaaaaaagZahjaeUaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaafMaaeagoagGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaeaaaaaeaaeaaeaaaaaaahoahpahqahrahoaaaaaaaaeaaeaaaaaaagZaeRaeFaeFaeFaeFahsahdaeFaeFafpagYaaaaaaaaaaaaagZafAaeKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafMaaeagoagGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaeaaeaaeaaaahtaaaaaaahoahpahqahrahoaaaaaaahtaaeaaaaaaaaaagZafCaetaetaetaetaetaetahuagYaaaaaaaaaaaaaaaaaaagZagYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaguagGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahvahvahvahvahvahtahwahwahvahtaaaahkahxahyahzahAahxahmaaaahtahvahwahwahvahwahBahwaaeaaaaaaaaeahwahCahwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaeaacaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaadaaeagoagGaaaaaaaaaaaaaaaaaaaabaaaaaaahDahEahEahFahvahGahvahHahIahwahwahwahoahJahqahqahqahKahoahwahwahwahLahMahvahNahOahwahwahwahwahwahwahOahNaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaacaaeagoagGaaaaaaaaaaaaaaaaaaaaaaaaahPahQahRahSahTahUahOahUahVahIahWahOahWahXahqahYahYahYahqahZahWahOahWahLaiaahvahwahBahwaibaicaicaibahwahCahwahtaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaidaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaacaaeagoagGaaeaaaaaaaaaaaaaaaaaaaaaaaaaieahEahEaifahvaigaihaiiahIaijahwahwahoaikahqahqahqailahoahwahwaijahLaimahvainainainainainainainainainainahwaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaidaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaeaaeaaaaaaaioaaaaaaaaeaaeaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaacaaeaguagGaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaahvahvahvahvahvahtaipahIahVaiqahwahlahqahYahYahYairahlahwaisaitahLahMaiuahMahMahMahMahMahMahMahMahMahMahwaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaeaaeaaaaaaaioaaaaaaaaeaaeaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaeaaaaaaaioaaaaaaaaeaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaacaaeagoagGaaaaaeaaeaaaaaaaaaaaaaaaaaaaivaiwaiwaixahvaiyahvaizahIahVahMahwahlahqahqaiAahqaiBahlahwahMaitahLahMaiuaiCahMaiDaiEaiEaiEaiEaiFahMahMahwaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaeaaaaaaaioaaaaaaaaeaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaiGaiGaiGaiGaiHaaeaiIaaeaiHaiJaiJaiJaiJaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaacaaeagoagGaaaaaaaaeaaeaaaaaaaaaaaaaiKaiLaiMaiNaiOaiPahOaiPahVahIaiQahMahwahlahqahYahYahYaiRahlahwahMaitahLaiSahvahvahtahtahwahwahwahwahtahtahtahtaaeaaeaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaiGaiGaiGaiGaiHaaeaiIaaeaiHaiJaiJaiJaiJaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaeaiTaiUaiUaiVaiWaiXaiYaiZajaajaajbaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaabaacaaeagoagGaaaaaaaaaaaeaaeaaaaaaaaaaaaajcaiwaiwajdahvaigaihajeahIahVaisahwahlahqahqahqahqajfahlahwajgaitahLahMajhajiahwaaaajjajkajkajlajkajkajkajmajkajkajnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaeaiTaiUaiUaiVaiWaiXaiYaiZajaajaajbaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeajoajoajoajoajpaaeaiXaaeajpajqajqajqajqaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaacaaeaguajraaaaaaaaaaaaaaeaaeaaaaaaaaaaaaahvahvahvahvahvahtahMahIaijahwahwahoajsahYahYahYajtahoahwahwaijahLahMajhajuahwahwajlajvajvajvajvajvajvajvajwajxajyajnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeajoajoajoajoajpaaeaiXaaeajpajqajqajqajqaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaaaiXaaeaaaaaaaaaaaaaaaaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaacaaeagoajzajAafPafPafPafPajBajCaaaajDajEajDajFajDajGajHajIajJahIahWahOahWahZahqahqahqahqahqahZahWahOahWahLahMajhajKahOajKajLajMajMajMajMajMajMajMajMajMajMajNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaaaiXaaeaaaaaaaaaaaaaaaaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaiGaiGaiGaiGaiHaaeaiXaaeaiHaiJaiJaiJaiJaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaacaaeagoaaeaaeaaeaaeaaaaaaajDajOajDajDajPajQajRajDajSajTahvajUahIahwahwahwajVajWajWajWajWajWajXahwahwahwahLahMajhahwahwahwajlajYajYajYajYajYajYajYajZajZakaakbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaacaaeaiGaiGaiGaiGaiHaaeaiXaaeaiHaiJaiJaiJaiJaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaiTaiUaiUakcaiWaiXaiYaiZajaajaajbaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeakdakeakfakgakgakgakhajDakiakjajDajPajQakkajDajQajTahvajUahIajiahwaaaaklakmaknaknaknakoakpaaaahwakqahLahMajhajiahwaaaakrajkajkajlajkajkajkajmajkajkakbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaiTaiUaiUakcaiWaiXaiYaiZajaajaajbaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeajoajoajoajoajpaaeaiXaaeajpajqajqajqajqaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaksaktakuakvakwakxakyajDakzajDajDajDakAajDajDajQajTahvajUakBahvahvahtahtahwahwahwahwahwahtahtahvahvakCahMahvahtahtahtahwahwahwahwahtahtahtakDahtahtahtahtahtafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeajoajoajoajoajpaaeaiXaaeajpajqajqajqajqaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaaaiXaaaaaaaaaaaeaaeaaaaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeakEakEakEakEakEakEaaeaaeaaeakEakEakEakEakEakEaaeaaeakyakFakGakHakyajQakiakIakJakKakLajHakMakNakOahvajUahMakPakQakRakSakTakTakTakTakTakUakRakVakPahMahMahvakWakXakYakZakZalaakZakZalbalcaldakZalbalealfalcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaaaiXaaaaaaaaaaaeaaeaaaaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaiGaiGaiGaiGaiHaaeaiXaaeaiHaiJaiJaiJaiJaaeaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaakEakyakyalgakyakyakyakEakEakEakyakyakyalgakyakyaaeaaaakyalhalialjakyalkallalmalnalnaloalpalqalralsahvaltalualvalwalwalxalyalyalzalyalyalAalwalwalBalCalDalEalFalGalcalcalHalcalcakZalIalcalIalJalKakZalLalMaaeaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaiGaiGaiGaiGaiHaaeaiXaaeaiHaiJaiJaiJaiJaaeaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaeaiTaiUaiUaiVaiWaiXaiYaiZajaajaajbafvafvaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaeakEakyakyakyakyakyakyakyalgakyakyakyakyakyakyalNalNakyakyakyalOalPakyakyalQalRakyalSalTajTalUalValUalUalUalUalUalUaiualWalXalXalXalXalXalYaiualZalZalZalZalZamaambalcamcamdamealcamfakZalMalJamgamhamiamjalcaaealcalcalHalcalcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaeaiTaiUaiUaiVaiWaiXaiYaiZajaajaajbaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeajoajoajoajoajpaaeaiXaaeajpajqajqajqajqafvaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaeaaeaaaaaaaaeakEakyakyakyamkamlammamnakyakyakyampammaneanbakyakyamqamramsamtamuamvamwamxamyamzakyakyalTajTalUamAamBamCamDamEamEalUamFamGamHamIamJamKamLamMamNamOamPamQamRalZamaamSalcamcamTamdalcalcakZalcamUalIakZakZamValcaaealcamWamXamYalcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeajoajoajoajoajpaaeaiXaaeajpajqajqajqajqaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaiXaaaaaaaaaaaaaaaaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeakEakyakyaouanaanTamZanaancammandanaamZanTanaaowanganfanganhanianjankanlanlamyanlanmakyalTajTalUannanoanpanqanransantanuanvanwanxanyanzanAanBanCanDanEanFanGalZamaanHalcamdameamcalcanIakZalcalbanJanKanLanManNaaealcalbakZanOalcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaanPaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaanQaaaaaaaaaaaaaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanRanRanSanRanSanRanRaaeaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaeaaeakEakyakyalNanaanTameamcanaamZamZamZanaamcameanTamZakyakyakyanUanlanVanWanXanlamyanlanYakyalTajTalUanZamEaoaaobaocamEaodaoeaofaogaogaogaogaoganBanCaohaoiaojaokalZamaaolalcalcalcalcalcakZakZalcalcalcalMalcalcalcalcalcalcaomaonaonaonaonaonaonaonaonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaooaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaioaaaaaaaaaaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSaopaoqaoraosaotanSaaeaaaaaaaaaaaaaabaaaaaaaaaaaaaaeaaeaaaakEakyamZalNaptameameameapuamcaovamcapuameameameaqeakyaoxaoyaozanlaoAaoBaoCaoDaoEaoFaoGakyalTaoHalUaoIanoaoJaoKaoLaoMaoNaoOaoPaoQaoRaoSaoTaoUaoVaoWaoXaoYaoZapaalZamaapbapcapdalMapeakZapfakZalMapgakZakZakZapfakZalIanIakZakZaonaphapiapjapkaplapmaonaaeaaeaaeaaaaaaaaaapnaaaaaaaaaaaeaaeaaaaaaaaaaooaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaioaaaaaaaaeaaeaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeanRapoappapqaprapsanRaaeaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaamrakyamZaqkamcarfameameameamcaovamcameameameameamcapvapwapxaozanlapyapzapAaniapBapCapDakyalTapEalVapFapGapHapIamEamEalUapJapKahvahvahvahvahvapLahMalZapMapNalZalZamaapOapPapQapRapSapRapRapRapRapRapRapTapRapUapRapRapRapVakZaonapWapXapYapYapZaqaaonaaaaonaqbaonafvafvaqcaaaaaaaaaaaaaaeaaeaaaaaaaooaaaaaaaaeaaeaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaqdatoaqdaaeaaeaaaaaaaaaafvafvafvafvaaeaaaaaaaaaaaaanRanRanRanRanRanRanRaqfaqgaqhaqiaqjanRanRanRanRanSanRanRanRaaeaaeaaeaaaaaaaaaakEakyamZatqameameamcameameamcaovawvameameamcameameapvapwaqlaqmaqnaqoaqpaqpaqqaqrapCaqsakyalTajTalUalUalUalUalUalValUalUaqtaquaqvaqwaqxaqyaqzaqAaqBaqCaqDaqEaqFaqGaqHaqIaqJaqKaqLaqMaqNaqOaqNaqPaqNaqNaqNaqQaqNaqRaqNaqNaqSasaaqTaqUaqVaqWaqXaqYaqZaraaraaraarbaraafvarcardarcaaeaaeaaaaaaaaeaaeareaxPareaaeaaeaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaqdargaqdaaeaaaaaaaaaaaaaaeaaaanRarhanRaaaaaaaaeaaeanRariarjarkarlarjarmarmarmarnaroarmarmarjarjarjarparqarranRaaeaaeaaeaaaaaaaaaakEakyarsatqameamcaztamcamcazsaovazsamcamcaztamcameapvapwaruaozanlarvarwarxaryaqrapCakyakyarzarAarBarCalnalnarDalnarEarFahMarGarHarIarJarKalwarLahMarMarNarOarParParParQarRarSarTarUarVarWarVarXarXarXarYarZarZarXarXarXatsasbaonascapXasdapYaseasfasgashasgasiaraaraaraardarcarcaaeaaeaaaaaaaaeareasjareaaeaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaqdaqdatoaqdaqdaaaaaaaaaaaaaaeaaaanRaskanRaaeaaeaaeaabaslasmasnasnasnasnasnasnasnasoaspasnasnasnasnasnasnasqasranRaaeaaeaaeaaaaaaaaaakEakyakyatqameameamcaJdaDzazxaDzaEPaDzaJiamcassameapvapvakyakyastakyakyamrasuasvaswakyasxasyaszasAasAasAasAasAasAasBarMasCahMahMasDajUasEahMaiCasFarMasGasHasHasHasHasHasHasIasJasKasHasLasHasHameamcameameameamcameazXasNaYOaonasOasPasQasRasSasTasUasVasWasXasYasZataatbatcarcaaeaaeaaeaaeareareaxPareareaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeanRanSanSanSanSanRanRanRanRanRanRanRanRatdateatfatgatdanRanRanRanRanRanRanRathatiatiatiatiatiatjatkatlatlatlatlatlatlatlatlatlatlatlatlatlanRanRatmatnanSaaaaaaaaeaaeaaaaaaakEakyamZaFTameatpazucRpartamcaovamcartcRqaFSameameapvattatuatvatwatwatxakyatyatzatAakyatBatCatDatEatEatEatEatEatFatGatHatIatIatIatJatKatLatIatIatIatMasGasHatNatOatPatQatRatSatTatUatVatWatXatYameatZatZatZatZatZamcazXasNaYOaonauaaubaucaudaueaufasgaugasgauharaaraaraauiarcarcaaeaaeaaaaaaaujaukaulaumaujaaaaaaaaaaaaaabaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaanRaunauoauoaupauqaurausautauuauvauwauxatdauyauzauAatdauBauqauqauCauDauEanRauFauGasnasnasnasnauHauIatlauJauKauLauMauNauOauPauQauRauSauTatlauUauVatmaqianSaaaaaaaaaaaeaaeaaaakEakyamZaFTamcamcamcaFUamcauXauYauZamcaFUamcamcamcapvavbavcaJcavdaveavfakyavgaqravhakyaviavjatEavkavlavmavnatEatEavoavpavqavqavravsavtavuavvarParParPavwasHavxavyavzavAatRavBavCavDavEavFavGavHavIavJavKavLavLatZameazZasNaYOaonaonaonaonavNavOaonaraaraaraaraaraafvarcauiavPaaeaaeaaaaaaaaaaujavQavRavSaujaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanRanRanRauqavTavUauqanRavVanRanRanRanRanRauvatdavWavXavYatdavZauqausawaawbawcauVawdaweauqauPauPawfauPauPatlawgawhawiawjawkawlauPawmawnawoawpatlanRanRatmaqianSaaaaaaapnaaaaaeaaeamrakyawqaFTameaztamcaFUaovavaaJeauWaovaFUamcaztameapvavbawrawsawtawuaJfawwawxawyawzawAawBawCawDawEawFawGawHawIatEawJawKakLajQahvawLajUawMasHasHasHasHasHasHawNavyavyawOatRawPawQawRawSawTawUawVamcatRawWavLawXatZameazZawYaCJawZaxaawZaxbaxbaxcaxdaxdaxdaxdaxdaxdaxdaxdaxeaaaaaaaaaaaaaaaaaeaujaxfaxgaxhaujaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeanRaxianRaxjaxkaxlaxmanRaxnaxlaxoauqaxpaxqaxratdatdaxsatdatdaxtauqaxuaxvaxuaxuanRaxwaxxauqaxyaxzaxAaxBaxCatlaxDaxEaxEaxFaxGaxHauPaxIaxJaxKaxIatlamcanSatmaqianSaaaaaaaxLaaeaaeaaaakEakyamZaFTamcamcamcaFUamcaxMatraxNamcaFUamcamcamcapvavbaxOatwatwatwatwakyaJgaxQaxRaxSaxTaxUaxVaxWaxXaxYaxZayaatEawJawKaybakKahvaycaydawMasHayeayfaygayhayiayjaykaylaymaynayoaypayqayraysaytayuayvaywayxavLayyatZameazZayzaYOayAayBaonaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaeaaaaaaaaaaabaaeaaeaujaujayCaujaujaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaanRayEanRayFayGanRanRanRauqayHayIauqayJaxqayKayLayMayNayOayPayLayQayRaySayLayLayLayTayUarjayVayWayXayYayZatlazaazbawiazcazdazeazfazgazhaziazjazkazlazmaznazoazpazqazqazraaeaaaaaaakEakyamZaFTameameazucRpartamcaovamcartcRqaFSameameapvazvazwaJhatwatwazyakyazzazAazBakyatBatCatEazCazDazEazFazGatEawJawKazHazIahvazJajUazKasHazLayfaygayhayiazMazNazOazPazQazRazSazTazTazUazVazWameatZatZatZatZatZamcazZayzasMazXazXazXazXazXazXazXazXazXazXazXazYazZazZazZaAaaAaaAaaAaaAaaAaazYaAbaAcaAdazYazYazYazYazYazYazYazYazYazYazYazYazYaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanRanRanRanRanRaAeaqhanRaAfanRaAgaosaAhauqaAiaxqaAjaAkaAlaAlaAlaAlaAlaAlaAlaAmaAmaAmaAmaAnaAoaApaAqatlaAratlatlatlaAsaAtaAuaAvaAwaAxaAyaAzaAwaAAaABaACameanSatmaqianSaaaaaeamdaaaaaaaaaakEakyakyatqameameamccRraDzaJjaKIaKHaDzcRsamcameameapvapvakyakyaADakyakyamraAEasvaswakyaAFaAGatEaAHaAIaAJaAKaALatEaAMawKaANahvahvaAOaAPaAQaARaASaATaAUaAVayiaAWazNaAXavyavyaAYaAZaBaaBbaBcaBdaBeaBfaBgaBhaBiaBiatZameazZaBjaEdapRapRapRapRapRapRaBkapRapRapRaBlaBmapRapRapRaBmaBmaBmaBmaBmaBmaBmaBmaBnaBoaBpaBoaBoaBoaBqaBraBsaBtazYaBuaBvaBwazYaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSaBxaxlaByanRaBzaBAauVaBBanRauqaxlaxlauqaBCaxqaAjaqiaBDaBEaBFaBDaBGaBHaBDaxlauqaBIauqaBJaBKaBLaBMaBNaBOaBPaBQaBRaxEaxEaxEaBSaBTaBUauPauPaBVaBWauPatlamcanSatmaqianSaaeaaeaBXamdamdaaeakEakyaBYatqameamcaztamcamcaKJaFUaKJamcamcaztamcameapvapwapxaBZaCaaCbaCcaCdaCeaqrapCakyaCfaAGatEaCgaChaCiaCjaCkatEawJawKaClahvaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaCxaCyaCzaCAaCBaCCaCDavyaCEaCFawVamcatRaCGaCHaCIatZameazZayzaFrazXaCKaCLazXaCMaCNazXazXapPaCOazXazYazZazZazZaAaaAaaAaaAaaAaaAaazYaCPaCQazYaCPaCRazYazYazYazYaCSaCTazYaCUaCVaCVazYaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSaCWauqauqaCXaCYaCZarmarmarmarmarmarmarmarmarmaDaaDbaBDaDcaDdaDeaDdaDfaDgaDgaDgaDgaDgaDgaDgaDhaDiaDjaDkaDlaDmaDnaDoaAzaDpaDqaDraDsauPaDtaDuaDvaDwatlanRanRatmaqianSaaeamdamdaDxaaaaaaakEakyamZatqameaKKamcameameamcaFUamcameameamcameameapvapwaqlaDybugaDAaDAaDAaDBaDCaDDakyaDEaAGatEaDFaDGaDHaDIaDJatEawJaDKaDLahvaDMaDNaDOaDPaDQaDRaDSaDTaDUaDQaDVaDWaDXayiaDYaDZavyaEaavyaCEaEbayuayvaywaEcaBiaBiatZameazZayzaGyaEeaEeaEeaEeaEeaEeaEeazXapPaEfazXaaaaaeaaaaaeaaaaaaaaaaaeaaaaaeaaaazYaCQazYaEgaEhaEiaCVaEjazYaCSazYazYaCPaEkazYazYaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabanRanRanRanRanRaElaEmasnasnasnasnasnasnasnasnasnaEnaEoaBDaEpaEqaBDaEraEsaDgaEtaEuaEvaEwaExaEyaEzaEAatlaEBaECaEDatlaEEawkaEFaEGaEHaEIauPaEJaEKaELaEMatlaENanRatmaqianSaaeaaeaaaamdaaaaaaamrakyamZbuiamcameameameameamcaFUamcameameameameamcapvapwaruaEObysaoDaEQaERaESaETaEUakyaEVaAGatEaEWaEXaEYaEXaEZatEawJaFaaFbahvaFcaFdaFeaFfaFgaFhaFiaFjaFkaFgaFlaFmaFnaDYaFoaCDavyaCBaFpaCEaFqawVameatZatZatZatZatZamcazZayzaPnaEeaFsaFtaFuaFvaFwaEeaCKapPaFxazZaaaaaeaaaaaeaaaaaaaaaaaeaaaaaaaaaaAaaCQazYaFyazYazYazYazYazYaFzaBmaBmaBmaBsaFAaFBaFCaFBaFBaFBaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaeanRaqhaFDaFEaFEaFEaFEaFEaFEaFEaFEaFEaFFaFGaBDaFHaFIaBDaFJaFKaDgaFLaFMaFNaFOaFPaEyaEzaFQatlatlatlatlatlatlatlatlatlatlatlatlatlatlatlatlatlauVanRatmaFRanSaaaaaeaaeaaeaabaaaakEakyamZalNbytameameamebNLamcaFUamcbNLameameamebNMakyaFVaoyaFWcvvanXamyaFYaFZaFZaFZaGaaGbaGcaxVaxVaxVaxVaxVaGdatEaGeaFaaGfahvaGgaGhaGiawMasHaGjaGkaGlaGmaGnaGoazNaGpaDYaFoaGqaGraGsaFpaGtaGuaBeaBfaBgaGvaGwaGxatZameazZayzaPoaEeaGzaGAaGBaGCaGDaEeapPaFxapPazZaaeaaaaaaaaeaGEaGFamdaaeaaaaaeaaeaAaaCQazYaGGaGHaGIaGJaGKazYazYaCPazYaGLaCSaGMaFBaGNaCVaGOaFBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaeaaeanRaqhaFDaFEaGPaGQaGRaGSaGTaGUaGVaBDaGWaGXaGYaGZaHaaHbaHaaHcaHdaHeaHfaHgaHhaHiaHdaHjaHkaHlaHmaHnaHoaHoaHpaHqaHnaHraHsaHtaHsaHuaHvaHwaHxaHxaHxaHxaHyaHzanRaaaaaaaaeaaeaaaaaaakEakyakyalNanaaHAameamcanaamZcyFamZanaamcamecGLamZakyakyakyaHBcGMaHDamyaHEaFZaHFaHGaHHaGaaHIaHJaHKaHJaHJaHJaHLaHJaHMaHNajQahvaHOaHPaHQaHRasHasHaHSaHTatRasHaHUazNaHVaDYaFoaCDaHWaCBaFpaCEaHXawVamcatRaHYaHZaIaatZameazZayzaVlaEeaIcaIdaGAaIeaIfaIgaIhaIiapPazZaaaaaaaabamdamdaIjaIkamdaaaaaaaaaaAaaIlazYaImaCVaInaCVaCVazYaEhaIoazYaIpaCSaIqaFBaCVaIraIsaFBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaanRaItaFDaFEaIuaIvaIwaIxaIxaIyaIzaIAaIBaICaIDaIEaIFaIGaIFaIHaIIaIJaIJaIKaILaIMaINaIOaIPaIQaHmaHnaHoaIRaIRaISaITaIUaIVaIWaIXaIYaHvaIZanRanRanSaslaJaanRaJbaJbaJbaJbaJbaJbaJbaJbalNakyakycQNanaaHAamZcQOamoammaXrbhEbhDbhFbhDbhDcQRcQTcQRcQVcQUcQXcQWaJkaJlaJmaJnaJoaGaakyakyakyakyakyakyaJpaJqaJraJsaJtatIaJuaJvaJwaJxaGnaJyaJzaJAaJBasHaJCazNaDYaJDaDYaJEavyaCBaJFaCEaJGayuayvaywaJHaGwaGwatZameazZayzaYOaEeaGDaJIaJJaJKaGDaEeaJLapPaJMazZaaeaaeaaaaaeaIkaDxamdaaeaaaaaeaaeaAaaCQazYaJNaJOaJPaJQaCVaJRaCVaJSazYaJTaCSaJUaJVaEiaJWaJXaFBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaanRaqhaFDaFEaJYaJZaKaaKbaKcaKdaKeaKfaKgaKdaKhaKiaKjaKdaKdaKkaKlaKmaKnaKoaKpaKqaKlaKraKsaKtaHmaHnaIRaHoaHoaKuaHnaKvaIWaIWaIWaKwaHvaKxaJbameamcaKyameaJbaKzaKAaKBaKCaKDaKEaKCaKFaKGakyakyakycQYcQZammcRaakyakyakyczDakEakEakEakyakyaKLalgaKMaFXaKNaKOaKPaKQaKRaKSaKTaKUaKVaKWaKXaKYaKZakyaLaaLbaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaLoaLpaLqaLraLsaLtaLuaLvaLwaLxaLyaCEaFqawVameatZatZatZatZatZamcazZayzaYOaEeaLzaLAaLBaLCaLDaEeaLEapPaLFazZaaaaaaaaaaaeaaaaaaaaaaaeaaaaaeaaaaAaaCQazYazYazYazYazYazYazYaLGazYazYaCVaCSaLHaFBaFCaFBaFBaFBaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaanRaqhaFDaFEaLIaLJaLKaLLaLMaLNaLOaBDaLPaLPaLPaLQaLRaBDaLPaLPaDgaEyaLSaDgaLSaEyaDgaLTaLUaLVaHnaHvaHnaHnaHnaHnaHvaLWaLXaIWaLYaLZaHvaKxaJbameamcaKyameaJbaKFaKFaMaaJbaMbaKFaJbaMcaMdaMeakyakyakyakyakyakyakyakyakyakyakyakyakyakyakyakyalNaMfaMgaMhamyaMiaFZaFZaFZaFZaFZaMjaMkaMlaMmaMnakyakyajQaAMaMoajQahvahvaMpaMqaMraCvaMsaMtaMuaMvasHaMwaMxaMyaMzaMzaMAavyavyavyaMBaMCaBeaBfaBgaMDaMEaMEatZameazZayzasMaEeaEeaEeaEeaEeaEeaEeazXapPaCLazXaaaaaeaaaaaeaaaaaaaaaaaeaaaaaaaaaazYaCQazYaEjaCVaEiaCVaMFaGLaCVaLHazYaCVaMGazYazYaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaanRaMHaMIaFEaBDaBDaMJaMKaMLaMKaMKaBDaMMaMNaLPaMOaHaaMPaMQaMRaBDaMSaMTaMUaMTaMVaBDaMWaMXaHnaMYaMZaNaaNbaNcaNdaHnaNeaNfaNgaNhaNiaHvaKxaKCaJbaNjaNkaJbaJbaJbaNlaJbaJbaJbaKCaJbaJbaJbaJbakyakyalgakyakyakyaNmaNnaNoakyakyakyalgakyaNpaNqakyapyaHCanlamyaFYaNranlanlanlaFYaNranVaNsaCaaNtaNuaxSaNvaNwaNxajQazHahvaNyaNzaNAayiaNBayiasHasHasHaNCaNDaNEaNFaNFaNGaNFaNFaNFaNHaNIaNJamcatRaNKaNLaNMatZameazZayzcCqazXazXazXazXazXazXazXazXapPaIbaCKazXazZazZazZazZazZazZazZazZazZazXazYaCQazYazYaGGaCPazYazYazYazYazYazYaCVaCSaCVazYaaaaabaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaabaaaanRaNNaNOaBDaNPaNQaNRaNSaNTaNUaNUaNVaNUaNWaNXaNYaNZaIxaIxaIxaOaaObaOcaOdaOeaOfaOgaOhaOiaOjaOkaOlaOmaOnaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaOyaOzaOAaOBaOzaOzaOzaOzaOCaOzaOzaOzaODaOzaOzaOzaOzaOzaOEaOFaOGaOHaOIaOJaOHaOHaOKaODaOzaOzaOLaOzaOMaONaOOaOPaOQaOPaORaOSaOPaOPaOPaOTaOUaOVaOPaOWaOPaOXavqaOYaOZakLalSahvaPaajUawMahvaPbaPcaPdaPeaMzaMzaPfaPgaDSaDSaPhaDSaPiavyaPjaPkaPlayvaywaPmaMEaMEatZameazZcLtcIUaPpaPpaPpaPpaPpaPpaPpaPpaPqarVarVaPrarVarVaPsaPpaPtarVarVaPuaPvaPsaPwaPxaPyaPyaPzaPyaPyaPyaPAaPyaPyaPyaPyaPBaPCazYaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaanSaPDaPEaBDaPFaPGaPHaPIaPJaPKaPLaPMaPMaPNaPOaPPaPQaKbaKbaKbaPRaPSaPTaPUaPVaPSaPRaPWaPXaPYaPZaQaaQaaQbaQcaQdaQeaQfaQgaQhaQaaQaaQiaQjaQkaQlaQmaQnaQoaQpaQpaQpaQqaQraQpaQsaQtaQuaQvaQwaQlaQxaQyaQzaQzaQzaQzaQzaQzaQzaQAaQBaQlaQlaQCaQlaxSaQDaQEaQFaQGaQHaQIaQJaCaaCaaQKaQLaQMaQNaQOanlanlaQPaQPaQPaQPaQPaQPaQPaQQajUawMahvaPbaCLasHaQRaQSaQTaQUaQVaQWaQXaQYaDSaQZaRaaRbaRcatRameatZatZatZatZatZameazXayzasMazXazZazZazZazZazZazXazXaPbazXazXazXazXazXaRdazXaReaRfaRgaRhaRhaRiaCPaRjazYaMFaRkaCVaRlaRmaJUaCVaCVaCPazYaRnaRoazYazYazYazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaaanRaRpaRqaBDaBDaDeaRraRsaBDaBDaBDaBDaBDaBDaBDaRtaRuaRvaMQaMRaBDaRwaRxaRyaRxaRzaBDaRAaRBaHnaRCaRDaREaRFaRGaRHaHvaRIaRJaRKaRLaRMaHvaRNaROaRPaRPaROaRQaRPaRRaRSaRTaRUaRVaRVaRVaRVaRVaRWaRWaRWaRWaRWaRWaRWaRWaRWaRWaRWaRXaRXaRXaRXaRYaRZakyaSaaSbaScakyakyakyakyaSdaSdaSdaSeaSfaSgaSdaSdaSdaShaSiaSjaSkaSlaSmaQPaSnaydaSoahvaPbaCKasHasHaSpaSqayuaSraSpaSqayuaPlayuaPlayuaSratRameamcameameameamcameazXayzasMameamcamcameamcamcameazXaSsazXaStapPaStapPaRdazXaSuaSvaSwaCLaSxaSyaSyaSyaSyaSyaSyaSyaSyaSyaSyaSyazYazYazYaRnaSzazYaSAaSBazYazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaeaaeaaaaaaaaaaaaanRaqhaFDaBDaSCaSDaSEaSFaSGaLPaSHaSIaBDaSJaBDaLQaLRaBDaLPaLPaBDaBDaLPaLPaLPaBDaBDaSKaLUaLVaHnaHnaHnaHnaSLaSMaHvaHvaHvaHvaHvaHvaHvaKxaROaSNaSOaSPaSQaRPaRRaRSaSRaRUaRVaSSaSSaSSaRVaRWaSTaSUaSVaSTaSWaSTaSXaSYaSTaSZaTaaTbaTcaRXaRYaKFakyaTdaTeaTfakyaTgajDakyaThaTiaTjaTkaTlaTmaTnaToaQKaTpaTqaTraTsaTtaTuaTvaPaajUawMahvaPbazXameameaTwamcaTxameaTwamcaTxameaTxamcaTxameameameazXazXazZazZazXazXazXayzavMamcaTyaTzaTzaTzaTAamcazZaPbazZapPaTBapPapPaRdazXaTCaTCaTCaTCaTCaSyaTDaTEaTFaTGaTHaTIaTJaTKaTLaTMaTNaTOazYaTPaTQaTRaTSaTTaTUazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaeanRanRanRanRanRaqhaFDaBDaTVaTWaTXaTYaTZaUaaUbaUcaUdaUeaUfaUgaUhaUiaUjaUjaUkaUlaUlaUmaUnaUjaUoaUpaUqaUraUsaUtaUuaUjaUvaUwaUxaUyaUzaQlaQxaQlaQlaUAaROaRPaRPaSPaUBaRPaRRaRSaSRaUCaRVaUDaUDaUEaRVaRWaSTaUFaUGaUHaUIaUHaUJaUKaSTaSZaULaUMaUNaRXaRYaUOakyaUPaUQaURakyakJaUSaOMaUTaUTaUUaUVaUWaUXaOPaUYaUZaVaaVbaVcaVdaVeaVfaTvaPaajUawMahvaPbazXamcatZaVgatRaVhatZaVgatRaVhatZaViatRaVjatZamcazXaCKaVkapQapRapRapRapRaVmavMamcaVnaVoaVpaVqaVramcazZaPbazXaStapPaStazXaRdaVsaTCaVtaVuaVvaVwaSyaVxaVxaVyaVzaVAaVBaVCaVDaVEaSyaTNaTNazYaRnaVFaCPaVGaCVaCVazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaanRaVHaVIaVJanRaqhaFDaBDaVKaVLaVMaVNaVOaPOaVPaVQaVRaVSaVTaVUaVVaVWaVWaVXaVYaVZaWaaWbaWcaWdaWeaWfaWgaWhaWiaVWaWjaWkaWlaWmaWnaWoaWpaWqaWraWqaWsaWtaWuaWvaWwaWxaWyaRPaRRaRSaSRaRUaRVaWzaWAaWBaRVaRWaWCaSTaSTaWDaWEaWFaSTaSTaWGaSZaWHaWIaWJaRXaWKaWLakyaWMaWNaWOakyaWPatGakyaWQaWRaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXcaXdaXeaTvaPaajUawMahvaXfazXameatZaXgaXhaXiatZaXjaXkaXlatZaXmaXnaXoatZameazXaSvaXpaXqaPpaPpaPpaPpcQMcQLameaVnaXsaXtaXuaVrameazXaPbazXazXapPaCKazXaRdapPaXvaXwaXxaXyaXwaXzaVxaVxaXAaVxaXBaXCaXDaVxaVxaSyaXEaXFazYaRnaSzazYaVGaCVaCVazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaanRauqaXGaVJanRaXHaFDaBDaXIaXJaXKaXLaXMaLPaXNaXOaXPaXPaXQaXRaXSaXPaXPaXPaXTaXUaXVaXWaXXaXYaXTaXTaIQaXZaYaaIQaYbaYcaYdaYeaYcaYcaYcaYcaYcaYcaYcaKxaRPaRPaRPaSPaUBaRPaYfaYfaYgaYhaYiaYjaYkaYlaYmaRWaYnaWCaYoaYpaYqaYraYsaWGaSZaSZaSZaYtaYuaRXaYvaYwaYxaYyaYzaYAaYxaYwatGakyakyakyakyaYBaYBaYBakyakyakyaShaYCaYDaYEaYFaYGaQPaPaajUawMahvaPbazZameatZaYHaYIaYHatZaYJaYKaYJatZaYLaYMaYNatZameazZaSwaYOayzaYPaYPaYPaYPaYPaYPaYPaYQaYRaYSaYTaYUaYPazXaXfazXaYVaYWapPaFxaYXaYYaTCaYZaZaaZbaZcaSyaVxaZdaZeaVxaZfaXCaZgaZhaVxaSyaTNaZiazYaZjaSzazYaZkaTTaZlazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaanRaoqauqaZmanRaqhaZnaBDaBDaFFaZoaBDaBDaBDaBDaBDaXPaZpaZqaZraZsaZtaZuaZvaZwaZxaZyaZzaZAaZBaZCaXTaZDaZEaZFaZGaZHaYcaZIaZJaZKaZLaZMaZNaZOaZNaYcaKxaRPaWvaZPaSPaZQaRPaZRaYlaZSaZTaZUaZVaZWaYlaZXaRWaZYaZZbaababbacbadbaebafbagbahbaibajbakaRXaYvaYwbalbambanbaobapaYwatGakybaqbaqbaqatwatwatwbarbasbatakybauaQPaQPaQPaQPaQPbavajUbawahvaPbazZameatZaYHbaxaYHatZaYJbayaYJatZaYNbazaYNatZameazZapPaYOayzaYPbaAbaBbaCbaBbaBbaDbaEbaFbaGbaHbaIaYPbaJbaKaRgaRhbaLaRhaRhaRiaTCaTCbaMbaNbaOaTCaSyaVxbaPbaQbaRbaSbaTbaUbaVaVxaSybaWbaXazYaRnbaYazYbaZbbaaCVazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaanRaxmauqausbbbbbcbbdbbearjbbfbbgbbhbbibbjarjbbkbblbbmbbnbbobbpbbpbbqbbrbbsaUybbtbbubbvbbwbbxbbybbzbbAbbBbbyaYcaYcbbCbbDbbEaZNbbEaZNbbEaZNaYcaKxaRPaRPaRPaSPaUBaRPaZRaYlbbFbbGbbHbbIbbJaYlbbKaRWbbLbbMbbNbbObbPbbQbbRbbSaSZbbTaSZbbUbbVaRXaYvaYwbbWbbXbbYbbZbcaaYwatGakyatwatwatwatwatwatwatwatwatwakybcbbccajDbcdbcdahtaPaaJwbceahvaPbazXamcatZatZatZatZatZatZatZatZatZatZatZatZatZamcazXapPaYOayzaYPbcfbcgbchbcibcjbckbclbcmbckbcnbcoaYPbcpbcpbcpbcpaPbazXaCLazXaTCbcqbcraZaaZbbcsaSybctbctbctbctbcubcvbctbctbctaSyaTNaZiazYaRnaSzazYaZkaTTbcwazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaabaaaaaaanRbcxbcyauqanRauqbczbcAaAmbcBbcCbcDbcEaAmaAmbcFbcGbcHbcIbcJbcKbcLbcMbcNbcObcPbbtbcQbcRbcSaIQbbzbcTbcUbcVbbybcWaYcbcXbcYbcZbcZbcZbcZbcZbcZbdabdbaRPaWvbdcbddbdeaRPbdfaYlbdgbdhbdibdjbdkaYlbdlaRWbdmaSTaSTbdnaUHbdoaSTaSTbbSbdpbdqbdrbdsaRXaYvaYwbdtbdubdvbdwbdxbdyatGakybdzbdzbdzbdzbdAbdBbdBbdBbdBakyajDaAGajDalSbdCahvaPaajUbdDahvaPbazXameamcameameameamcameameameamcameameameamcameazXapPaYOayzaYPbdEbaBbaBbdFbaBbdGbdHbdHbdIbaBbdJaYPbdKbdLbdMbcpaPbaCKapPbdNaTCbdObdPbdQbdRbdSaSybdTbdUbdUbdUbdVbdWbdUbdUbdTaSybdXbdYazYaRnaSzaCPaVGbdZaMFazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanRanSanRanRanRauqbeabebbecbedbeeauqbefauqauuauvaXPbegbehbcHbeibcHbejbekbelbemaKsbenbeobepaIQbbzbeqberbesbbybetaYcbeuaZNbbEaZNbbEaZNbbEaZNaYcaKxaRPaRPaRPaSPaUBaRPbevaYlaYlaRUbewbexbeyaYlbezaRWaSTbeAbeBaUHbeCaUHbeDbeEaSTbdpbeFbeGbeHaRXaYvaYwbeIbeJbeKbalbeLaYwatGakyakyakyakyakyakyakyakyakyakyakyajPbeMbeNbeObePbeQbeRbeSbeTbeUaPbazXazXazXbeVarZarZarZarZarZarZarZarZarZarZarXarXarXbeWbeXbeYaYPbeZbfabfbbfcbfdbfebffbfgbfgbfhbfiaYPbfjbfkbflbcpaPbazXapPbfmaXvaXwbfnbfobfpbfqaSybfrbdUbdUbdUbfsbftbfubfubfvaSybfwaZiazYaRnaSzazYbfxaMFaMFazYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaeanRauqbfybefbfzbfAaweauqbfBbfCbfDbfEaXPbfFbfGbfHbfIbfJbfKaZvbfLbfMbfNbfObfPbfQbfRbbzbfSbfTbfUbbybfVaYcbfWbfXbfYbfZbgaaZNbgbaZNaYcaKxaRPaWvbgcaSPaSQaRPaZRaYlbgdaRUaYkbgebgfaYlbggaRWaSTbghbgiaSTbgjaSTbgkbglaSTbgmbgnbeGbgoaRXaYvaYwbgpbgqbgrbgsbgtaYwatGbguajQajQajQakLakKbgvajQajQajQajQajQajQajDajGajSahvbgwbgxbgyahvaReaRhbgzaRhbgAbgBaqJaqJaqJaqJaqJbgCaqJaqJaqJaqJaqJaqJaqJbgDbgEaYPbgFbaBbgGbgHbdHbgIbgJbgKbgLbgMbgNaYPbgObgPbgQbcpaPbazXbgRbgSaTCbgTaXwbgUaZbbgVaSybgWbgXbgYbgZbhabhbbhcbdTbdTaSybfwbdYazYaRnaTQaTRbhdbhebhfazYaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaaaaaaaaanRanRanRauqbfybefbhgbhhbhibhgbhgbhgbhgbhgaXPaXPaXPaXPaXPaXPaXPbhjbhkbhkbhlbhmbhnbhkbhkbhobbybbybbybbyaYcaYcaYcbhpaYcaYcaYcaYcaYcaYcaYcbhqaRPaRPaRPaRObhraRPaRVaRVaRVbhsbhtbhuaRVaRVaRVaRWaRWaRWaRWaRWaRWaRWaRWaRWaRWaRWaRXbhvbhwaRXaRQaYwbhxbhybhzbhybhAaYwbhBbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhCcQPcQScQQbhCbhGbhGbhGbhGbhHbhIbhGbhGbhGbhGbhGbhGbhGbhGbhGbhGbhGbhGbhGbhGbhGaYPaYPaYPbhJbhKaYPaYPaYPaYPaYPaYPaYPaYPbhLbhMbhNbcpbhOazXazXazXaTCbhPbhPbhQbhRbhPaSyaSyaSyaSybhSbhTbhUaSyaSyaSyaSybhVbhWazYaRnbhXazYbhYbhZazYazYaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaabaaaaaaaaaaaeaaaaaaaaaaaaaaeaaaaaaaaeaaeaaeaaeanRbiaanRbibbfybicbhgbidbiebifbigbigbihbiibigbijbijbijbijbijbijbijbikbilbimbilbinbilbiobipbiobiqbiobiobirbiqbijbimbiobisbitbigbigbigbigbiubiibigbigbivbiwbixbiybigbizbiAbiBbiCbixbigbigbigbigbiDbiEbigbiFbigbigbigbiybiGbiGbiHbiIbiGbiJbiGbiJbiGbiKbiLbiMbiNbiObiLbiLbiLbiPbiLbigbigbigbiibigbihbigbigbigbigbiybiQbiRbiSbiTbiUbiVbiWbiWbiWbiXbiYbiWbiWbiZbjabjbbiWbiWbiWbiWbiWbjcbiWbiWbiWbjdbjebiWbjfbjgbjhbiWbiVbiWbiWbjdbiWbiWbiWbjibjjbjkbiWbjlbiWbjmbiWbjnbiWbjobjpbjqbiWbjrbjsbjtbjubjvbjwbjxbjybjzbjAahvbjBbjCaCPbjDbjEbjFbjFbjFbjFaaaaaaaaeaaeaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvafvafvafvafvafvafvafvafvafvafvafvafvafvafvafvafvarhauqarhauqbfyaxmbhgbjGbjHbjIbjIbjIbjIbjJbjIbjKbjIbjIbjIbjIbjIbjIbjLbjIbjMbjIbjNbjIbjIbjObjIbjIbjIbjIbjJbjIbjKbjMbjIbjIbjIbjIbjIbjIbjIbjPbjQbjRbjRbjSbjRbjTbjUbjRbjRbjQbjVbjWbjXbjRbjRbjRbjRbjRbjYbjRbjRbjRbjRbjRbjUbjRbjRbjZbjSbjRbkabjXbjQbjRbkbbjIbjMbjIbkcbjIbjIbjIbjIbjIbjIbjIbjIbjLbjIbjIbjIbjIbjIbjIbkdbkebkfbkgbkhbkebkibkjbkjbkjbkkbkjbkjbklbkjbkmbknbkjbkjbkjbkjbkjbkjbkjbkjbkjbkobkjbkjbkjbkpbkqbkjbkrbkjbkmbknbkjbkjbkjbkqbklbkjbkjbkpbkjbkpbkjbkjbkjbkjbkjbkqbksbktbkubkobkjbkjbkjbkqbkjbkjbkvbkwbkxbkybkwbkzbkAbkBbkCbkDbjFaaaaabaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaeafvaaeaaeaaaanRanRanRauBbkEbkFbhgbkGbkHbkIbkJbkJbkKbkLbkMbkNbkJbkJbkJbkObkJbkJbkJbkJbkPbkQbkRbkSbkTbkUbkTbkTbkVbkTbkWbkTbkXbkYbkTbkTbkZbkTbkTbkTbkTblablbblcbldbkXbkTblebkUblfblgbkWblhblibljblfbkTblkbkTbkTbllbkTbkTbkTbkTblmbkUbkTblnbkTbkXbkTblobkXblpblqblrblsbkYbkTbkXbkTbkTbkTbkTbkTblhblhblhbkTbltblubkVbkTbkTbkTbkUblvblwblxblyblzblAblBblCblDblEblFblBblGblHblIblJblKblBblBblCblBblBblLblBblBblBblBblBblBblBblMblNblAblOblPblQblBblBblBblMblRblSblOblTblUblBblOblTblUblBblOblVblTblWblXblYblZbmabmbbmcblZbmabmbbmdbmebmfbmgbmhbmibmjbmkbmlbjFbjFbjFbjFbjFbjFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmmbmnbmnbmnbmnbmnbmnbmnbmoaaaaaaaaaafvaaaaaeaaaaaeaaaanRavZbmpbfybhgbmqbmrbmsbmtbmubmtbmvbmwbmtbmubmtbmtbmtbmtbmtbmtbmtbmtbhgbmxbhgbhgbhgbmybmybmzbmAbmBbmybmybmCbmDbmDbmDbmDbmDbmDbmEbmEbmFbmGbmEbmEbmDbmDbmDbmHbmIbmJbmIbmKbmIbmLbmHbmHbmMbmMbmMbmMbmMbmMbmMbmMbmMbmMbmMbmMbmMbmMbmNbmObmPbmObmQbmObmRbmObhgbhgbhgbhgbhgbhgbmSbmTbmUbhgbhgbhgbmVbhgbhgbhgbhgbhCbmWbmXbmYbhCbhGbmZbmZbmZbnabmZbmZbmZbhGbnbbhIbhGbhGbhGbhGbhGbhGbncbndbndbndbndbndbndbndbndbnebnfbngbnhbnibnfbnfbnfbnfbnfbnjbnkbnkbnkbnlbnkbnkbnkbnlbnmbnnbnobnpbnqbnlbnkbnkbnkbnlbnkbnkbnkbjFbjEbnrbjFbjFbjFbnsbntbnubnvbnwbnxbnybnzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmmbnAbnBbnBbnBbnBbnBbnBbnBbnAbmoaaeaaeafvbnCbnCbnCbnDbnDbnDbnDbnDbnEbnDbnFbnGbnHbmtbnIbnJbnKbnLbnMbnNbmtbnObnPbnQbnRbnSbnTbmtbnUbnVbnWbnXbnYbmybnZboabobbocbodbmyboebmDbofbogbmDbohboibojbojbokbolbojbojbombonbmDboobopboqborbosborbotborboubovbowboxboybozboAboxbmMboBboCboDboCboEbmMboFbmOboGbmOboHbmOboIbmOboJboKboKboLboMbhgbhgbhgbhgbhgboKboKboNboOboKboMboKbhCboPboQboRbhCbhCbmZboSboTboUboVboWbmZboXboYboZbpabpbbpcbpdbpebhGbhGbpfbpfbpfbpfbpfbpfbpfbpfbhGbnfbpgbphbpibpgbpjbpkbplbpmbnjbpnbpobppbpqbprbpobpsbpqbptbpubpvbpwbpxbpqbpybpobpzbpqbpAbpobpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpLbpMbpNbpObnzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaabpPbpQbpRbpRbpSbpTbpUbpUbpVbpVbpTaaeaaaafvbnCbpWbpWbpXbpYbpWbpWbnDbpZbqabqbbqcbqdbmtbqebnSbnKbnLbqfbnSbmubnSbqgbqhbqibqgbqjbmtbqkbqlbnXbqmbqnbmybqobqpbobbqqbqrbmybqsbmDbqtbqubqvbojbqwbqxbqxbqybqzbqAbqAbqBbqCbqDbqEbqFbqGbqFbqHbqFbqFbqFbqFbqIbqJbqKbqKbqKbqLbqKbqMbqKbqNbqJbqObqPbqQbqRbmObqSbqTbqUbqVbqWbmObqXbqYbqYbqZbqYbqYbqYbrabqYbqYbqYbqYbrbbrcboKboKboKbrdboPboQboRbrebrfbrgbrhbribrjbrkbrkbmZbrlbrmbrnbrobrpbrqbrrbrsbrtameamcameamcameameamcameamcamebnfbrubrvbrwbrxbrxbrybrzbrAbnjbrBbrCbrDbpqbrBbrCbrEbpqbrFbrGbrHbrIbrJbpqbrKbrCbrLbpqbrKbrCbrMbpCbrNbrObrPbrQbrRbrSbrTbrUbrVbrWbrXbrYbnzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbrZbpRbpRbpRbpTbsabsabsabsabpTbnCbnCbnCbnCbsbbscbsdbsebsfbsgbshbsibsjbskbslbsmbsnbsobsobspbsqbsrbsobssbsobstbsubsvbswbsxbsybszbsAbsBbsCbsCbmybsDbsEbobbsFbsGbmybqsbsHbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbsRbsSbojbmEbsTborboqborbsUbsVbsVbsVbsVbsWbsXbsXbsXbsXbsYbsZbtabtbbtcbtdbtebtfbmMbtgbmObthbtibtjbtkbtlbmObtmbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtobtpbtpbhCboPboQboRbtqbtrbtsbttbtubtvbrkbtwbmZbtxbtybtzbtAbtzbtBbtzbtzbtzbtCbtDbtEbtDbtDbtDbtDbtFbtDbtGbtCbnjbtHbtIbpgbpgbtJbtKbtLbnjbtMbtNbtObpqbtMbtPbtObpqbtQbtRbtRbtSbtTbpqbtUbtVbtWbpqbtUbtXbtWbpCbtYbtZbuabjFbjFbjFbjFbjFbjFbjFbubbucbjFbudbudbudbudaaeaaeaaeaaeaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpPbpQbpRbpRbpSbpTbuebsabsabsabufcRebuhbuhcRfbujbukbulbumbunbuobnDbupbqabuqburbusbutbuubuubuvbuwbuxbuubuybuubuzbuAbuBbswbuCbmtbqkbuDbsCbuEbuFbmybuGbuHbobbuIbuJbmybuKbuLbuMbuNbuObuMbuPbuQbuQbuRbuSbuQbuQbuTbuUbuVbuWbuXbuYbuZbvabvbbvcbvdborbvebvfbvfbvfbvfbvfbvgbmMbmMbmMbmMbmMbmMbmMbtgbmObvhbvibvjbvibvkbmOboNbtnameameamcameameameameameamcameamebtnbtnbtnbhCbhCboPboQbvlbtqbtrbtsbvmbvnbvobrkbvpbmZbvqbvrbtzbvsbvtbvubvvbvwbtzbvxbvybvzbvAbvAbvBbvCbvCbvDbvEbvFbtCbnjbnjbvGbvHbnjbnjbnjbnjbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvRbvSbvTbvUbvVbvWbvXbvYbvZbwabwbbpCaTNbwcbfwbjFbwdbwebwfbwgbwhbwfbwibwjbwkbwlbwmbwnbwoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwpbpPbpPbwqbpPbwrbwsbwtbwsbwsbwubwvbnCbnCbnCbwwbnCbwxbwybnCbnDbwzbwAbqabuqbqcbwBbmtbwCbwCbnKbnLbwDbnSbmubnSbqgbwEbwFbqgbnSbmtbwGbwHbwIbwJbwKbwLbwLbmzbwMbmBbwLbwLbwNbmDbwObwPbqvbojbwQbwRbwRbwSbwTbwRbwRbwUbojbmEborbwVbwWbvdbosbvbbwXbvdborborbwYbwZbwYbwYbwZbxabmHbxbboKbxcbxdboKboKbtgbmObxebxfbxgbxhbxibmOboNbtnameamebxjbxkbxkbxlbxkbxkbxjameameamcameamcbxmbxnbxoboQbvlbtqbtrbmZbxpbxqbxrbxsbxtbmZbxubxvbtzbxwbxxbxybxzbxAbxBbxCbxDbxEbxFbxGbxHbxIbxJbxKbxLbxMbtCamebnjbxNbxObnjbxPbxQbpqbxRbxSbxTbxUbxVbxVbxWbxVbxVbxXbxYbxZbyabxVbxWbxVbxVbxXbxTbybbycbpCaTNbydbfwbjFbyebyfbygbyhbyibyjbykbylbymbynbyobypbwfaaeaaeaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbyqbyrbyrbyrbyrbyrbyrbyrbyrbufcRgbuhbuhcRhbyubyvbywbyxbyybyzbyAbyBbqabuqbqcbyCbmtbnSbnSbnKbnLbnSbyDbmtbyEbyFbyGbwDbnSbyHbmtbqkbuDbsCbyIbuFbwLbyJbyKbyLbsFbyMbwLbyNbmDbqtbyObmDbyPbyQbojbyRbySbyTbyUbyVbyWbyPbmDborbvbbyXbvdbsUbyYbyZbuZbsVbsVbzabzbbzabzabzabuWbzcbzdbzebzebzebzebzfbzgbmObzhbzibzjbzkbzlbmOboNbtnamcbxjbxjbzmbznbzobzpbzqbxjbxjamcbzrbzsbztbzubzvbzwboQbvlbzxbtrbzybzzbzAbzBbzCbzDbmZbzEbzFbtzbzGbzHbzIbzJbzKbtzbzLbzMbzNbzObzPbzQbzRbzSbzTbzPbzUbzVamcbzWbnjbnjbzWbzXbzYbzYbzZbAabAbbAcbAcbAdbAebAebAebAebAfbAebAebAebAebAdbtRbtRbAgbAhbtRbpCaTNbwcbfwbjFbAibAjbAkbAlbAmbwfbykbylbAnbykbykbAobwoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbApbyrbAqbArbyrbAqbArbyrbAsbpTbnCbnCbnCbnCbAtbqabuqbAubqabAvbyAbyBbqabuqbqcbAwbmtbAxbAxbnKbnLbAybAybmtbmtbmtbmtbmtbmtbmtbmtbAzbAAbsCbsBbsCbwLbABbACbADbsFbAEbwLbAFbAGbAGbAGbAGbAGbAGbAGbAGbAHbAIbAGbAGbAGbAGbAGbAJbvbbAKbvdbosbvbbwZbvdborborborborborborborbALbmHbmHbmHbmHbmHbmHboNbtgbmObAMbzjbANbzjbAObmOboNbtnamebxlbAPbAQbARbASbATbAUbAVbxjbxkbAWbxlbAXbAYbAXbAZbBabBbbBcbBcbmZbBdbBebBfbBdbBdbBdbBgbBgbBhbBhbBhbBibBjbBhbtzbBkbzPbzPbzPbzPbzQbzPbzPbBlbzPbBmbzVamebzYbzYbBnbBobBpbzYbzYbBqbBrbBsbBtbBubAdbBvbBwbBxbBybBzbBAbBBbBCbBDbAdbBEbBFbBGbBHbBIbpCbpCbBJbBKbjFbBLbBMbwfbwfbwfbBNbBObylbylbBPbBPbBQbBRaaeaaeafvaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpPbApbyrbAqbArbyrbAqbArbyrbAsbpPaaeaaaaaebnCbBSbscbBTbsmbBUbBVbBWbBXbBYbBZbCabCbbmtbCcbnSbnKbnLbnSbyDbmtbCdbCebCfbCdbCgbChbCibCjbCkbClbClbCmbCnbCobCobCpbCqbAEbwLbAFbAGbCrbCsbAGbCtbAGbCubCvbCwbCxbCybCzbCAbCBbAGbCCborboqborbCDborborborbCEborbopbopbopbCFbopbCGbmHbCHbCIbCJbCKbmHboNbtgbmObCLbzkbCMbzibCNbmOboNbtnamebCObCPbAUbAUbASbCQbCRbCSbCRbCTbCUbxjbCVbCWbAXbCXbCYbCZbDabDbbDcbDdbDebDfbDgbDhbDibDbbDcbDdbDdbDjbDkbDlbDibDmbDnbDobDobDpbDqbDrbDsbDobDtbDubDvbzVamcbDwbDxbDybDzbDAbDBbzYbDCbDDbDEbDFbDGbDHbDIbDJbDJbDJbDKbDLbDLbDMbDNbDObDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDZbEabwfbEbbEcbwfbykbylbylbEdbEebEfbwoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpPbApbyrbAqbArbyrbAqbArbyrbAsbpPaaeaaeaaebEgbEhbqabEibEjbEkbAvbElbyBbqabuqbEmbEnbmtbAxbAxbnKbEobAybAybEpbmtbmtbmtbmtbmtbmtbCibEqbErbnXbEsbEtbwLbEubEvbEwbExbEybwLbAFbEzbEAbEBbECbAGbAGbEDbEEbEFbEGbEHbEHbEIbEJbEKbqFbELbEMbENbEObELbEPbENbEQbqEbERbERbERbESbERbERbETbEUbEVbEWbEVbEXbEYbEZbmObFabFbbFcbFdbFebmOboNbtnamebCObFfbFgbFhbFibFjbFjbFkbFjbFlbFjbFmbFnbFobFpbFqbFrbFsbFtbFubFvbFwbFxbFybFzbFAbFBbFubFvbFwbFzbFxbFybFCbFBbFDbFEbFFbFzbFGbFHbFIbFJbFKbFLbFMbFNbzVamebDwbFObFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGabGbbGcbGcbGdbGcbGcbGebGfbFZbGgbGhbGibGjbGkbGlbGmbGnbGobGpbGqbGrbGsbGtbGubGvbGwbGtbGxbGybGzbGAbwfaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpPbApbyrbAqbArbyrbAqbArbyrbAsbpPaaeaaaaaebnCbGBbGCbGDbusbGEbGFbGGbGHbGIbGDbGJbGKbmtbnSbnSbnKbnLbnSbnSbnSbGLbmtbGMbGNbGObmtbGPbqkbErbnXbnXbEtbwLbwLbwLbwLbwLbwLbwLbGQbGRbGSbGTbGSbGSbGUbGVbGWbGXbGYbGZbHabHbbGVbHcbsVbuXbHdbuZbHebuXbHfbuZbsVbHgbHhbHibHjbHibHibHkbHlbHibHmbHibHnbHobHpboFbmObmObmObmObmObmObmOboNbtnamebCObHqbAUbAUbASbHrbHsbHsbHtbHubHvbxjbHwbHxbAXbHybHzbHAbHBbHCbHDbHEbHFbHGbHHbHIbHJbHCbHDbHEbHIbHKbHLbHMbHNbHObHPbHQbHQbHRbHSbHTbHUbHQbHVbHWbHXbzVamcbDwbHYbHZbIabIbbIcbIdbIebIfbIgbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbIjbItbIubIvbIwbIxbIybIzbIAbIBbICbIDbIEbAkbIFbIGbAkbIHbIHbIIbIJbEebIKbwoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbApbyrbAqbArbyrbAqbArbyrbAsbpTbnCbnCbnCbnCbAtbqabuqbAubqabAvbyAbyBbqabuqbqcbILbmtbAxbAxbnKbnLbIMbIMbnSbINbmtbIObIPbIQbmtbIRbISbITbwJbwJbIUbIVbIVbIVbIVbIWbIVbIVbIXbIYbIZbJabJbbJcbIYbJdbJebEDbJfbJgbJhbJibJjbJkborbvbbyXbvdbosbvbbvcbJlborbopbJmbJnbJnbJnbJnbJnbJobJpbJqbJrbJsbmHboNboFboKboKbJtboKboLboKboKboNbtnamebxlbJubAUbARbASbATbAUbJvbxjbJwbJxbxlbAXbJybAXbJzbJAbJBbJCbJCbJDbJDbJEbJFbJCbJGbJGbJGbJGbJGbJGbJHbJIbJGbJGbJGbJJbzPbzPbzPbzPbzQbzPbzPbzPbzPbJKbzVamebzYbzYbJLbJMbJNbzYbzYbJObJPbJQbJRbJSbJTbJTbJTbJTbJUbJVbJWbJTbJTbJTbJTbJXbJYbJZbKabKbbudbwfbKcbwfbudbKdbKebwfbwfbwfbwfbKfbykbyibBPbBPbBQbBRaaeaaeaaeaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbyqbyrbyrbyrbyrbyrbyrbKgbyrbKhcRgbuhbuhcRhbKibKjbKkbKlbKmbKnbyAbyBbqabuqbKobKpbmtbnSbnSbnKbnLbnSbnSbnSbKqbmtbmtbKrbmtbmtbEsbnXbKsbnXbyIbEtbKtbKtbKubKubKubKtbKubAFbAGbKvbKwbKxbKybAGbKzbKAbKBbKCbKDbKEbKFbKGbJkborbwVbwWbvdbosbvbbwZbvdbKHborbKIbJnbKJbKKbJnbKLbmHbmHbmHbmHbmHbmHbKMbKNbzebKObzebzebzebzebzebKPbtnamcbxjbxjbKQbKRbKSbKTbKUbxjbxjamcbKVbKWbKWbKXbKYbKZbLabLbbJCbLcbLdbLebLfbLgbJCbLhbLibLjbLkbLlbLmbLnbLobLpbLqbJGbLrbLsbLtbLubzPbzQbLvbLwbLxbzPbLybzVamcbzYbzYbzYbzYbzYbzYbzYbLzbLAbLBbLCbLCbJTbLDbLEbLFbLGbLHbLIbLJbLKbLJbLLbLMbLNbLObLPbLMbLLbLQbLRbLSbudbLTbLUbwfbLVbLWbwfbykbykbLXbykbykbLYbwoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbpRbyrbLZbLZbLZbMabwsbwsbwsbwubwvbnCbnCbnCbwwbnCbMbbwybnCbnDbMcbMdbqabMebMfbMgbmtbMhbMhbnKbnLbIMbIMbnSbnSbMibMjbnSbMkbmtbMlbwJbMmbMnbnXbEtbKubMobMpbMqbMpbMrbKubAFbAGbAGbAGbAGbAGbAGbAGbAGbAGbAGbAGbAGbAGbMsbAGborborboqborbosborborbMtbmHbMubmHbmHbmHbmIbMvbmIbmHbMwbmHbMxbMyboOboKboFbMzbMzbMzbMAbMzbMzbMzbMBbtnameamebxjbJwbJwbxlbJwbJwbxjameameamcameamcbxmbxnbxoboQbMCbJCbMDbMEbMFbMGbMHbJCbMIbMJbMKbMLbMMbMNbMObMPbMKbMQbMRbMSbMTbMUbMVbMWbMXbMYbMZbNabNbbNcbtCamebzYbNdbNebNfbNgbNhbNibNjbNkbNlbNmbDFbNnbNobNobNobNpbNqbNrbNsbNtbNtbLLbNubNvbNwbNxbNybLLbNzbNAbNBbNCbNDbNEbNFbyhbyibNGbykbykbykbykbykbypbwfaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpPbpRbyrbLZbAsbNHbpPbNIbNIbNJbNKcRibuhbuhcRjbNNbNObNPbNQbNObNRbnDbNSbqabMebNTbsmbsnbsobsobspbsqbNUbNUbNUbNVbNWbnSbNXbNYbmtbsBbNZbsCbsBbOabObbKtbOcbOdbOebOfbOgbKtbOhbOibOjbOkbOibOlbOmbnXbnXbOnbOobmHbOpbopbOqbOrborborboqborbosborborborbOsbOsbOtbOubOvbOwbOxbOybOwbmHbmHboKbOzboObOAbOBbMzbOCbODbODbOEbOFbMzbMBbtnameameamcameameameameameamcameamebtnbtnbtnbhCbhCboPboQbMCbJCbOGbMFbMFbOHbOIbJCbOJbOKbOLbOMbONbOObOPbOQbMJbORbJGbOSbOTbOUbOUbOUbOVbOWbOWbOXbOYbOZbtCbPabPbbPcbPdbPebPfbPfbPfbPfbDDbPgbPhbPfbPibNtbNtbPjbPkbPlbPmbPnbNtbPobLLbPpbPqbPrbPsbPtbPubPvbPwbPxbPybPzbPAbAkbPBbAmbwfbykbykbPCbPDbPEbPFbwoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbpRbyrbyrbyrbyrbPGbNJbNJbPHbpTbnCbnCbnCbnCbPIbPJbPKbPLbPMbPNbPObPPbqabuqbqcbPQbutbuubuubuvbPRbIMbIMbnSbPSbPTbPUbPVbPWbmtbnXbnWbnXbnXbnXbEtbKubPXbPYbPZbQabQbbKtbQcbnXbQdbsCbyIbqkbQebsCbsCbsCbsCbmHbQfbCFbOqbQgbsVbsVbQhbsVbHebsVbsVbsVbQibQibQibQjbQkbQlbQmbQnbQobmHbQpboKbQqbQrbQsbQtbMzbQubQvbQwbQxbQybMzbMBbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnbtnboKbQzbQAbhCboPboQbQBbJCbQCbQDbQEbQFbQGbJCbQHbMLbMLbJGbQIbQJbQKbQLbQMbQNbJGbtCbQObQPbQObQObQObQObQQbQObtGbtCbtCbQRbQSbQTbQUbQVbQWbQWbQWbQWbQXbQYbQZbRabRbbRcbRdbRebRfbRgbNtbNtbNtbNtbLLbRhbRibRjbRkbRlbLLbNzbRmbRnbRobRpbRqbwfbwfbBNbwfbRrbRsbBNbwfbwfbwfbwfaaeaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpPbRtbpSbpRbyrbRubpPbRvbRvbRvbpTaaaaaeaaabnCbRwbRxbRybRzbRxbRAbnDbRBbRCbRDbqcbREbmtbRFbnSbnKbnLbqgbqgbqgbqgbqgbqgbqgbqgbRGbnXbnXbnXbnXbEsbEtbKtbOcbRHbRIbRJbOgbKubRKbRLbRLbRLbRLbRMbRNbRObRObRPbnXbmHbOpbopbOqbRQbqFbqFbqGbqFbqHbqFbqFbqFbRRbRRbRRbRRbRSbRTbRUbRUbRVbmHboKboKboKboObRWbRXbMzbRYbRZbODbSabSbbMzbScbSdbzebSebzebzebSfbzebzebzebSgbzebzebzebShbzebzebSibSjbSkbSlbSmbSnbSobSpbSqbSrbJDbSsbStbSubJGbSvbSwbSxbSybMQbSzbJGameamcameamcameameamcameamcameazYbSAbSBbSCbSDbSEbSFbSGbSHbSIbSJbSKbSLbSMbSNbJTbSObSObSPbSQbSRbSSbSTbSTbSTbLLbSUbSVbSWbPtbSXbLLbSYbSZbTabudbTbbTcbwfbTdbTebTfbTgbThbwfaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaabTibTjbwsbTkbTlbwsbnAbwsbwsbTjbTmaaaaaeaaabnCbnCbnCbnDbnDbnDbnDbnDbnDbnDbnFbnGbnHbmtbTnbTobnKbTpbTqbTrbTsbTtbTubPVbTvbnNbmtbTwbTwbTxbnXbnXbEtbKubTybTzbTAbTBbTCbKtbqkbTDbnXbTEbTEbTEbTEbTEbTEbTFbOibTGbTHbTHbTIbTJborborboqborbTKbTHbTHbTLbTMbTNbTObTPbTQbTRbTSbTTbOwbTUboKboKbTVbTWboKboFbMzbMzbTXbTYbTZbMzbMzboMboKboKbUaboJbTEbTEbTEbTEbTEbUbboKboKboKbTVbUcboKbhCboPboQbUdbJCbUebUfbUgbUhbUibJCbJGbJGbJGbJGbMQbMQbUjbUkbUlbUmbJGbUnbUobUobUobUobUobUobUobUobUnbUnbUpbUqbzWbzWbzWbzWbzWbzWbzWbzWbzWbzWbzWbzWbJTbJTbJTbJTbJTbJTbJTbJTbJTbJTbLLbUrbUsbUtbUubUvbLLbwfbwfbwfbudbUwbUxbwfbBNbwfbwfbwfbwfbwfaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbUybUzbyrbUAbUBbUCbUDbpTaaaaaeaaeaaebUEbUFbUGbUHbUGbUHbUGbUIbUJbTEbUKbULbUMbmtbmubmtbmvbmwbmtbmubmtbmtbmtbmtbmtbmtbmtbTEbTEbTEbTEbTEbUNbKubUObUPbUQbURbUObKubUSbTEbTEbTEbUTbUUbUVbUWbTEbUXbTEbmHbmHbmHbmHbmHbmHbmIbmJbmIbUYbmIbmLbmHbmHbmHbmHbmHbmHbmHbmHbmHbmHbmHbTEbTEbTEbTEbTEbmNbTEbUZbVabVbbVcbVdbTEbTEbTEbTEbTEbTEbTEbVebVfbVgbTEbTEbhCbrdbhCbhCbhCbhCbhCbVhbVibVjbJCbJCbJCbJCbJCbVkbJCbVlbVmbVnbJGbJGbJGbJGbJGbJGbJGbJGbVobVpbVpbVpbVpbVpbVpbVpbVpbVqbUnbVrbVsbUnbUnaaaaaeaaaaaeaaaaaaaaaaaaaaaaaaaaeaaaaaeaaabVtbVubVtaaaaaeaaebLLbVvbVvbVvbVvbVvbLLafvbVwbVxbVwbVxbwfbVybVzbVzbVAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpTbVBbUzbyrbyrbyrbVCbVDbpTaaaaaaaaeaaabUEbVEbVFbVGbVFbVGbVHbUIbVIbTEbVJbVKbVLbVMbVMbVNbVObVPbVQbVMbVMbVMbVRbVMbVMbVSbVTbVMbVMbVMbVMbVUbVVbVWbVXbVYbVZbWabWbbWcbWdbVMbVMbVMbWebWebWebWebVSbWfbVMbWgbVMbVSbVMbVUbWhbWibVObWebWjbWkbVMbVMbVMbVMbVMbVSbVSbVMbVMbWlbVMbVUbWgbVMbVMbVMbVMbWmbVMbVMbVObVMbWnbVMbWobVMbWpbVMbVMbVMbWqbWebWebWebVMbVUbiQbWrbWsbWtbWsbWubWsbWvbCYbWwbWxbWybWzbWAbWBbWCbWDbWEbWFbWFbWGbWHbWIbWGbWGbWGbWGbWGbWJbWGbWGbWKbWKbWGbWGbWGbWGbWLbWMbWNbWObWPbUnbUnbUnbUnbUnbUnbUobUobUobUobUnbUnbUnbUnbUnbUnaaaaaeaaaaaaaaeaaeaaaaaaaaeaaaaaaaaeafvbwfbwfbwfbWQbUwbWRbWSbWTbWUbWVaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTibWWbWXbWYbWZbWYbXabXbbTmaaaaaaaaeaaabUEbXcbUGbUHbUGbUHbXdbUIbXebTEbXfbXgbXhbXibXibXibXjbXkbXlbXibXibXibXibXibXibXmbXibXibXibXibXnbXobXpbXibXlbXjbXqbXhbXmbXibXrbXsbXsbXsbXsbXsbXsbXsbXtbXubXvbXibXibXmbXibXobXibXibXjbXwbXxbXlbXibXibXibXibXibXmbXybXibXibXibXzbXobXibXibXibXibXibXAbXibXlbXjbXwbXhbXibXibXibXmbXibXibXibXibXibXibXibXibXobXBbXCbXDbXDbXDbXEbXFbXGbXHbXIbXJbXKbXDbXDbXDbXLbXBbXMbXNbXNbXNbXNbXNbXNbXObXNbXNbXNbXNbXNbXNbXPbXQbXRbXRbXRbXRbXSbXTbXUbXVbXWbXXbXYbXYbXYbXWbXZbYabYabYbbYabYcbYdbYdbYebYfbUoaaaaaeaaaaaaaaaaaeaaeaaaaaeaaaaaaaaeafvaaeaaabwfbYgbwfbYhbVzbVzbYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTibpPbpPbpPbpPbpPbTmaaaaaaaaeaaeaaebUEbYjbVFbVGbVFbVGbVFbUIbYkbTEbVbbVbbYlbYmbYmbYnbYobYpbYqbYmbYmbYrbYsbYtbYtbYtbYtbYubYmbYmbYvbYwbYmbYxbYybYzbYAbYBbYAbYCbYDbYEbYnbYrbYFbYmbYmbYnbYGbYqbYHbYmbYmbYmbYmbYwbYmbYIbYGbYJbYKbYLbYmbYmbYmbYmbYmbYnbYMbYNbYObYPbYQbYwbYRbYSbYmbYmbYmbYmbYRbYTbYUbYVbYWbYXbYSbYmbYmbYmbYmbYRbYYbYmbYmbYmbYmbYwblvbYZbZabZbbZbbZcbZdbZebZfbZgbZhbZibZbbZbbZabZjblvbZkbZlbZmbZnbZobZlbZlbZpbZmbZmbZqbZrbZmbZmbZmbZsbZtbZobZobZobZobZubZvbZwbZxbZybZzbZAbZAbZAbZBbZCbZCbZCbZCbZDbZEbYfbZFbZGbUoaaaaaeaaaaaaaaaaaeaaeaaeaaeaaaaaaaaeafvaaeaaabwfbwfbwfbwfbwfbwfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaebUIbUIbUIbUIbZHbZIbZJbZIbZIbZKbUIbUIbUIbUIbUIbUIbUIbZLbZLbZMbZNbZLbZLbUIbZObTEbZPbZPbZPbZQbTEbTEbTEbTEbTEbTEbKubZRbZSbZTbZUbKubKubZVbZWbZXbZYbZXbZXbZXbZXbZZbZXbZWbTEcaacaacaacaacaacaacabcaccadcaacaacaacaacaacaacaecafcagcaecaecahbTEbTEcaicajcajcajcajcakcalcamcancaocapcaicajcajcajcajcakbTEbVbcaqcaqcarcasbhCcatbhCcaucavcavcawcaxcaycazcaAcaBcaBcaCbhCcaDcaEcaFcaEcaEcaGcaHcaIcaHcaHcaEcaEcaEcaJcaKcaKcaKcaLcaMcaKcaKcaKcaEcaNbUncaObUnbUncaPbUnbUnbUnbUnbVmbVmbVmbVnbUncaQcaPcaRbUncaScaScaScaScaScaScaSaaaaaeaaeaaaaaaaaeafvaaeaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaacaTcaUcaVcaWbZIcaXcaYbZIcaZcbacbbcbccbdcbebZIbZIcbfbZIbZIcbgcbhbZIcbebUIcbicbjcbjcbkcbjcbjcbjcblcbmcbmcbncbobKucbpbTzcbpcbqcbrbKtcbsbZWcbtcbucbvcbwcbxcbycbzcbAbZWcbBcaacbCcbDcbEcbFcbGcbHcbIcbJcbKcbFcbLcbMcbNcaacbOcbPcbQcbRcaecbScbTcbUcbUcbUcbVcbWcbVcbUcbUcbXcbYcbZccaccaccaccbcccccbccaccaccdcceccecceccfccfccgbBccchcchcchcchcciccjcckcchcchcchcchbBccclcaEccmcaEccnccoccpccqccrccscctccuccvcaHccwccxccwccycczccwccxccAcaEccBccCccDccEccCccFccGccHccIccJccKccLccJccKccKccMcaSccNccOccPccQccRccSccTccUccVaaaaaaaaeaaeaaaaaeafvaaeaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaebUIbUIbUIccWccXccYccWccWccWccWccWccZbZIcdacdbcdacdccdacdccbgcddcbacdebUIcdfcbjcdgcdgcdgcdhcbjcdicdjcdkcdlcdmbKtcdncdocdpcdqcdrbKucbsbZWcdscdtcducdvcducducbzcdwbZWcdxcaacdycdzcdAcdBcdCcdDcdEcdFcdCcdGcdHcdIcdJcaacdKcdLcdMcdNcaecbScdOcbUcdPcdQcdRcdScdTcdUcbUcdVcdWcdXccacdYcdZceacebceccedceecefcegcehceicejcekcelcemamcamcameamecenceocepameameamcamcceqcercaEcescaEcetceucevcewcewcewcewcewcexceycezceAceAceBcczcewcewceCcaEceDceEceFceGceEceHceIceJceKccKceLceLceLceMccKceNcaSceOcePceOceOceQceRceSceTccVaaaaaaafvaaeaaeaaeafvaaeaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaccWceUceVceWceXceYceZcfaccZbZIcfbcfccfbcfccfbcfccbgcbhcfdcfebUIcdfcbjcffcfgcfhcficfjcfkcflcdxcfmcfnbKtcfocfpcfqcfrcfsbKucbscftcfucdtcducducfvcducbzcfwbZWcdxcaacaacaacaacaacfxcfycfzcfAcfBcaacaacaacaacaacfCcfDcfEcfFcaecbScfGcbUcfHcfIcfJcfKcfLcfMcbUcfNcfOcfPccacfQcfRcfRcfScfTcfUcfVcfWcfXcfYcfZcgaccfcelcemamcamcamcamecenceocepameamcamcamcceqcercaEcgbcaEcgccewcewcgdcgecgfcewcewcggcaHcghcewcgicgjcgkcglcgmcgncaEcgocgpccDccCccCcgqcgoccCccCccKcgrcgscgtcguccKcgvcaScgwcgxcgycgzcgAcgBcgCcgDccVaaaaaaaaaaaaaaeaaeafvaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeccWceUcgEcgFcgGcgHcgFcgIcgJcgKcgLcgLcgLcgLcgLcgLcgMcbhcgNcgNbUIcdfcbjcbjcbjcbjcbjcbjcgOcgPcgQcgRcgObKubKubKtbKubKubKtbKucbsbZWcgScgTcgUcducdvcgVcgWcgXbZWcdxcaacgYcgZchacbFchbchcchdchechfcbFchgchhcbNcaachicfDchjchkcaecbSchlcbUchmcfIchnchochpchqcbUcamchrcaoccachschtchuchuchvchwchxchychzchAchBchCccfcelcemameamcchDchDchEchFchGchDchDamcameceqcercaEchHchIcewcewcewcczcewchJchKchKchLchMchNchOchOchPchQchKchKchKchRchSchTchUchVchWchXchYchZciaccKccKccKccJccKccKcibciccidciecifcigcihccVccVccVciiaaaaaaaaaaaaaaaaaeafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccWccWccWcijcikcilcimcinccZciocgNcgNcgNcgNcgNcgNcbgcbhcgNcgNbUIcipciqcirciscisciscisciscitciucivcivcivcivciwcixciycizciAciBciCciDciEciFciGciHciIciJciKciLciMcaacdycdzcdAciNcdCciOciPciQcdCciRcdHcdIcdJcaaciSciTcagcaecaecbScdOcbUciUciVciWciWciWciWciXciYciZcjacjbcjccjdcjecjfcjgcjhcjicjjcjkcjlcjmcjnccfcelcemameamechDcjocjpcjqcjrcjschDameameceqcercaEchHcjtcewcewcjucjvcjwcjxcjxcjycjzcjAcjBcjCcjDcjxcjEcjxcjxcjFcjGcjHcjIcjJcjKcjLcjLcjLcjLcjLcjMcjNcjOcjNcjNcjNcjPcaScjQcjRcjScjTcjUcjVcjWcjXcjYaaaaaaaaaaaaaaaaaeaaeaaeaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeccWcjZckackbckcckdckeckfcbackgckhckgckhckgckhckickjcfdcfebUIcdfckkcklckmckncknckmckmckockpckqckrckscksckscktcksckuckvckwbZWbZWbZWbZWbZWbZWbZWbZWbZWbZWckxcaacaacaacaacaackyckzckAcfAckBcaacaacaacaacaackCckDckEcdOcdOcbScdOckFckGckHckIckJckKckLckMckNckOckPckQckRckSckTckUckVckWcjbckXckYckZclaclbccfclccldbztbztcleclfclgclhclicljclebztbztclkcercaEchHcllclmclncaEcaEcaEcaEclocaEclpcaHclqclrclscaHcltcltcltclucluclvclwclxclychXchXchXclzchXclAclBclBclCclBclDclEcaScaScaSclFcaSciiciicihciiciiaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeccWclGclHclIclJceZcinbZIclKcfbcfcclLcfccfbcfcclMclNclOclPbUIclQckxcgOamcamcameamcclRclSclRclRclTclRclSclRclRclUclVclWclXclYclYclZcmacmbcgOcmccmdcmecmfcmgcaacbCcmhcmicbFcmjcbHcbIcbJcmkcbFcmlcmmcmncaacmocmpcmqcmrcmrcmscdOcbUcmtcmucmvcmwcmxcmycmzcmAcmBcmCcmDcmEcmFcmGcmHcmIcmJccacmKcmKcmKcmKcmKcmKccgcmLamccmMchDcmNcmOcmPcmQcmRchDamcamccmScmTcaEcmUcmVcmVcmVcmWcmXcmYcmZcnacaEcnbcnccndcnecnfcngcltcnhcnicnjclucnkcnlcnmccCccCccCccCccCccCccCccCccCccCcnncnocgvclvcnpcnpchZciaccCcnqchZcnrcnsaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccWccWccWcntcnuccWcnvccWcnwbUIcbebZIbZIcnxcnybZIcbgcbhbZIcbebUIcdfckxcgOamcameamcamcclRcnzcnAcnBcnCcnDcnEcnFclRcnGcnHcnIcnJcnKcnKcnLcnMcnNcnOcnPcnQcnQcnRcnScaacdycdzcdAcnTcnUcdDcnVcdFcdCcnWcdAcnXcdycaacnYckDcnZcdOcdOcoacobcbUcoccodcoecofcogcohcoicojcokcolcomconcoocopcoqcorcoscotcoucovcowcoxcoycozcoAcoBbKWbKWcoCcoDcoEcoFcoGcoHcoCbKWbKWcoIcoJcaEcaEcaEcaEcaEcaEcaEcaEcoKcoLcoMcoNcoOcoPcoQcoRcoScoTcoUcoVcoWclucoXcoYcoZcoXaaaaaeaaaaaaaaaaaaaaaaaaccCchZcpacpbclBcpccpdcpecpecpfcpecpgchZcnsaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccWcphcpicpjcpkccWcplcpmcpnbUIbUIbUIbUIbUIbUIbUIcpocppcpqcpqcpqcprcnScgOcgOcpscpscgOclRcptcpucpvcpwcpxcpycpzclRcpAcpBcpCcpDcpEcnGcpFcpGcivcpHcivcivcivcpIcpJcaacaacaacaacaacaacpKcpLcpMcaacaacaacaacaacaacpNcpOcnZcpPcpPcpPcpQcpQcpQcpQcpRcpScpScpScpScpTcpUcpVcjbcpWcpXcpYcpZcqacqbcqccqdcqdcqecqfcqdcqdcqgcqhameamechDcqicqjcqkcqlcqmchDameamecqncercqocqpcqqcqrcqscqocqtcqtcqtcqtcqucqvcqwcqxchQcqycqzcqAcqBcqCcqDclucqEcqFcqGcoXaaaaaeaaacqHcqIcqJcqIcqKccCchZchZcqLcqMchZchZcqNcqOcgpcqPcqQchZcnsaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaccWcqRcqScqTcqUccWccWccWbUIbUIcqVcqWcqXcqYcgRcqZcracrbcrccrdcrecrfcrgcrhcrhcrhcrhcmaclRclRcricrjcrkcrlcrmclRclRcrncrocrpcrncrqcnGcpFcrrcrscgOcdlcdlcrtcrucrvckscksckscksckscrwcrxcrycrzcrAcrBcrCcrBcrDcrEcrFcrGcrHcrIcrJcdOcpQcrKcrLcrMcpRcrNcrOcrPcrQcrRcpUcrScrTcrTcrTcrTcrTcrTcrTcrUcrVcrVcrVcrVcrVcrVcelcqhameamcchDchDchDchDchDchDchDamcamecqncercqocrWcrXcrYcrWcqocqtcrZcsacqtcqucsbcscccycsdcsecsfcltcltcltcltclucsgcshcsicsjcsjcsjcsjcskcslcsmcslcskccCclvcsncsocspcsqcsrcsscssccCcstcsucsvcnsaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccWccWcnucswccWccWcsxcsycszcsAcnQcnQcnQcnQcsBcsCcsDcsEcsFcsFcsGcsFcsFcgOcgOcsHcsIcsJcrhcsKcsLcsMcsNcsOcsLcsPcsQcsRcsScsTcrncsUcnGcsVcsWcgOcgOcgOcgOcpscpscsXcsYcsYcsZcsZctacaactbctcctdctectfctgcthctectictjctkcpPcpPcpPcdOcpQctlctmctncpRctoctpctqctrctscttctucrTctvctwctxctyctzctAcrUctBctBctCctBctBcrVcelcqhamcamcamcameamcamcamcameamcamcamccqncercqocrXcrXcrYcrXcqocqtctDcqtcqtcquctEctFctGcjEcjxctHctIctJctKctLctMctNctOctPcsjctQctRcsjcqJctSctTctScqJccCchZccCcgpccCccCccCccCctUctVctVctWctVctVaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOctXctYctZclYclYclYclYcuacubclYclYclYclYcuccudcuecufcsFcugcuhcuicsFcujcukcdlculcdlclSclRcnAcumcuncuocpuclRclRcupcuqcurcuscutcnGcpFcrrcuucgOamcamcameameameameameamccgOcuvcuwcuxcuycuzcuAcuBcuCcuDcuAcuEcpPccgcpPcuFcdOcdOcpQcuGcuHcuIcuJcuKcuLcuMcuNcuOcuPcuQcuRcuScuTcuUcuVcuWcuXcrUcuYctBcuZctBcvacrVcelcqhamcamcameameamcamcamcameameamcamccqncercqocvbcvccvdcvecqocqucvfcqucqucqucvgcvhcvicvjcvjcvkcvlcvmcvncvocvncvpcvqcvrcvscvtcvucRkcvwctSctSctScvxccCcvyccCcvzcvAcvBchZcgpcvCctVcvDcvEcvFctVaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcdmcvGcvHcvIcvJcnQcnQcvKcgRcdlcdlcvLcvMcgOcvNcvOcvPcsFcvQcvRcvScsFcvTcvUcvVcgOcdlclRcvWcvXcvYcvZcwacwbcwcclRcwdcwecwfcwecwgcwhcpFcrrcdlcgOamccwicwjcwjcwjcwjcwjcwkcwlcwmcaacwncwocwpctecwqctectectecwrcpPccgcwscdOcwtcdOcpQcwucwvcwwcpRcwxcwxcwxcuNcwycpUcwzcuRcwAcwBcwCcwDcwEcwFcrUctBctBctBctBcwGcrVccgcwHcwIcwIcwIcwIcwIcmLcwJcwJcwJcwJcwJcwKcclcqocrXcwLcwMcrXcqocwNcwOcwPcwQcqucwRcwScwTcwUcwVcwWcsjcwXcwYcwZcxacxbcxccxdcsjcxecxfcsjcqJctTctTctTcqJccCcxgccCcxhcqMchZcxicxjchZctVcxkcxlcxmctVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcxncxocxncxncxncgOcgOcgOcgOcgOcxpcgOcgOcgOcgOcgOcgOcsFcxqcxrcxscsFcgOcgOcgOcgOcdlclRcxtcxuclRcxvclRcwbcxwclRcxxcrncxycxzcxAcnGcxBcrrcdlcgOcwlcxCcxDcxDcxDcxDcxDcxCcwlcxEcxFcxGcxFcxHcxIcxJcwlcwlcxKcwrcpPccgcpPcxLcxMcxNcpQcxOcxPcxQcpQcxRcxScxTcxUcxVcpUcxWcuRcxXcxYcxZcyacybcyccrUcrVcydcydcydcyecrVclccrFcyfcyfcyfcyfcygcyhcpbcyicyjcyjcyjcpccykcylcymcyncyocypcqocyqcyrcyqcyqcqucyscytcyucaEcaEcaJcyvcyvcyvcyvcyvcyvcsjcsjcsjcsjcsjcsjcskcywcyxcyycskccCcvyccCcnscnscnscnsccCccCctVcyzcyAcyBctVaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecyCcyDcdlcdlcyCaaeaaaaaaaaecgOcdlcdlcqVcgOaaaaaaaaacyEcyEcRlcyEcyEaaaaaaaaacgOcdlclRclRclRclSclRclRclRclRclRcnGcwhcyGcnGcnGcnGcpFcrrcdlcyHcwlcxCcxDcxDcxDcxDcxDcxCcyIcyJcyKcyLcyKcyMcyNcyOcyPcwlcdOcwrcpPccgcyQcpPcpPcpPcpQcpQcyRcyScpQcxUcxUcxUcxUcyTcyUcyVcyWcyXcyXcyYcyZcyXcrTcrUczaczbczcczdczecrVccgczfczgczgczgczgczgcpPcnscnscnscnscnsccCcclcqoczhcziczjczkcqoczlczmczncznczoczpczqczrczscztczuczuczvczwczxczyczvaaaaaaaaaaaaaaeaaaczzcqIczAcqIczBaaaafvafvafvaaeaaaaaaaaaaaaczCczCcRmczCczCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecxncdlczEczFcxnaaeaaeaaaaaecgOczGczHczIcgOaaaaaaaaaaaecyEczJcyEaaeaaaaaaaaacgOcvLczKcdlczHcdlcyDcdlczLcdlczKcdlcdlczMczNczOczPczQczRcwlcwlcwlcxCcxDcxDcxDcxDcxDcxCcxFczSczTczUczUczVczWczXczYcwlcdOczZcpPccgcpPcAacqdcqdcAbcAccAdcAecAfcAgcAgcAgcAhcAicAjcAkcAlcAlcAmcAncAocAlcApcAqcArcAscAtcAucAvcAwcAxcAyameameamcamcamcamcamcamcamcameamecnscclcqocqocAzcAAcqocqocABczmczncznczncACcADcAEcAFcAFcAFcAFcAGcAHcAIcAJczvaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaaaaaaaaaaaaaeczCcAKczCaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecxncALcAMcANcxnaaaaaeaaeaaecgOcgOcpscgOcgOaaaaaaaaeaaecyEcRlcyEaaeaaeaaaaaecgOcgOcgOcpscpscpscgOcpscpscpscgOcgOcgOcAOcgOcgOcgOcAPcrrcwlcAQcARcAScxDcxDcxDcxDcxDcAScxFczScATcAUcAUcAVcAWcAXcAYcwlcdOcwrcpPccgcpPcAZcBacBbcBccBdcBecBfcBgcBecBecBecBhcBicBjcBkcBecBecBecBlcBmcBecBncBocBpcBqcBrcBscBtcBucBvcBwamcameameamcamdamdamdamccBxameamccnscclcqucBycBzcBAcBBcBCcBDcBDcAFcBEcBFcBGcBHcBIcBJcBKcBKcBKcBLcBMcBNcBOczvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaaaaaaaaaaeaaeczCcRmczCaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecxncxncxncxncxnaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaeaaeaaaaaacBPaaaaaaaaeaaeaaeaaeaaaaaeaaaaaaaaaaaaaaaaaeaaeaaaaaacgOcBQcgOaaeaaacBRcBScBTcBUcBVcBWcxDcxDcxDcxDcxDcBXcBYcBZcATcAUcCacCbcCccCdcCecwlcCfcwrcpPcCgcpPcChcwrcCicCjcCjcCkcClcClcClcClcClcClcCmcCncCocxUcCpcRbcCrcCscCtcxUcrVcCucCvcCwcCxcCycrVcCzcAyamcameamdamdamdaDxamdamdamdameamccnscclcqucCAczncCBcCCcCDcCEcCFcCGcCHcCGcCGcCIcCJcCKcCLczncCMczvcCNcCOcCPczvaaeaaeaaeaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaafvaaeaaaaaaaaeaaeaaaaaacCQaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaeaaeaaaaaaaaacBPaaaaaaaaaaaeaaeaaaaaaaaeaaaaaaaaaaaaaaeaaeaaeaaeaaecgOcCRcgOaaeaaacgOcCScCTcCUcCVcCWcxDcxDcxDcxDcxDcCXcCYcCZcDacDbcDbcDccAWcDdcDecwlcdOcwrcyQcDfcDgcDhczfcpPcDicDjcCkcDkcDlcDmcDncDlcClcDocDpcDqcDrcDscDtcDucDvcDscDrcDwcrVcrVcrVcrVcrVcrVcDxcDycDwcDrcDrcDrcDrcDrcDwcnsccCccCccCccCcclcqucDzcCKcDAcDBcDCcDDcDEcDFcDGcDHcDHcDHcDIcDJcDKcDLcDMczvcDNcDOcDPczvaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaaaaeaaeaaaaaaaaacDQaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaeaaeaaaaaaaaaaaacBPaaaaabaaaaaaaaeaaeaaaaaeaaaaaaaaaaaeaaeaaaaaaaaaaaeaaaafvaaaaaeaaacgOcdxcwlcDRcDScDTcxDcxDcxDcxDcxDcDTcxFczScDUcDVcDVcDVcDWczXcDXcwlcDYcDZcEacEbcEccEdctjcEecDicEfcCkcEgcEhcEicEjcEkcElcEmcBjcEncDtcEocEpcEqcErcEscEtcEucEvcEwcExcDwcEycEzcEAcEBcECcEDcEEcEFcEGcEHcDwcsnchZchZcEIctUcclcqucqucqucqucEJcqucEKcELcEMcENcENcEOczncEPcENcENcEQcERcyvcyvczvcEScyvaaeaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaeaaeaaaaaaaaaaaacETaaaaabaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaeaacaaeaaeaaaaaaaaaaaaaaacBPaaaaaaaaaaaaaaaaaeaaeafvafvafvafvafvafvafvafvafvafvafvafvafvafvaaacgOcdxcEUcwlcwlcEVcxDcxDcxDcxDcxDcEVcEWcEXcEYcEYcEYcEYcEYcEZcFacwlcFbcFccFdcFecpPcdOcFfcdOcDicyQcCkcFgcFhcFicFjcFkcFlcFmcFncFocDtcFpcFqcFrcFscFtcFtcFtcFucFvcFwcFxcFycFzcFAcFBcFCcFDcFEcFFcFGcFHcDwcFIcpecFJcFKcFLcFMcFNcFNcFOcFNcFPchZcqucFQcFQcFQcFRcFScFTcFUcFVcFVcFVcDMcFWaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaeaaaaaaaaaaaaaaacETaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecFXcFXcFXcFXcFYaaecFZaaecFYcGacGacGacGaaaeafvaaaaaeaaeaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaacgOcGbcdlcGccwlcEVcxDcxDcxDcxDcxDcEVcwlcGdcGecxFcGfcxFcxFcGgcwlcwlcGhcpPcGicGjcpPcGkcpPcpPcDicGlcCkcGmcGncGocGocGpcClcGqcokcFocDtcGrcGscGtcGucGvcGwcGxcGycGzcGAcDwcGBcDrcDrcDycDwcGCcGDcGEcGFcGGcDwcnsccCcGHccCccCccCcgpccCctUctUcGIcGJcqucFWcFWcFWcGKcRncFWcRocGNcFWcFWcFWcFWaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaecGOcGOcGOcGOcGPaaecETaaecGPcGQcGQcGQcGQaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaecGRcGScGScGTcGUcGVcGWcGXcGYcGYcGZafvafvafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcdxcdlcgOcwlcEVcxDcxDcxDcxDcxDcEVcwlcwlcwlcwlcwlcwlcwlcHacwlcdOcGhcpPcwrcCzcpPcHbcHccpPcHdcHecCkcGmcGncGocGocHfcClcHgcpUcHhcDrcDrcDwcDwcDwcDwcHicDwcHjcHkcHlcDwccgchlcdOcHmcDwcHncGDcHocDrcDrcDramdccCcGHcnsamccnscHpchZcHqchZchZchZccCaaaaaacFWcHrcHscFWcHtcHucFWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvafvafvcHvcHwcHwcHxcHycETcHzcHAcHBcHBcHCaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecHDcHDcHDcHDcHEaaecHFaaecHEcHGcHGcHGcHGaaeaacaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcdxcdlcgOamccHHcHIcHIcHJcHIcHIcHKamccpPcHLcdOcHMcHNcHNcHOcHPcHPcHQcpPcwrcCzcpPcpPcpPcpPcpPcpPcCjcxUcxUcxUcxUcxUcxUcHRcpUcFocDtamccHScHTcHUcHVcHWcHVcHXcHYcHZcDwccgcfGcdOcIacDwcIbcIccIdcIecIfcDramdccCcIgcnsamecnscIhchZchZchZchZchZccCaaaaaacIicGKcRncFWcRocGNcIiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaecIjcIjcIjcIjcIkaaecETaaecIkcIlcIlcIlcIlaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaacGVaaeaaaaaaaaaaaaaaaaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaacgOcdxcvLcgOamcamcameameameameameamcamccpPcdOcpPcImcIncpPcIocpPcIncpPcyQcIpcIqcpPcHbcIrcpPcIscHbcCjcItcIucIvcIwcIxcIycIzcuPcEncDtamccHScIAcIAcIBcICcIDcIEcIFcIGcDwccgcdOcdOcIHcDwcIIcGCcIJcDtcIKcDramcccCcILcnsamecnscsrchZcIMcINchZchZcIOcIPcIQcIQcIRcIScIQcITcRccIQcIVcIWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaacaaeaaaaaaaaaaaaaaaaaacETaaeaaaaaaaaaaaaaaaaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecFXcFXcFXcFXcFYaaecGVaaecFYcGacGacGacGaaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcdxcIYcgOcgOcgOcpscpscpscpscpscgOcgOcpPcdOcpPcpPcIncFfcyQcIZcJacpPcpPcJbcBvcEccJccEccJdcJecGkcCjcJfcJgcJhcJicJjcJkcJlcJmcFocDtamccHScIAcJncHVcJocHVcJpcJqcJrcDwccgcdOcdOcJscDwcJtcJucJvcDtcJwcDramcccCcJxcnsamccnscsqchZchZchZccEchZcIOcJycJzcJzcJzcJzcJAcJzcJzcJzcJBcJCcJDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecGOcGOcGOcGOcGPaaecETaaecGPcGQcGQcGQcGQaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaecGRcGScGScJEcGUcGVcGWcGXcGYcGYcGZaaeaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcdicmfcJFcmfcJGcdlcdlcvLcdlcdlcJHcdlcJIcdOcJJcdOcdOcdOcdOcdOcdOcdOcJKcJLcJMcJNcJOcJOcJOcJPcJQcJRcJhcJScJTcJUcJVcJWcJXcJYcJZcDwcDwcDwcDwcDwcDwcKacDwcDwcKbcDwcDwcKccKdcGkcKecDwcDrcDrcDtcDrcKfcDramcccCcKgccCccCccCccCccCcKhcKicGIcGJcIOcJycJzcJzcJzcJzcJzcJzcJzcJzcJzcKjcJDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaecHvcHwcHwcKkcHycETcHzcHAcHBcHBcHCaaeaaecKlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecHDcHDcHDcHDcHEaaecGVaaecHEcHGcHGcHGcHGaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgOcgOcgOcgOcgOcgOcpscpscpscpscpscgOcgOcpPcdOcyQcDicDicDicDicDicDicDicKmcKncKncDicDicDicDiczfcCzcCjcCjcCjcCjcCjcCjcCjcCjcKocaocDicKpcqdcqdcqdcqdcKqcKrcqdcqdcqdcqdcKscdOcwtcwrczgamcamcamcavaamdauWamcccCcKtcKuchZchZcKvclvchZchZchZchZcIOcJycJzcJzcJzcJzcJzcJzcJzcJzcJzcKjcJDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecIjcIjcIjcIjcIkaaecETaaecIkcIlcIlcIlcIlaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaacGVaaaaaaaaaaaeaaeaaaaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaabaaaaaaaaeaaacpPcdOcdOcDicdOcdOcKwcdOcGkcdOcdOcdOcdOcKxcpPcKycKzcKAcKBcKCcKCcKDcKCcKCcKCcKEcKFcKGcKHcKIcKJcKKcHPcHPcHPcKLcKMcKNcKNcKNcKNcKOcEdcEdcuEcpPcpPccCcnscnscKPcnsccCccCcKQccCcvyccCccCccCccCcgpcaQccCcIOcJycJzcJzcJzcJzcJzcJzcJzcJzcJzcKjcJDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaaaaaaaaaaaaaaaaacETaaaaaaaaaaaeaaeaaaaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecFXcFXcFXcFXcFYaaecGVaaecFYcGacGacGacGaaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKRaaeaaeaaeaaeaaeaaeaaecpPcdOckCcKScdOcKTcKUcdOcKVcdOcdOcdOcdOcKWcpPcdOcdOcKXcKYcKZcqdcqdcqdcLacqdcLbcLccLdcLecLbcLfcpPcpPcpPcpPcLgcIncLhcLicLjcpPcLkcLlcLlcLmcLncLncLocLpcLqcLrcLscRdcLocLucgpcxgccCaaaaabccCcLvchZcLwcIOcJycJzcJzcJzcJzcJzcJzcJzcJzcLxcJCcJDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaecGOcGOcGOcGOcGPaaecETaaecGPcGQcGQcGQcGQaaecIXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaecGRcGScGScGTcGUcGVcGWcGXcGYcGYcGZaaeaaeaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaeaaaaaaaaacpPcdOcdOcDicKwcLycKTcdOcpPcoacdOcdOcLzcLAcyQcKwcLBcpPcdOckDcHbcLCcoacobcLDcDicLEcLFcLGcDicdOcLHcLIcLJcpPcLgcpPcpPcpPcpPcpPcpPcyQcpPcpPcpPcpPccCcnscnscKPcnsccCccCccCccCcvyccCaaaaaaccCclvcqNcLKcIOcLLcIQcIQcIQcIQcIQcIQcIQcIQcLMcLNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaecHvcHwcHwcHxcHycETcHzcHAcHBcHBcHCaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacHDcHDcHDcHDcHEaaecLOaaecHEcHGcHGcHGcHGaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaeaaaaaaaaacpPchlcdOcKmcdOcLPcKwcdOcpPcobcdOcdOcdOcLQcDicDicDicDicfGckDcLRcLRcLRcLRcLRcLRcLScLTcLUcLRcLRcLRcLRcLRcLRcLgcpPcLVcpPcLWcKwcdOcLXcLYczgaaaaaaaaaaaeamdatramdaaeaaaaaaaaaafvaaeaaeaaeccCcLZcMacMbccCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacIjcIjcIjcIjcIkaaecMcaaecIkcIlcIlcIlcIlaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaeaaaaaacBPaaaaaaaaeaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaeaaaaaaaaacpPcMdcMecDicDicDicGkcGkcDiczgczgczgczgcpPcpPcMfcMgcDicpPcMhcLRcMicMjcMjcMkcMlcMmcMncMocMpcMqcMrcMrcMrcLRcLgcyQcMscpPcMtcdOcMucdOckCczgaaaaaaaaeaaeaaeaaaaaeaaeaaeaaaaaaafvaaaaaaaaeccCcnscnscnsccCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaeaaaaaacCQaaaaaaaaeaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaacaacaaeaaeaaaaaacBPaaaaaaaaeaaeaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaacpPcdOcdOcdOcdOcyQcLHcwscpPaaaaaeaaaaaecMvcDicDicDicDicMwckDcLRcMxcMycMrcMzcMAcMBcMCcMDcMEcMFcMrcMycMGcLRcLgcpPcpPcpPcpPcpPcpPcMHcMHcpPaaaaaeaaeaabaaaaaaaaaaaaaaeaaeaaaafvaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaeaaeaaaaaacCQaaaaaaaaeaaeaacaacaadaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaecMIaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaacpPcyQcpPcpPcdOcGkcdOcfGcpPaaaaaeaaaaaecpPcMJcMKcMLcyQcdOckDcLRcMrcMrcMrcMMcMNcMOcMncMPcMQcMRcMjcMjcMScLRcLgcpPcobcoacLCcMTcMdcMUcdOcpPaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaeaaecMIaaeaaeaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaecpPcLCcMVcpPcdOcpPcpPcpPcpPaaeaaeaaeaaecpPcMWcMXcMYcpPcdOckDcLRcMZcMZcMZcMZcNacNbcMncNccNacMZcMZcMZcMZcLRcLgcIncdOcfGcdOcdOcNdcdOcIncpPaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafvaaeaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecpPcwtchlcNecdOcdOcNfcNgcNfafvafvafvafvcpPcNhcyQcpPcpPcdOckDcLRcMicMjcMjcNicMlcNjcNkcMocNlcNmcMrcMrcMrcLRcLgcNncdOcdOcdOcdOcIocdOcdOcpPaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaeaaaaaaaacaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaadaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecpPcpPcpPcpPcdOcNocpPcpPcpPaaeaaeaaeafvcpPcNpcpPcNqcpPcdOckDcLRcMxcNrcMrcNscMAcMBcNtcMDcMEcNucMrcNrcMGcLRcLgcpPcImcMVcNvcGlcNdcNwcNxcpPaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaadaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaacpPcdOcpPcNycNzcpPaaaaabaaaafvcpPcNpcpPamccpPcdOckDcLRcMrcMrcMrcNAcNBcMOcNCcNDcMQcNEcMjcMjcMScLRcNFcpPcpPcpPcpPcpPcpPcpPcpPcpPaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaacpPcdOcyQcNGcNHcpPaaeaaaaaaafvcpPcNpcpPamccpPcdOcNIcLRcMZcMZcMZcMZcNacNJcMncNKcNacMZcMZcMZcMZcLRcNFcyQcKzcNLczgaaaaaaaaaaaeafvaaaaaaaaeaaeaaaaaaaaaaaeaaeaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaacpPcdOcpPcpPcpPcpPaaeaaeaaeafvcpPcNpcpPamecpPcdOckDcLRcMicMjcMjcNMcMlcMmcMncMocNNcNOcMrcMrcMrcLRcNPcNQcdOcKwczgaaaaaaaaeaaeafvaaaaaaaaaaaeaaeameamcaaeaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaeaaacpPcdOcpPaaaaaaaaeaaaaaaaaaafvcpPcNpcpPamccpPchlckDcLRcMxcMycMrcNRcMAcMBcNtcMDcMEcNScMrcMycMGcLRcNFcpPcKycdOczgaaaaaeaaeaaaafvaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeczgcNTczgaaeaaaaaaaaaaaaaaaafvcpPcNUcpPcBxcpPcdOckDcLRcMrcMrcMrcNVcNWcMOcMncMPcMQcNXcMjcMjcMScLRcNFcpPcpPcpPcpPaaeaaeaaaaaaafvaaaaabaaaaaaaaeaaeaaeaaaaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczgczgczgaaeaaeaaeaaeaaeaaeafvcpPcNpczgamccpPcfGckDcLRcMZcMZcMZcMZcMZcNZcOacObcMZcMZcMZcMZcMZcLRcNFcpPcpPcpPcpPcpPcpPaaaaaaafvaaaaaaaaaaaeaaeaaaaaeaaeaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaeaaeaaeaaaaaaaaecpPcNpczgamdczgcLDckDcLRcOccOccOdcOecOfcOgcOhcOicOjcOkcOlcOmcOncLRcNFcyQcOocpPcOpcOqcOqcOraaaafvaaaaaaaaeaaeaaaaaaaaaaaeaaeaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaacpPcNpczgaGFczgcdOcOscOtcOucOvcOwcOxcOycOzcOAcOBcOCcODcOEcOEcOEcOFcOGcOHcdOcOHcOIcOJcOKcOLcOMafvaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaacpPcONczgamdczgcdOcOOcLRcOPcOQcORcORcOScOTcOUcOVcOWcOXcOYcOZcPacLRcPbcPccLCcpPcPdcOqcOqcPeaaaafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaacpPcNpczgamccpPcdOcOOcLRcPfcPgcPhcPicPjcPkcPlcPmcPncPocPpcPqcPrcLRcNpcpPcpPcpPcpPcpPcpPaaaaaaafvaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaecpPcNpcpPamecpPcHbcOOcLRcPscPtcLRcPucPvcPwcPxcPycPzcPucLRcLRcLRcLRcNpczgaaaaaaaaaaaeaaeaaaaaaafvaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecpPcPAcpPamccpPcwtcOOcLRcPBcPBcLRcPCcPDcPEcPFcPGcPDcPCcLRcPHcPIcpPcNpczgaaaaaaaaeaaeaaaaaaaaaafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaacpPcNpcpPcpPcpPcdOcOOcLRcPBcPBcLRcLRcPJcPKcMrcPLcPJcLRcLRcpPcyQcpPcNpczgaaaaaeaaeaaaaaaaaaaaaafvaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaecpPcNpcPMcPNcpPcdOcOOcLRcPOcPOcLRcMrcMrcPKcMrcMrcMrcMrcLRcPPcPQcpPcNpczgaaeaaeaaaaaaaaaaaaaaaafvaaaaaaaaeaaeaaaaaaaaaaaeaaeaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpPcPRcPScPNcpPcdOcOOczgamccBxcLRcPTcPUcPVcMrcPWcMrcPXcLRcHbcdOcKScNpczgaaeaaaaaaaaaaaaaaaaaaafvaaaaaaaaaaaeaaeaaaaaeaaeaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaecpPcNpcHbcPNcyQcdOcOOczgamcamecLRcMrcMrcMrcPYcMrcMrcMrcLRcPZcLHcpPcNpczgaaaaaaaaaaaaaaaaaaaaaafvaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpPcQacyQcpPcpPcPMcOOcpPczgczgcLRcLRcLRcLRcLRcLRcLRcLRcLRcyQcpPcpPcNpczgaaaaaaaabaaaaaaaaaaaaafvaaaaaaaaaaaaaaeaaeaaeaaaaaaaabaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaecpPcQbcQccQdcQecHNcQfcQgcQgcQgcQgcQgcQgcQgcQhcHNcHNcHNcHNcHNcQicQjcQkczgaaaaaaaaaaaaaaaaaaaaaafvaaaaaaaaaaaeaaeaaaaaeaaeaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaacpPcpPcpPcpPcpPcdOcdOckCcQlcNTcNTcQmcdOcdOcOOcHbcdOcdOcNTcNTcQncdOcdOcpPaaaaaaaaaaaaaaaaaaaaaafvaaaaaaaaeaaeaaaaaaaaaaaeaaeaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaeaaaaaaaaacpPcpPczgczgczgczgczgczgczgczgcQoczgczgczgczgczgczgczgczgcpPaaaaaaaaaaaaaaaaaaaaaafvaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaeaaaaaaaaaaaeaaeaabaaaaaaaaeaaeaaaaaaaaaaxLaaaaaaaaeaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaeaaeaaaaaaaxLaaaaaaaaeaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaeaaaaxLaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaxLaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaeaaeaaaaaaaaaaaaaaaaaaaaaaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaxLaaaaaaaaeaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaaaaeaaeaaaaaaaaaaaaaaaaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQqaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaaaaaaaeaaeaaaaaeaaaaaeaaeaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaaaaaaaaaaeaaeaaeaaeaaeaaaaaaaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaaaaeaaeaaecQrcQscQraaeaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaaaaeaaecQtcQucQvcQucQtaaeaaeaaaafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaafvaaeaaecQtcQtcQwcQxcQycQtcQtaaeaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaecQrcQucQAcQscQscQscQBcQucQraaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvaaecQscQCcQDcQscQEcQscQCcQDcQsaaeafvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecQrcQucQFcQscQscQscQGcQucQraaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaecQtcQtcQHcQIcQJcQtcQtaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaecQtcQucQKcQucQtaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaecQrcQscQraaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +afv +aae +aaa +bmm +bpP +bpT +bpP +bwp +bpT +bpT +bpP +bpP +bpP +bpT +bpT +bpT +bpP +bpT +bpP +bTi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aab +afv +aaa +bmm +bnA +bpQ +brZ +bpQ +bpP +byq +bAp +bAp +bAp +bAp +bAp +byq +bpR +bpR +bpR +bRt +bTj +bpT +bpT +bTi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +afv +aaa +bmn +bnB +bpR +bpR +bpR +bpP +byr +byr +byr +byr +byr +byr +byr +byr +byr +byr +bpS +bws +bUy +bVB +bWW +bTi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aae +aaa +afv +aaa +bmn +bnB +bpR +bpR +bpR +bwq +byr +bAq +bAq +bAq +bAq +bAq +byr +bLZ +bLZ +byr +bpR +bTk +bUz +bUz +bWX +bpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aaa +afv +aaa +bmn +bnB +bpS +bpR +bpS +bpP +byr +bAr +bAr +bAr +bAr +bAr +byr +bLZ +bAs +byr +byr +bTl +byr +byr +bWY +bpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aae +aae +afv +aaa +bmn +bnB +bpT +bpT +bpT +bwr +byr +byr +byr +byr +byr +byr +byr +bLZ +bNH +byr +bRu +bws +bUA +byr +bWZ +bpP +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aaa +afv +aaa +bmn +bnB +bpU +bsa +bue +bws +byr +bAq +bAq +bAq +bAq +bAq +byr +bMa +bpP +bPG +bpP +bnA +bUB +byr +bWY +bpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +aaa +afv +aaa +bmn +bnB +bpU +bsa +bsa +bwt +byr +bAr +bAr +bAr +bAr +bAr +byr +bws +bNI +bNJ +bRv +bws +bUC +bVC +bXa +bpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +afv +aaa +bmn +bnB +bpV +bsa +bsa +bws +byr +byr +byr +byr +byr +byr +bKg +bws +bNI +bNJ +bRv +bws +bUD +bVD +bXb +bTm +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +afv +aaa +bmo +bnA +bpV +bsa +bsa +bws +byr +bAs +bAs +bAs +bAs +bAs +byr +bws +bNJ +bPH +bRv +bTj +bpT +bpT +bTm +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +cRz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +afv +aae +aaa +bmo +bpT +bpT +buf +bwu +buf +bpT +bpP +bpP +bpP +bpT +bKh +bwu +bNK +bpT +bpT +bTm +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRz +aaa +aaa +aae +aae +aaa +cRA +aaa +aaa +aaa +cRz +aaa +aaa +aaa +aae +aaa +afv +aaa +aaa +aae +aae +bnC +cRe +bwv +cRg +bnC +aae +aae +aae +bnC +cRg +bwv +cRi +bnC +aaa +aaa +aae +aaa +aaa +aae +bUI +caT +bUI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRA +aaa +aae +aae +aae +aaa +cRz +aaa +aaa +aaa +cRA +aab +aaa +aaa +aae +aaa +afv +aae +aaa +aae +aaa +bnC +buh +bnC +buh +bnC +aaa +aae +aaa +bnC +buh +bnC +buh +bnC +aae +aae +aae +aae +aae +aae +bUI +caU +bUI +aae +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRz +aaa +aaa +aaa +aaa +aab +cRz +aaa +aaa +aaa +aaa +cRz +aae +aae +aaa +aae +aae +cRz +aaa +aaa +aaa +cRz +aaa +aaa +aae +aae +aae +afv +afv +afv +afv +afv +bnC +buh +bnC +buh +bnC +aae +aae +aae +bnC +buh +bnC +buh +bnC +aaa +aaa +aae +aaa +aaa +aae +bUI +caV +bUI +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRz +aaa +aaa +aaa +aaa +aaa +cRA +aaa +aaa +aaa +aaa +cRA +aae +aaa +aaa +aaa +aae +cRA +aaa +aaa +aaa +cRz +aaa +aae +aae +aaa +aae +afv +aae +aaa +bnC +bnC +bnC +cRf +bnC +cRh +bnC +bnC +bEg +bnC +bnC +cRh +bnC +cRj +bnC +bnC +bnC +bUE +bUE +bUE +bUE +bUI +caW +ccW +ccW +ccW +ccW +aae +aae +ccW +ccW +ccW +ccW +cgO +cgO +cgO +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRA +aae +aae +anR +anS +anS +anR +aae +aae +aae +aae +cRA +aaa +aaa +aaa +aaa +aaa +anR +anR +anR +anR +anR +anR +anR +aaa +aaa +aae +afv +aae +aae +bnC +bpW +bsb +buj +bww +byu +bAt +bBS +bEh +bGB +bAt +bKi +bww +bNN +bPI +bRw +bnC +bUF +bVE +bXc +bYj +bZH +bZI +ccX +ceU +ceU +ccW +ccW +ccW +ccW +cph +cqR +ccW +ctX +cdm +cxn +cyC +cxn +cxn +cxn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRz +aae +aaa +anR +aBx +aCW +anR +aaa +aaa +aae +aae +cRz +aaa +aaa +aaa +aaa +aaa +anR +aVH +auq +aoq +axm +bcx +anS +aaa +aaa +aae +afv +aaa +aaa +bnC +bpW +bsc +buk +bnC +byv +bqa +bsc +bqa +bGC +bqa +bKj +bnC +bNO +bPJ +bRx +bnC +bUG +bVF +bUG +bVF +bZI +caX +ccY +ceV +cgE +ccW +cjZ +clG +ccW +cpi +cqS +cnu +ctY +cvG +cxo +cyD +cdl +cAL +cxn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +anR +anR +anR +anR +axl +auq +anR +aaa +aae +aae +aaa +cRz +aaa +aab +aaa +aaa +aaa +anR +aVI +aXG +auq +auq +bcy +anR +aaa +anR +anR +arh +anR +aae +bnD +bpX +bsd +bul +bwx +byw +buq +bBT +bEi +bGD +buq +bKk +bMb +bNP +bPK +bRy +bnD +bUH +bVG +bUH +bVG +bZJ +caY +ccW +ceW +cgF +cij +cka +clH +cnt +cpj +cqT +csw +ctZ +cvH +cxn +cdl +czE +cAM +cxn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +anR +axi +ayE +anR +aBy +auq +anR +aae +aae +aaa +aaa +cRA +aae +aaa +aaa +aaa +aaa +anR +aVJ +aVJ +aZm +aus +auq +anR +aae +anR +bia +auq +anR +aaa +bnD +bpY +bse +bum +bwy +byx +bAu +bsm +bEj +bus +bAu +bKl +bwy +bNQ +bPL +bRz +bnD +bUG +bVF +bUG +bVF +bZI +bZI +ccW +ceX +cgG +cik +ckb +clI +cnu +cpk +cqU +ccW +clY +cvI +cxn +cdl +czF +cAN +cxn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afr +acm +acm +acm +acm +acm +acm +acm +acm +adh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +anR +anR +anR +anR +anR +anR +anR +aCX +anR +anR +anR +anR +anR +anR +anR +anR +anS +anR +anR +anR +anR +anR +anR +bbb +anR +anR +anR +anR +anR +arh +anR +anR +bnD +bpW +bsf +bun +bnC +byy +bqa +bBU +bEk +bGE +bqa +bKm +bnC +bNO +bPM +bRx +bnD +bUH +bVG +bUH +bVG +bZI +caZ +ccW +ceY +cgH +cil +ckc +clJ +ccW +ccW +ccW +ccW +clY +cvJ +cxn +cyC +cxn +cxn +cxn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afr +acm +acm +acm +acm +acm +acm +afH +agj +afH +afG +agz +agE +cQz +agC +agS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anS +aun +auq +axj +ayF +aAe +aBz +aCY +aEl +aqh +aqh +aIt +aqh +aqh +aMH +aNN +aPD +aRp +aqh +aqh +aqh +aXH +aqh +bbc +auq +auq +auq +auq +bib +auq +auB +avZ +bnD +bpW +bsg +buo +bnD +byz +bAv +bBV +bAv +bGF +bAv +bKn +bnD +bNR +bPN +bRA +bnD +bUG +bVH +bXd +bVF +bZK +cba +ccW +ceZ +cgF +cim +ckd +ceZ +cnv +cpl +ccW +csx +clY +cnQ +cgO +aae +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +adN +adN +adN +adN +adN +acm +afG +afG +afG +afG +agt +afG +cQp +agC +agT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anS +auo +avT +axk +ayG +aqh +aBA +aCZ +aEm +aFD +aFD +aFD +aFD +aFD +aMI +aNO +aPE +aRq +aFD +aFD +aFD +aFD +aZn +bbd +bcz +bea +bfy +bfy +bfy +bfy +bkE +bmp +bnD +bnD +bsh +bnD +bwz +byA +byA +bBW +bEl +bGG +byA +byA +bMc +bnD +bPO +bnD +bnD +bUI +bUI +bUI +bUI +bUI +cbb +ccW +cfa +cgI +cin +cke +cin +ccW +cpm +ccW +csy +clY +cnQ +cgO +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +acy +acy +acy +acy +acy +acm +agc +afG +afG +afG +agB +agF +cRt +agC +agU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anS +auo +avU +axl +anR +anR +auV +arm +asn +aFE +aFE +aFE +aFE +aFE +aFE +aBD +aBD +aBD +aBD +aBD +aBD +aBD +aBD +bbe +bcA +beb +bef +bef +bic +axm +bkF +bfy +bnE +bpZ +bsi +bup +bwA +byB +byB +bBX +byB +bGH +byB +byB +bMd +bNS +bPP +bRB +bnD +bUJ +bVI +bXe +bYk +bUI +cbc +ccZ +ccZ +cgJ +ccZ +ckf +bZI +cnw +cpn +bUI +csz +cua +cvK +cgO +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acj +acm +acm +acm +adh +aaa +aaa +acm +acy +aeg +acy +acy +acy +acm +afY +afG +afG +afG +agA +acm +acm +acm +adj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anS +aup +auq +axm +anR +aAf +aBB +arm +asn +aFE +aGP +aIu +aJY +aLI +aBD +aNP +aPF +aBD +aSC +aTV +aVK +aXI +aBD +arj +aAm +bec +bfz +bhg +bhg +bhg +bhg +bhg +bnD +bqa +bsj +bqa +bqa +bqa +bqa +bBY +bqa +bGI +bqa +bqa +bqa +bqa +bqa +bRC +bnD +bTE +bTE +bTE +bTE +bUI +cbd +bZI +bZI +cgK +cio +cba +clK +bUI +bUI +bUI +csA +cub +cgR +cgO +aae +aae +aae +aae +aae +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +acx +acK +acX +acm +adh +aaa +acm +adO +aef +aeM +acy +acy +acm +agd +afG +afG +afG +agD +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +auq +anR +anR +anR +anR +anR +arm +asn +aFE +aGQ +aIv +aJZ +aLJ +aBD +aNQ +aPG +aDe +aSD +aTW +aVL +aXJ +aFF +bbf +bcB +bed +bfA +bhh +bid +bjG +bkG +bmq +bnF +bqb +bsk +buq +buq +buq +buq +bBZ +buq +bGD +buq +buq +bMe +bMe +buq +bRD +bnF +bUK +bVJ +bXf +bVb +bUI +cbe +cda +cfb +cgL +cgN +ckg +cfb +cbe +bUI +cqV +cnQ +clY +cdl +cgO +cgO +cgO +cgO +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acl +acy +acy +acy +acm +acm +acm +acm +acm +acm +acm +aeL +aeW +acm +acm +agk +agl +agr +acm +acm +acm +adh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +aur +avV +axn +auq +aAg +auq +arm +asn +aFE +aGR +aIw +aKa +aLK +aMJ +aNR +aPH +aRr +aSE +aTX +aVM +aXK +aZo +bbg +bcC +bee +awe +bhi +bie +bjH +bkH +bmr +bnG +bqc +bsl +bur +bqc +bqc +bqc +bCa +bEm +bGJ +bqc +bKo +bMf +bNT +bqc +bqc +bnG +bUL +bVK +bXg +bVb +bUI +bZI +cdb +cfc +cgL +cgN +ckh +cfc +bZI +bUI +cqW +cnQ +clY +cdl +cxp +cdl +czG +cgO +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acl +acz +acy +acy +acm +adq +adx +adx +adx +adx +aeX +acy +acy +afs +acy +acy +acy +acy +acy +aeX +agC +agS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aac +aac +aad +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +aus +anR +axl +ayH +aos +axl +arm +asn +aFE +aGS +aIx +aKb +aLL +aMK +aNS +aPI +aRs +aSF +aTY +aVN +aXL +aBD +bbh +bcD +auq +auq +bhg +bif +bjI +bkI +bms +bnH +bqd +bsm +bus +bwB +byC +bAw +bCb +bEn +bGK +bIL +bKp +bMg +bsm +bPQ +bRE +bnH +bUM +bVL +bXh +bYl +bUI +bZI +cda +cfb +cgL +cgN +ckg +clL +bZI +bUI +cqX +cnQ +clY +cvL +cgO +cdl +czH +cps +aaa +aaa +aaa +aac +aac +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acl +acA +adJ +acy +adi +acy +acy +acy +acy +acy +aeV +acy +acy +acy +acy +acy +acy +acy +acy +cNY +agC +agT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +anR +aut +anR +axo +ayI +aAh +axl +arm +asn +aFE +aGT +aIx +aKc +aLM +aML +aNT +aPJ +aBD +aSG +aTZ +aVO +aXM +aBD +bbi +bcE +bef +bfB +bhg +big +bjI +bkJ +bmt +bmt +bmt +bsn +but +bmt +bmt +bmt +bmt +bmt +bmt +bmt +bmt +bmt +bsn +but +bmt +bmt +bmt +bVM +bXi +bYm +bUI +cbf +cdc +cfc +cgL +cgN +ckh +cfc +cnx +bUI +cqY +cnQ +clY +cvM +cgO +cqV +czI +cgO +aaa +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acl +acB +acy +acY +ack +adr +ady +ady +ady +ady +aeX +acy +acy +acy +acy +acy +acy +acy +acy +aeX +agC +agU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiG +aae +ajo +aaa +aiG +aae +ajo +aaa +aiG +aae +ajo +aae +aae +aaa +aaa +aaa +aaa +aae +anR +auu +anR +auq +auq +auq +auq +arm +asn +aFE +aGU +aIy +aKd +aLN +aMK +aNU +aPK +aBD +aLP +aUa +aPO +aLP +aBD +bbj +aAm +auq +bfC +bhg +big +bjI +bkJ +bmu +bnI +bqe +bso +buu +bwC +bnS +bAx +bCc +bAx +bnS +bAx +bnS +bMh +bso +buu +bRF +bTn +bmu +bVM +bXi +bYm +bZL +bZI +cda +cfb +cgL +cgN +ckg +cfb +cny +bUI +cgR +csB +cuc +cgO +cgO +cgO +cgO +cgO +aaa +aaa +aae +aae +cFX +aae +cHD +aaa +cFX +aae +cHD +aaa +cFX +aae +cHD +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acl +acC +acy +acy +acm +acm +acm +aee +acm +acm +acm +afE +aeX +acm +acm +acm +afZ +age +acm +acm +acm +adj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiG +aiT +ajo +aaa +aiG +aiT +ajo +aaa +aiG +aiT +ajo +aaa +aae +aae +aaa +aaa +aae +aae +anR +auv +anR +axp +ayJ +aAi +aBC +arm +asn +aFE +aGV +aIz +aKe +aLO +aMK +aNU +aPL +aBD +aSH +aUb +aVP +aXN +aBD +arj +aAm +auu +bfD +bhg +bih +bjI +bkK +bmt +bnJ +bnS +bso +buu +bwC +bnS +bAx +bnS +bAx +bnS +bAx +bnS +bMh +bso +buu +bnS +bTo +bmt +bVN +bXi +bYn +bZL +bZI +cdc +cfc +cgL +cgN +ckh +cfc +bZI +bUI +cqZ +csC +cud +cvN +cgO +aaa +aaa +aaa +aaa +aae +aae +aaa +cFX +cGR +cHD +aaa +cFX +cGR +cHD +aaa +cFX +cGR +cHD +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +acC +acy +acZ +acm +adj +aaa +aaa +aaa +acm +acy +acy +acy +acm +agi +acy +acy +acy +agm +ags +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aaa +aae +aae +aaa +aae +aaa +anR +auw +anR +axq +axq +axq +axq +arm +asn +aFE +aBD +aIA +aKf +aBD +aBD +aNV +aPM +aBD +aSI +aUc +aVQ +aXO +aBD +bbk +bcF +auv +bfE +bhg +bii +bjJ +bkL +bmv +bnK +bnK +bsp +buv +bnK +bnK +bnK +bnK +bnK +bnK +bnK +bnK +bnK +bsp +buv +bnK +bnK +bmv +bVO +bXj +bYo +bZM +cbg +cbg +cbg +cgM +cbg +cki +clM +cbg +cpo +cra +csD +cue +cvO +cgO +aaa +aaa +aaa +aae +aae +aaa +aaa +cFX +cGS +cHD +aaa +cFX +cGS +cHD +aaa +cFX +cGS +cHD +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acL +acm +acm +acm +adj +aaa +aaa +aaa +aaa +aeh +acy +acy +acy +acm +afI +acy +acy +acy +agn +acm +acm +acm +adh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aad +aae +aae +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aaa +aaa +aae +aae +aae +aaa +anR +aux +auv +axr +ayK +aAj +aAj +aDa +aEn +aFF +aGW +aIB +aKg +aLP +aMM +aNU +aPM +aBD +aBD +aUd +aVR +aXP +aXP +bbl +bcG +aXP +aXP +aXP +big +bjI +bkM +bmw +bnL +bnL +bsq +buw +bnL +bnL +bnL +bnL +bEo +bnL +bnL +bnL +bnL +bsq +bPR +bnL +bTp +bmw +bVP +bXk +bYp +bZN +cbh +cdd +cbh +cbh +cbh +ckj +clN +cbh +cpp +crb +csE +cuf +cvP +cgO +aaa +aaa +aae +aae +aaa +aaa +aaa +cFX +cGS +cHD +aaa +cFX +cGS +cHD +aaa +cFX +cGS +cHD +aae +aae +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aev +acy +acy +acy +acm +afJ +acy +acy +acy +acy +acy +cRv +agC +agS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aiH +aiV +ajp +aaa +aiH +akc +ajp +aaa +aiH +aiV +ajp +aaa +aaa +aaa +aaa +aae +aae +aqd +atd +atd +atd +atd +ayL +aAk +aqi +aDb +aEo +aFG +aGX +aIC +aKd +aLP +aMN +aNW +aPN +aBD +aSJ +aUe +aVS +aXP +aZp +bbm +bcH +beg +bfF +aXP +bij +bjK +bkN +bmt +bnM +bqf +bsr +bux +bwD +bnS +bAy +bnS +bAy +bnS +bIM +bnS +bIM +bNU +bIM +bqg +bTq +bmt +bVQ +bXl +bYq +bZL +bZI +cba +cfd +cgN +cgN +cfd +clO +bZI +cpq +crc +csF +csF +csF +csF +cyE +aae +aae +aaa +aaa +aaa +aaa +cFY +cGT +cHE +aaa +cFY +cJE +cHE +aaa +cFY +cGT +cHE +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acL +acm +acm +acm +acm +afK +aeg +acy +acy +acy +acy +cRu +agC +agT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aae +aiW +aae +aaa +aae +aiW +aae +aaa +aae +aiW +aae +aaa +aaa +aaa +aaa +aqd +aqd +aqd +ate +auy +avW +atd +ayM +aAl +aBD +aBD +aBD +aBD +aGY +aID +aKh +aLP +aLP +aNX +aPO +aBD +aBD +aUf +aVT +aXQ +aZq +bbn +bcI +beh +bfG +aXP +bij +bjI +bkJ +bmu +bnN +bnS +bso +buu +bnS +byD +bAy +byD +bAy +bnS +bIM +bnS +bIM +bNU +bIM +bqg +bTr +bmu +bVM +bXi +bYm +bZL +cbe +cde +cfe +cgN +cgN +cfe +clP +cbe +cpq +crd +csF +cug +cvQ +cxq +cyE +cyE +cyE +aaa +aaa +aaa +aaa +aae +cGU +aae +aaa +aae +cGU +aae +aaa +aae +cGU +aae +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aei +acm +afL +aga +acy +afD +afD +acy +aeY +agC +agU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aae +aae +aid +aio +aio +aiI +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +anQ +aio +aio +ato +arg +ato +atf +auz +avX +axs +ayN +aAl +aBE +aDc +aEp +aFH +aGZ +aIE +aKi +aLQ +aMO +aNY +aPP +aRt +aLQ +aUg +aVU +aXR +aZr +bbo +bcJ +bcH +bfH +aXP +bij +bjI +bkJ +bmt +bmt +bmu +bss +buy +bmu +bmt +bmt +bmt +bEp +bnS +bnS +bnS +bnS +bNU +bnS +bqg +bTs +bmt +bVM +bXi +bYm +bUI +bUI +bUI +bUI +bUI +bUI +bUI +bUI +bUI +cpq +cre +csG +cuh +cvR +cxr +cRl +czJ +cRl +cBP +cBP +cBP +cBP +cFZ +cGV +cHF +cGV +cGV +cGV +cGV +cGV +cGV +cGV +cLO +cBP +cBP +cMI +aae +aae +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aei +acm +acm +acm +acm +acm +acm +acm +acm +adj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aae +aiY +aae +aae +aae +aiY +aae +aaa +aae +aiY +aae +aaa +aaa +aaa +aaa +aqd +aqd +aqd +atg +auA +avY +atd +ayO +aAl +aBF +aDd +aEq +aFI +aHa +aIF +aKj +aLR +aHa +aNZ +aPQ +aRu +aLR +aUh +aVV +aXS +aZs +bbp +bcK +bei +bfI +aXP +bij +bjI +bkJ +bmt +bnO +bnS +bso +buu +bnS +byE +bmt +bCd +bmt +bGL +bIN +bKq +bnS +bNV +bPS +bqg +bTt +bmt +bVM +bXi +bYr +bZO +cbi +cdf +cdf +cdf +cip +cdf +clQ +cdf +cpr +crf +csF +cui +cvS +cxs +cyE +cyE +cyE +aaa +aaa +aaa +aaa +aae +cGW +aae +aae +aae +cGW +aae +aaa +aae +cGW +aae +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aiH +aiZ +ajp +aaa +aiH +aiZ +ajp +aaa +aiH +aiZ +ajp +aaa +aaa +aaa +aaa +aae +aae +aqd +atd +atd +atd +atd +ayP +aAl +aBD +aDe +aBD +aBD +aHb +aIG +aKd +aBD +aMP +aIx +aKb +aRv +aBD +aUi +aVW +aXP +aZt +bbp +bcL +bcH +bfJ +aXP +bij +bjI +bkO +bmt +bnP +bqg +bst +buz +bqg +byF +bmt +bCe +bmt +bmt +bmt +bmt +bMi +bNW +bPT +bqg +bTu +bmt +bVR +bXi +bYs +bTE +cbj +cbj +cbj +cbj +ciq +ckk +ckx +ckx +cnS +crg +csF +csF +csF +csF +cyE +aae +aae +aaa +aaa +aab +aaa +cFY +cGX +cHE +aaa +cFY +cGX +cHE +aaa +cFY +cGX +cHE +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aac +aac +aae +aae +aiJ +aja +ajq +aaa +aiJ +aja +ajq +aaa +aiJ +aja +ajq +aaa +aaa +aaa +aae +aae +aaa +aaa +anR +auB +avZ +axt +ayL +aAl +aBG +aDd +aEr +aFJ +aHa +aIF +aKd +aLP +aMQ +aIx +aKb +aMQ +aLP +aUj +aVW +aXP +aZu +bbq +bcM +bej +bfK +aXP +bij +bjI +bkJ +bmt +bnQ +bqh +bsu +buA +bwE +byG +bmt +bCf +bmt +bGM +bIO +bmt +bMj +bnS +bPU +bqg +bPV +bmt +bVM +bXi +bYt +bZP +cbj +cdg +cff +cbj +cir +ckl +cgO +cgO +cgO +crh +cgO +cuj +cvT +cgO +aaa +aaa +aae +aae +aaa +aaa +aaa +cGa +cGY +cHG +aaa +cGa +cGY +cHG +aaa +cGa +cGY +cHG +aae +aae +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aiJ +aja +ajq +aaa +aiJ +aja +ajq +aae +aiJ +aja +ajq +aaa +aaa +aae +aae +aaa +aaa +aaa +anR +auq +auq +auq +ayQ +aAl +aBH +aDf +aEs +aFK +aHc +aIH +aKk +aLP +aMR +aIx +aKb +aMR +aLP +aUj +aVX +aXP +aZv +bbr +bcN +bek +aZv +bhj +bij +bjI +bkJ +bmt +bnR +bqi +bsv +buB +bwF +bwD +bmt +bCd +bmt +bGN +bIP +bKr +bnS +bNX +bPV +bqg +bTv +bmt +bVM +bXi +bYt +bZP +cbk +cdg +cfg +cbj +cis +ckm +amc +amc +cgO +crh +cgO +cuk +cvU +cgO +aaa +aaa +aaa +aae +aae +aaa +aaa +cGa +cGY +cHG +aaa +cGa +cGY +cHG +aae +cGa +cGY +cHG +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiJ +ajb +ajq +aaa +aiJ +ajb +ajq +aae +aiJ +ajb +ajq +aaa +aae +aae +aaa +aaa +aaa +aaa +anR +auq +aus +axu +ayR +aAl +aBD +aDg +aDg +aDg +aHd +aII +aKl +aDg +aBD +aOa +aPR +aBD +aBD +aUk +aVY +aXT +aZw +bbs +bcO +bel +bfL +bhk +bik +bjL +bkJ +bmt +bnS +bqg +bsw +bsw +bqg +bnS +bmt +bCg +bmt +bGO +bIQ +bmt +bMk +bNY +bPW +bqg +bnN +bmt +bVS +bXm +bYt +bZP +cbj +cdg +cfh +cbj +cis +ckn +amc +ame +cps +crh +csH +cdl +cvV +cgO +aaa +aaa +aae +aae +aae +aae +aaa +cGa +cGZ +cHG +aaa +cGa +cGZ +cHG +aae +cGa +cGZ +cHG +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiJ +aae +ajq +aaa +aiJ +aae +ajq +aaa +aiJ +afv +ajq +aae +aae +aaa +aaa +aaa +aaa +aaa +anR +auC +awa +axv +ayS +aAm +axl +aDg +aEt +aFL +aHe +aIJ +aKm +aEy +aMS +aOb +aPS +aRw +aBD +aUl +aVZ +aXU +aZx +aUy +bcP +bem +bfM +bhk +bil +bjI +bkJ +bmt +bnT +bqj +bsx +buC +bnS +byH +bmt +bCh +bmt +bmt +bmt +bmt +bmt +bmt +bmt +bRG +bmt +bmt +bVT +bXi +bYt +bZQ +cbj +cdh +cfi +cbj +cis +ckn +ame +amc +cps +crh +csI +cul +cgO +cgO +cgO +cgO +cgO +aae +aaa +aae +aae +cGa +afv +cHG +aaa +cGa +aae +cHG +aaa +cGa +aae +cHG +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +afv +afv +afv +afv +afv +afv +afv +aae +aae +anR +auD +awb +axu +ayL +aAm +auq +aDg +aEu +aFM +aHf +aIJ +aKn +aLS +aMT +aOc +aPT +aRx +aLP +aUl +aWa +aXV +aZy +bbt +bbt +aKs +bfN +bhl +bim +bjM +bkP +bmt +bmt +bmt +bsy +bmt +bmt +bmt +bmt +bCi +bCi +bGP +bIR +bEs +bMl +bsB +bnX +bnX +bTw +bTE +bVM +bXi +bYu +bTE +cbj +cbj +cfj +cbj +cis +ckm +amc +amc +cgO +cma +csJ +cdl +cdl +cdl +cdl +cvL +cgO +aaa +aaa +aaa +aae +aae +afv +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aac +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aac +aac +aaa +aaa +aaa +aaa +afv +aaa +aaa +anR +auE +awc +axu +ayL +aAm +aBI +aDg +aEv +aFN +aHg +aIK +aKo +aDg +aMU +aOd +aPU +aRy +aLP +aUm +aWb +aXW +aZz +bbu +bcQ +ben +bfO +bhm +bil +bjI +bkQ +bhg +bnU +bqk +bsz +bqk +bwG +bqk +bAz +bCj +bEq +bqk +bIS +bnX +bwJ +bNZ +bnW +bnX +bTw +bTE +bVM +bXi +bYm +bTE +cbl +cdi +cfk +cgO +cis +ckm +clR +clR +clR +clR +crh +clS +clR +clR +clR +czK +cgO +aae +aae +aae +afv +afv +afv +aac +aac +cIX +cIX +cIX +cIX +cIX +aad +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +anR +anR +anR +anR +auV +anR +ayL +aAm +auq +aDg +aEw +aFO +aHh +aIL +aKp +aLS +aMT +aOe +aPV +aRx +aLP +aUn +aWc +aXX +aZA +bbv +bcR +beo +bfP +bhn +bin +bjN +bkR +bmx +bnV +bql +bsA +buD +bwH +buD +bAA +bCk +bEr +bEr +bIT +bKs +bMm +bsC +bnX +bnX +bTx +bTE +bVM +bXi +bYm +bTE +cbm +cdj +cfl +cgP +cit +cko +clS +cnz +cpt +clR +csK +clR +cvW +cxt +clR +cdl +cps +aaa +aaa +aaa +afv +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +arh +ask +ath +auF +awd +axw +ayT +aAn +aBJ +aDg +aEx +aFP +aHi +aIM +aKq +aEy +aMV +aOf +aPS +aRz +aBD +aUj +aWd +aXY +aZB +bbw +bcS +bep +bfQ +bhk +bil +bjI +bkS +bhg +bnW +bnX +bsB +bsC +bwI +bsC +bsC +bCl +bnX +bnX +bwJ +bnX +bMn +bsB +bnX +bnX +bnX +bTE +bVM +bXn +bYv +bTE +cbm +cdk +cdx +cgQ +ciu +ckp +clR +cnA +cpu +cri +csL +cnA +cvX +cxu +clR +czH +cps +aaa +aaa +aaa +afv +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +anR +anR +ati +auG +awe +axx +ayU +aAo +aBK +aDg +aEy +aEy +aHd +aIN +aKl +aDg +aBD +aOg +aPR +aBD +aBD +aUo +aWe +aXT +aZC +bbx +aIQ +aIQ +bfR +bhk +bio +bjI +bkT +bhg +bnX +bqm +bsC +buE +bwJ +byI +bsB +bCl +bEs +bnX +bwJ +byI +bnX +bOa +bnX +bEs +bnX +bTE +bVU +bXo +bYw +bTE +cbn +cdl +cfm +cgR +civ +ckq +clR +cnB +cpv +crj +csM +cum +cvY +clR +clS +cdl +cps +aaa +aaa +aaa +afv +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +ati +asn +auq +auq +arj +aAp +aBL +aDh +aEz +aEz +aHj +aIO +aKr +aLT +aMW +aOh +aPW +aRA +aSK +aUp +aWf +aXT +aXT +bby +bbz +bbz +bbz +bho +bip +bjO +bkU +bhg +bnY +bqn +bsC +buF +bwK +buF +bsC +bCm +bEt +bEt +bIU +bEt +bEt +bOb +bEt +bEt +bEt +bUN +bVV +bXp +bYm +bTE +cbo +cdm +cfn +cgO +civ +ckr +clT +cnC +cpw +crk +csN +cun +cvZ +cxv +clR +cyD +cgO +aaa +aaa +aae +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +ati +asn +auP +axy +ayV +aAq +aBM +aDi +aEA +aFQ +aHk +aIP +aKs +aLU +aMX +aOi +aPX +aRB +aLU +aUq +aWg +aIQ +aZD +bbz +bcT +beq +bfS +bby +bio +bjI +bkT +bmy +bmy +bmy +bmy +bmy +bwL +bwL +bwL +bCn +bwL +bwL +bIV +bKt +bKu +bKt +bKu +bKt +bKu +bKu +bVW +bXi +bYx +bKu +bKu +bKt +bKt +bKu +civ +cks +clR +cnD +cpx +crl +csO +cuo +cwa +clR +clR +cdl +cps +aaa +aae +aae +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +ati +asn +auP +axz +ayW +atl +aBN +aDj +atl +atl +aHl +aIQ +aKt +aLV +aHn +aOj +aPY +aHn +aLV +aUr +aWh +aXZ +aZE +bbA +bcU +ber +bfT +bby +biq +bjI +bkT +bmy +bnZ +bqo +bsD +buG +bwL +byJ +bAB +bCo +bEu +bwL +bIV +bKt +bMo +bOc +bPX +bOc +bTy +bUO +bVX +bXl +bYy +bZR +cbp +cdn +cfo +bKu +civ +cks +clS +cnE +cpy +crm +csL +cpu +cwb +cwb +clR +czL +cps +aae +aae +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aab +ati +asn +awf +axA +ayX +aAr +aBO +aDk +aEB +atl +aHm +aHm +aHm +aHn +aMY +aOk +aPZ +aRC +aHn +aUs +aWi +aYa +aZF +bbB +bcV +bes +bfU +bby +bio +bjI +bkV +bmz +boa +bqp +bsE +buH +bmz +byK +bAC +bCo +bEv +bwL +bIV +bKu +bMp +bOd +bPY +bRH +bTz +bUP +bVY +bXj +bYz +bZS +bTz +cdo +cfp +bKt +ciw +cks +clR +cnF +cpz +clR +csP +clR +cwc +cxw +clR +cdl +cps +aae +aae +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +anR +asl +atj +auH +auP +axB +ayY +atl +aBP +aDl +aEC +atl +aHn +aHn +aHn +aHv +aMZ +aOl +aQa +aRD +aHn +aUt +aVW +aIQ +aZG +bby +bby +bby +bby +bby +bio +bjI +bkT +bmA +bob +bob +bob +bob +bwM +byL +bAD +bCp +bEw +bwL +bIV +bKu +bMq +bOe +bPZ +bRI +bTA +bUQ +bVZ +bXq +bYA +bZT +cbp +cdp +cfq +bKu +cix +ckt +clR +clR +clR +clR +csQ +clR +clR +clR +clR +czK +cgO +aaa +aae +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +ari +asm +atk +auI +auP +axC +ayZ +atl +aBQ +aDm +aED +atl +aHo +aHo +aIR +aHn +aNa +aOm +aQa +aRE +aHn +aUu +aWj +aYb +aZH +aYc +bcW +bet +bfV +aYc +bir +bjJ +bkW +bmB +boc +bqq +bsF +buI +bmB +bsF +bsF +bCq +bEx +bwL +bIW +bKu +bMp +bOf +bQa +bRJ +bTB +bUR +bWa +bXh +bYB +bZU +cbq +cdq +cfr +bKu +ciy +cks +clU +cnG +cpA +crn +csR +cup +cwd +cxx +cnG +cdl +cgO +aaa +aae +aae +afv +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +arj +asn +atl +atl +atl +atl +atl +atl +aBR +aDn +atl +atl +aHo +aIR +aHo +aHn +aNb +aOn +aQb +aRF +aHn +aUj +aWk +aYc +aYc +aYc +aYc +aYc +aYc +aYc +biq +bjI +bkT +bmy +bod +bqr +bsG +buJ +bwL +byM +bAE +bAE +bEy +bwL +bIV +bKt +bMr +bOg +bQb +bOg +bTC +bUO +bWb +bXm +bYA +bKu +cbr +cdr +cfs +bKt +ciz +cku +clV +cnH +cpB +cro +csS +cuq +cwe +crn +cwh +cdl +cgO +cgO +cgO +aaa +afv +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +ark +asn +atl +auJ +awg +axD +aza +aAs +axE +aDo +aEE +atl +aHp +aIR +aHo +aHn +aNc +aOo +aQc +aRG +aSL +aUv +aWl +aYd +aZI +bbC +bcX +beu +bfW +aYc +bij +bjK +bkX +bmy +bmy +bmy +bmy +bmy +bwL +bwL +bwL +bwL +bwL +bwL +bIV +bKu +bKu +bKt +bKt +bKu +bKt +bKu +bWc +bXi +bYC +bKu +bKt +bKu +bKu +bKu +ciA +ckv +clW +cnI +cpC +crp +csT +cur +cwf +cxy +cyG +czM +cAO +cBQ +cCR +afv +afv +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +anR +arl +asn +atl +auK +awh +axE +azb +aAt +axE +aAz +awk +atl +aHq +aIS +aKu +aHn +aNd +aOp +aQd +aRH +aSM +aUw +aWm +aYe +aZJ +bbD +bcY +aZN +bfX +bhp +bim +bjM +bkY +bmC +boe +bqs +bqs +buK +bwN +byN +bAF +bAF +bAF +bGQ +bIX +bAF +bAF +bOh +bQc +bRK +bqk +bUS +bWd +bXr +bYD +bZV +cbs +cbs +cbs +cbs +ciB +ckw +clX +cnJ +cpD +crn +crn +cus +cwe +cxz +cnG +czN +cgO +cgO +cgO +aaa +afv +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +anR +arj +asn +atl +auL +awi +axE +awi +aAu +axE +aDp +aEF +atl +aHn +aIT +aHn +aHv +aHn +aOq +aQe +aHv +aHv +aUx +aWn +aYc +aZK +bbE +bcZ +bbE +bfY +aYc +bio +bjI +bkT +bmD +bmD +bmD +bsH +buL +bmD +bmD +bAG +bAG +bEz +bGR +bIY +bAG +bAG +bOi +bnX +bRL +bTD +bTE +bVM +bXs +bYE +bZW +bZW +bZW +cft +bZW +ciC +bZW +clY +cnK +cpE +crq +csU +cut +cwg +cxA +cnG +czO +cgO +aae +aae +aae +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +anS +anR +anR +arm +asn +atl +auM +awj +axF +azc +aAv +aBS +aDq +aEG +atl +aHr +aIU +aKv +aLW +aNe +aOr +aQf +aRI +aHv +aUy +aWo +aYc +aZL +aZN +bcZ +aZN +bfZ +aYc +bis +bjI +bkT +bmD +bof +bqt +bsI +buM +bwO +bqt +bAG +bCr +bEA +bGS +bIZ +bKv +bAG +bOj +bQd +bRL +bnX +bTE +bVM +bXs +bYn +bZX +cbt +cds +cfu +cgS +ciD +bZW +clY +cnK +cnG +cnG +cnG +cnG +cwh +cnG +cnG +czP +cgO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +aop +apo +aqf +arm +asn +atl +auN +awk +axG +azd +aAw +aBT +aDr +aEH +atl +aHs +aIV +aIW +aLX +aNf +aOs +aQg +aRJ +aHv +aUz +aWp +aYc +aZM +bbE +bcZ +bbE +bga +aYc +bit +bjI +bkZ +bmD +bog +bqu +bsJ +buN +bwP +byO +bAG +bCs +bEB +bGT +bJa +bKw +bAG +bOk +bsC +bRL +bTE +bTE +bVM +bXs +bYr +bZY +cbu +cdt +cdt +cgT +ciE +bZW +clZ +cnL +cpF +cpF +csV +cpF +cpF +cxB +cpF +czQ +cAP +cBR +cgO +cgO +cgO +cgO +cgO +cgO +cgO +cgO +cgO +cgO +cRA +cRz +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anS +aoq +app +aqg +arm +asn +atl +auO +awl +axH +aze +aAx +aBU +aDs +aEI +atl +aHt +aIW +aIW +aIW +aNg +aOt +aQh +aRK +aHv +aQl +aWq +aYc +aZN +aZN +bcZ +aZN +aZN +aYc +big +bjI +bkT +bmD +bmD +bqv +bsK +buO +bqv +bmD +bAG +bAG +bEC +bGS +bJb +bKx +bAG +bOi +byI +bRL +bTE +bUT +bWe +bXs +bYF +bZX +cbv +cdu +cdu +cgU +ciF +bZW +cma +cnM +cpG +crr +csW +crr +crr +crr +crr +czR +crr +cBS +cCS +cdx +cdx +cGb +cdx +cdx +cdx +cdx +cdi +cgO +cRA +cRA +cRB +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +aor +apq +aqh +arn +aso +atl +auP +auP +auP +azf +aAy +auP +auP +auP +atl +aHs +aIX +aIW +aLY +aNh +aOu +aQa +aRL +aHv +aQx +aWr +aYc +aZO +bbE +bcZ +bbE +bgb +aYc +big +bjI +bkT +bmD +boh +boj +bsL +buM +boj +byP +bAG +bCt +bAG +bGS +bJc +bKy +bAG +bOl +bqk +bRM +bTE +bUU +bWe +bXs +bYm +bZX +cbw +cdv +cdu +cdu +ciG +bZW +cmb +cnN +civ +crs +cgO +cuu +cdl +cdl +cdl +cwl +cwl +cBT +cCT +cwl +cEU +cdl +cdl +cdl +cvL +cIY +cmf +cgO +cRA +cRA +cRA +cRz +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anS +aos +apr +aqi +aro +asp +atl +auQ +awm +axI +azg +aAz +auP +aDt +aEJ +atl +aHu +aIY +aKw +aLZ +aNi +aOv +aQa +aRM +aHv +aQl +aWq +aYc +aZN +aZN +bcZ +aZN +aZN +aYc +big +bjI +bkT +bmD +boi +bqw +bsM +buP +bwQ +byQ +bAG +bAG +bAG +bGU +bIY +bAG +bAG +bOm +bQe +bRN +bTE +bUV +bWe +bXs +bYm +bZX +cbx +cdu +cfv +cdv +ciH +bZW +cgO +cnO +cpH +cgO +cgO +cgO +cgO +cgO +cyH +cwl +cAQ +cBU +cCU +cDR +cwl +cGc +cgO +cgO +cgO +cgO +cJF +cgO +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +aot +aps +aqj +arm +asn +atl +auR +awn +axJ +azh +aAw +aBV +aDu +aEK +atl +aHv +aHv +aHv +aHv +aHv +aOw +aQi +aHv +aHv +aQl +aWs +aYc +aYc +aYc +bda +aYc +aYc +aYc +big +bjI +bkT +bmE +boj +bqx +bsN +buQ +bwR +boj +bAG +bCu +bED +bGV +bJd +bKz +bAG +bnX +bsC +bRO +bTE +bUW +bWe +bXs +bYn +bZX +cby +cdu +cdu +cgV +ciI +bZW +cmc +cnP +civ +cdl +cgO +amc +amc +cwl +cwl +cwl +cAR +cBV +cCV +cDS +cwl +cwl +cwl +amc +amc +cgO +cmf +cgO +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anR +anS +anR +anR +arm +asn +atl +auS +awo +axK +azi +aAA +aBW +aDv +aEL +atl +aHw +aIZ +aKx +aKx +aKx +aOx +aQj +aRN +aKx +aUA +aWt +aKx +aKx +aKx +bdb +aKx +aKx +bhq +biu +bjP +bla +bmE +boj +bqx +bsO +buQ +bwR +byR +bAG +bCv +bEE +bGW +bJe +bKA +bAG +bnX +bsC +bRO +bTE +bTE +bVS +bXt +bYG +bZZ +cbz +cbz +cbz +cgW +ciJ +bZW +cmd +cnQ +civ +cdl +cgO +amc +cwi +cxC +cxC +cxC +cAS +cBW +cCW +cDT +cEV +cEV +cEV +cHH +amc +cgO +cJG +cgO +aae +cKR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +anR +arj +asn +atl +auT +awp +axI +azj +aAB +auP +aDw +aEM +atl +aHx +anR +aJb +aJb +aKC +aOy +aQk +aRO +aRO +aRO +aWu +aRP +aRP +aRP +aRP +aRP +aRP +aRP +bii +bjQ +blb +bmF +bok +bqy +bsP +buR +bwS +byS +bAH +bCw +bEF +bGX +bED +bKB +bAG +bOn +bsC +bRP +bTF +bUX +bWf +bXu +bYq +bZX +cbA +cdw +cfw +cgX +ciK +bZW +cme +cnQ +civ +crt +cps +ame +cwj +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cHI +ame +cps +cdl +cps +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +anR +arj +asn +atl +atl +atl +atl +azk +aAC +atl +atl +atl +atl +aHx +anR +ame +ame +aJb +aOz +aQl +aRP +aSN +aRP +aWv +aRP +aWv +aRP +aWv +aRP +aWv +aRP +big +bjR +blc +bmG +bol +bqz +bsQ +buS +bwT +byT +bAI +bCx +bEG +bGY +bJf +bKC +bAG +bOo +bsC +bnX +bOi +bTE +bVM +bXv +bYH +bZW +bZW +bZW +bZW +bZW +ciL +bZW +cmf +cnR +cpI +cru +cps +ame +cwj +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cHI +ame +cps +cdl +cps +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +anR +arj +asn +anR +auU +anR +amc +azl +ame +amc +anR +aEN +auV +aHx +anS +amc +amc +aNj +aOA +aQm +aRP +aSO +aRP +aWw +aRP +aZP +aRP +bdc +aRP +bgc +aRP +big +bjR +bld +bmE +boj +bqA +bsR +buQ +bwR +byU +bAG +bCy +bEH +bGZ +bJg +bKD +bAG +bmH +bmH +bmH +bTG +bmH +bWg +bXi +bYm +bTE +cbB +cdx +cdx +cdx +ciM +ckx +cmg +cnS +cpJ +crv +csX +ame +cwj +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cHJ +ame +cps +cvL +cps +aab +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +anS +arp +asn +anR +auV +anR +anS +azm +anS +anS +anR +anR +anR +aHx +asl +aKy +aKy +aNk +aOB +aQn +aRO +aSP +aSP +aWx +aSP +aSP +aSP +bdd +aSP +aSP +aRO +biv +bjS +bkX +bmE +boj +bqA +bsR +buQ +bwR +byV +bAG +bCz +bEH +bHa +bJh +bKE +bAG +bOp +bQf +bOp +bTH +bmH +bVM +bXi +bYm +caa +caa +caa +caa +caa +caa +caa +caa +caa +caa +cks +csY +ame +cwj +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cHI +ame +cps +cdl +cps +aaa +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +anR +arq +asq +atm +atm +atm +atm +azn +atm +atm +atm +atm +atm +aHy +aJa +ame +ame +aJb +aOz +aQo +aRQ +aSQ +aUB +aWy +aUB +aZQ +aUB +bde +aUB +aSQ +bhr +biw +bjR +bkT +bmD +bom +bqB +bsS +buT +bwU +byW +bAG +bCA +bEI +bHb +bJi +bKF +bAG +bop +bCF +bop +bTH +bmH +bVS +bXm +bYm +caa +cbC +cdy +caa +cgY +cdy +caa +cbC +cdy +caa +cks +csY +ame +cwj +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cxD +cHI +ame +cps +cdl +cps +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aab +aaa +anR +arr +asr +atn +aqi +aqi +aqi +azo +aqi +aqi +aqi +aqi +aFR +aHz +anR +aJb +aJb +aJb +aOz +aQp +aRP +aRP +aRP +aRP +aRP +aRP +aRP +aRP +aRP +aRP +aRP +bix +bjT +ble +bmD +bon +bqC +boj +buU +boj +byP +bAG +bCB +bEJ +bGV +bJj +bKG +bMs +bOq +bOq +bOq +bTI +bmH +bVM +bXi +bYm +caa +cbD +cdz +caa +cgZ +cdz +caa +cmh +cdz +caa +cks +csZ +amc +cwk +cxC +cxC +cxC +cAS +cBX +cCX +cDT +cEV +cEV +cEV +cHK +amc +cgO +cJH +cgO +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +anR +anR +anR +anS +anS +anS +anS +azp +anS +anS +anS +anS +anS +anR +aJb +aKz +aKF +aJb +aOz +aQp +aRR +aRR +aRR +aRR +aYf +aZR +aZR +bdf +bev +aZR +aRV +biy +bjU +bkU +bmD +bmD +bqD +bmE +buV +bmE +bmD +bAG +bAG +bEK +bHc +bJk +bJk +bAG +bOr +bQg +bRQ +bTJ +bmH +bVU +bXo +bYw +caa +cbE +cdA +caa +cha +cdA +caa +cmi +cdA +caa +cks +csZ +cgO +cwl +cwl +cyI +cxF +cxF +cBY +cCY +cxF +cEW +cwl +cwl +amc +amc +cgO +cdl +cgO +aaa +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +azq +aaa +aae +aae +aae +aaa +aaa +aJb +aKA +aKF +aNl +aOz +aQp +aRS +aRS +aRS +aRS +aYf +aYl +aYl +aYl +aYl +aYl +aRV +big +bjR +blf +bmH +boo +bqE +bsT +buW +bor +bor +bAJ +bCC +bqF +bsV +bor +bor +bor +bor +bsV +bqF +bor +bmH +bWh +bXi +bYm +caa +cbF +cdB +caa +cbF +ciN +caa +cbF +cnT +caa +cks +cta +cuv +cwm +cxE +cyJ +czS +czS +cBZ +cCZ +czS +cEX +cGd +cwl +cpP +cpP +cpP +cJI +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +azq +aae +aae +amd +aae +aae +aaa +aJb +aKB +aMa +aJb +aOC +aQq +aRT +aSR +aSR +aSR +aYg +aZS +bbF +bdg +aYl +bgd +aRV +biz +bjR +blg +bmI +bop +bqF +bor +buX +bwV +bvb +bvb +bor +bEL +buX +bvb +bwV +bor +bor +bsV +bqF +bor +bmI +bWi +bXi +bYI +caa +cbG +cdC +cfx +chb +cdC +cky +cmj +cnU +caa +crw +caa +cuw +caa +cxF +cyK +czT +cAT +cAT +cDa +cDU +cEY +cGe +cwl +cHL +cdO +cdO +cdO +cdO +cdO +cdO +cdO +chl +cMd +cdO +cyQ +cLC +cwt +cpP +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aae +aaa +aae +aae +aae +aae +aae +aaa +apn +axL +azr +amd +aBX +amd +aaa +aae +aae +aJb +aKC +aJb +aJb +aOz +aQr +aRU +aRU +aUC +aRU +aYh +aZT +bbG +bdh +aRU +aRU +bhs +biA +bjQ +bkW +bmJ +boq +bqG +boq +buY +bwW +byX +bAK +boq +bEM +bHd +byX +bwW +boq +boq +bQh +bqG +boq +bmJ +bVO +bXj +bYG +cab +cbH +cdD +cfy +chc +ciO +ckz +cbH +cdD +cpK +crx +ctb +cux +cwn +cxG +cyL +czU +cAU +cAU +cDb +cDV +cEY +cxF +cwl +cdO +cpP +cpP +cJJ +cyQ +cdO +ckC +cdO +cdO +cMe +cdO +cpP +cMV +chl +cpP +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +aae +aaa +aae +aae +aaa +aaa +aaa +aae +aae +aaa +aae +aae +aaa +amd +aDx +amd +aae +aae +aJb +aKD +aMb +aJb +aOz +aQp +aRV +aRV +aRV +aRV +aYi +aZU +bbH +bdi +bew +aYk +bht +biB +bjV +blh +bmI +bor +bqF +bor +buZ +bvd +bvd +bvd +bor +bEN +buZ +bvd +bvd +bor +bor +bsV +bqF +bor +bmI +bWe +bXw +bYJ +cac +cbI +cdE +cfz +chd +ciP +ckA +cbI +cnV +cpL +cry +ctc +cuy +cwo +cxF +cyK +czU +cAU +cCa +cDb +cDV +cEY +cGf +cwl +cHM +cIm +cpP +cdO +cDi +cDi +cKS +cDi +cKm +cDi +cdO +cpP +cpP +cNe +cpP +cpP +cpP +cpP +cpP +czg +czg +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +amd +aaa +aaa +aab +aaa +aJb +aKE +aKF +aKC +aOz +aQs +aRV +aSS +aUD +aWz +aYj +aZV +bbI +bdj +bex +bge +bhu +biC +bjW +bli +bmK +bos +bqH +bsU +bva +bos +bsU +bos +bCD +bEO +bHe +bos +bos +bos +bos +bHe +bqH +bTK +bUY +bWj +bXx +bYK +cad +cbJ +cdF +cfA +che +ciQ +cfA +cbJ +cdF +cpM +crz +ctd +cuz +cwp +cxH +cyM +czV +cAV +cCb +cDc +cDV +cEY +cxF +cwl +cHN +cIn +cIn +cdO +cDi +cdO +cdO +cKw +cdO +cDi +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cNT +czg +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aJb +aKC +aJb +aJb +aOD +aQt +aRV +aSS +aUD +aWA +aYk +aZW +bbJ +bdk +bey +bgf +aRV +bix +bjX +blj +bmI +bor +bqF +bsV +bvb +bvb +byY +bvb +bor +bEL +buX +bvb +bvb +bor +bor +bsV +bqF +bTH +bmI +bWk +bXl +bYL +caa +cbK +cdC +cfB +chf +cdC +ckB +cmk +cdC +caa +crA +cte +cuA +cte +cxI +cyN +czW +cAW +cCc +cAW +cDW +cEY +cxF +cwl +cHN +cpP +cFf +cdO +cDi +cdO +cKT +cLy +cLP +cDi +cyQ +cGk +cpP +cdO +cNo +cpP +cyQ +cpP +cpP +czg +czg +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aae +aae +akE +akE +amr +akE +akE +akE +akE +akE +amr +akE +akE +akE +akE +akE +amr +akE +akE +aJb +aKF +aMc +aJb +aOz +aQu +aRV +aSS +aUE +aWB +aYl +aYl +aYl +aYl +aYl +aYl +aRV +big +bjR +blf +bmL +bot +bqF +bsV +bvc +bwX +byZ +bwZ +bor +bEP +bHf +bvc +bwZ +bor +bor +bsV +bqF +bTH +bmL +bVM +bXi +bYm +caa +cbF +cdG +caa +cbF +ciR +caa +cbF +cnW +caa +crB +ctf +cuB +cwq +cxJ +cyO +czX +cAX +cCd +cDd +czX +cEZ +cGg +cHa +cHO +cIo +cyQ +cdO +cDi +cKw +cKU +cKT +cKw +cGk +cLH +cdO +cpP +cNf +cpP +cNy +cNG +cpP +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +akE +akE +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +alN +aKG +aMd +aJb +aOz +aQv +aRV +aRV +aRV +aRV +aYm +aZX +bbK +bdl +bez +bgg +aRV +big +bjR +bkT +bmH +bor +bqF +bsV +bvd +bvd +buZ +bvd +bor +bEN +buZ +bJl +bvd +bMt +bor +bsV +bqF +bTL +bmH +bVM +bXi +bYm +caa +cbL +cdH +caa +chg +cdH +caa +cml +cdA +caa +crC +ctg +cuC +cte +cwl +cyP +czY +cAY +cCe +cDe +cDX +cFa +cwl +cwl +cHP +cpP +cIZ +cdO +cDi +cdO +cdO +cdO +cdO +cGk +cws +cfG +cpP +cNg +cpP +cNz +cNH +cpP +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +akE +akE +aky +aky +aky +amZ +amZ +amZ +ars +aky +amZ +amZ +awq +amZ +amZ +aky +aBY +amZ +amZ +amZ +aky +aky +aky +aMe +aJb +aOz +aQw +aRW +aRW +aRW +aRW +aRW +aRW +aRW +aRW +aRW +aRW +aRW +big +bjR +blk +bmH +bou +bqF +bsV +bor +bor +bsV +bor +bCE +bEQ +bsV +bor +bKH +bmH +bOs +bQi +bRR +bTM +bmH +bVM +bXi +bYm +caa +cbM +cdI +caa +chh +cdI +caa +cmm +cnX +caa +crB +cth +cuD +cte +cwl +cwl +cwl +cwl +cwl +cwl +cwl +cwl +cwl +cdO +cHP +cIn +cJa +cdO +cDi +cGk +cKV +cpP +cpP +cDi +cpP +cpP +cpP +cNf +cpP +cpP +cpP +cpP +aae +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +aab +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +akE +aky +aky +aky +aky +alN +alN +aqk +atq +atq +atq +aFT +aFT +aFT +aFT +aFT +atq +atq +atq +bui +alN +alN +aky +aky +aky +aky +aOz +aQl +aRW +aST +aST +aWC +aYn +aZY +bbL +bdm +aST +aST +aRW +big +bjR +bkT +bmM +bov +bqI +bsW +bve +bor +bsV +bor +bor +bqE +bHg +bop +bor +bMu +bOs +bQi +bRR +bTN +bmH +bVM +bXi +bYm +caa +cbN +cdJ +caa +cbN +cdJ +caa +cmn +cdy +caa +crD +cte +cuA +cte +cxK +cdO +cdO +cdO +cCf +cdO +cDY +cFb +cGh +cGh +cHQ +cpP +cpP +cdO +cDi +cdO +cdO +coa +cob +czg +aaa +aaa +aae +afv +aae +aaa +aae +aae +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +akE +aky +aky +aky +aou +ana +apt +amc +ame +ame +ame +ame +amc +ame +amc +ame +ame +ame +ame +amc +byt +ana +cQN +aky +aky +aky +aOz +aQx +aRW +aSU +aUF +aST +aWC +aZZ +bbM +aST +beA +bgh +aRW +biD +bjR +bkT +bmM +bow +bqJ +bsX +bvf +bwY +bza +bor +bop +bER +bHh +bJm +bKI +bmH +bOt +bQi +bRR +bTO +bmH +bVM +bXi +bYm +caa +caa +caa +caa +caa +caa +caa +caa +caa +caa +crE +cti +cuE +cwr +cwr +cwr +czZ +cwr +cwr +cwr +cDZ +cFc +cpP +cpP +cpP +cyQ +cpP +cJK +cKm +cdO +cdO +cdO +cdO +czg +aae +aae +aae +afv +aae +aab +aaa +aae +aaa +aaa +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aae +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +akE +alg +aky +amk +ana +anT +ame +arf +ame +amc +ame +atp +amc +azt +amc +ame +ame +amc +aKK +ame +ame +aHA +ana +cQY +aky +alg +aOE +aQy +aRW +aSV +aUG +aST +aYo +baa +bbN +aST +beB +bgi +aRW +biE +bjY +bll +bmM +box +bqK +bsX +bvf +bwZ +bzb +bor +bop +bER +bHi +bJn +bJn +bmH +bOu +bQj +bRR +bTP +bmH +bVS +bXm +bYn +cae +cbO +cdK +cfC +chi +ciS +ckC +cmo +cnY +cpN +crF +ctj +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cyQ +cEa +cFd +cGi +cwr +cwr +cIp +cJb +cJL +cKn +cdO +cdO +cdO +cdO +czg +aaa +aaa +aae +afv +aae +aaa +aaa +aae +aaa +aaa +aae +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aaa +aae +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +akE +aky +aky +aml +anT +ame +ame +ame +amc +azt +amc +azu +amc +amc +amc +azu +amc +azt +amc +ame +ame +ame +aHA +cQZ +aky +aky +aOF +aQz +aRW +aST +aUH +aWD +aYp +bab +bbO +bdn +aUH +aST +aRW +big +bjR +bkT +bmM +boy +bqK +bsX +bvf +bwY +bza +bor +bop +bER +bHj +bJn +bKJ +bmH +bOv +bQk +bRS +bTQ +bmH +bVS +bXy +bYM +caf +cbP +cdL +cfD +cfD +ciT +ckD +cmp +ckD +cpO +crG +ctk +ccg +ccg +ccg +ccg +ccg +ccg +cCg +cDf +cEb +cFe +cGj +cCz +cCz +cIq +cBv +cJM +cKn +cdO +cdO +cLz +cdO +czg +aae +aae +aae +afv +afv +afv +afv +afv +afv +afv +afv +aae +aaa +aaa +aaa +aae +aae +aaa +aae +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +akE +aky +aky +amm +amZ +amc +ame +ame +ame +amc +aJd +cRp +aFU +aFU +aFU +cRp +cRr +amc +ame +ame +ame +amc +amZ +amm +aky +aky +aOG +aQz +aRW +aSW +aUI +aWE +aYq +bac +bbP +aUH +beC +bgj +aRW +biF +bjR +bkT +bmM +boz +bqK +bsX +bvf +bwY +bza +bor +bCF +bES +bHi +bJn +bKK +bmI +bOw +bQl +bRT +bTR +bmH +bVM +bXi +bYN +cag +cbQ +cdM +cfE +chj +cag +ckE +cmq +cnZ +cnZ +crH +cpP +cpP +cws +cpP +cyQ +cpP +cpP +cpP +cDg +cEc +cpP +cpP +cpP +cpP +cpP +cEc +cJN +cDi +cKx +cKW +cLA +cLQ +cpP +cMv +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +akE +aky +aky +amn +ana +ana +apu +ame +ame +amc +aDz +art +amc +aov +amc +art +aDz +amc +ame +ame +bNL +ana +cQO +cRa +aky +aky +aOH +aQz +aRW +aST +aUH +aWF +aYr +bad +bbQ +bdo +aUH +aST +aRW +big +bjR +bkT +bmM +boA +bqL +bsY +bvf +bwZ +bza +bor +bop +bER +bHi +bJn +bJn +bMv +bOx +bQm +bRU +bTS +bmH +bVM +bXi +bYO +cae +cbR +cdN +cfF +chk +cae +cdO +cmr +cdO +cpP +crI +cpP +cuF +cdO +cxL +cpP +cAa +cAZ +cCh +cDh +cEd +cdO +cGk +cHb +cpP +cHb +cJc +cJO +cDi +cpP +cpP +cyQ +cDi +cpP +cDi +cMJ +cMW +cNh +cNp +cNp +cNp +cNp +cNp +cNU +cNp +cNp +cNp +cON +cNp +cNp +cPA +cNp +cNp +cPR +cNp +cQa +cQb +cpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +akE +aky +aky +anc +amZ +amc +amc +amc +azs +azx +amc +auX +ava +axM +amc +aJj +aKJ +amc +amc +amc +amZ +amo +aky +aky +aNm +aOI +aQz +aRW +aSX +aUJ +aST +aYs +bae +bbR +aST +beD +bgk +aRW +big +bjR +bkT +bmM +box +bqK +bsZ +bvg +bxa +buW +bAL +bCG +bER +bHk +bJn +bKL +bmI +bOy +bQn +bRU +bTT +bmH +bWl +bXi +bYP +cae +cae +cae +cae +cae +cae +cdO +cmr +cdO +cpP +crJ +cpP +cdO +cwt +cxM +cpP +cqd +cBa +cwr +czf +ctj +cFf +cpP +cHc +cpP +cIr +cEc +cJO +cDi +cKy +cdO +cKw +cDi +cMf +cDi +cMK +cMX +cyQ +cpP +cpP +cpP +cpP +cpP +cpP +czg +czg +czg +czg +czg +cpP +cpP +cpP +cPM +cPS +cHb +cyQ +cQc +cpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +akE +alg +aky +amm +amZ +aov +aov +aov +aov +aDz +aov +auY +aJe +atr +aov +aKI +aFU +aFU +aFU +aFU +cyF +amm +aky +aky +aNn +aOJ +aQz +aRW +aSY +aUK +aST +aWG +baf +bbS +aST +beE +bgl +aRW +big +bjR +blm +bmM +bmM +bqM +bta +bmM +bmH +bzc +bmH +bmH +bET +bHl +bJo +bmH +bmH +bOw +bQo +bRV +bOw +bmH +bVM +bXz +bYQ +cah +cbS +cbS +cbS +cbS +cbS +cbS +cms +coa +cpP +cdO +cdO +cdO +cdO +cxN +cpP +cqd +cBb +cCi +cpP +cEe +cdO +cpP +cpP +cpP +cpP +cJd +cJO +cDi +cKz +cdO +cLB +cDi +cMg +cDi +cML +cMY +cpP +cNq +amc +amc +ame +amc +cBx +amc +amd +aGF +amd +amc +ame +amc +cpP +cPN +cPN +cPN +cpP +cQd +cpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +akE +aky +aky +and +amZ +amc +amc +awv +azs +aEP +amc +auZ +auW +axN +amc +aKH +aKJ +amc +amc +amc +amZ +aXr +aky +aky +aNo +aOH +aQz +aRW +aST +aST +aWG +aSZ +bag +aSZ +bbS +aST +aST +aRW +biy +bjU +bkU +bmM +boB +bqK +btb +bmM +bxb +bzd +bmH +bCH +bEU +bHi +bJp +bmH +bMw +bmH +bmH +bmH +bTU +bmH +bVU +bXo +bYw +bTE +cbT +cdO +cfG +chl +cdO +cdO +cdO +cob +cpQ +cpQ +cpQ +cpQ +cpQ +cpQ +cpQ +cAb +cBc +cCj +cDi +cDi +cDi +cDi +cHd +cpP +cIs +cJe +cJP +czf +cKA +cKX +cpP +cDi +cDi +cDi +cyQ +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +cpP +czg +czg +czg +cpP +cpP +cpP +cpP +cpP +cpP +cyQ +cpP +cQe +cpP +cpP +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akE +aky +aky +amp +ana +ana +apu +ame +ame +amc +aDz +art +amc +aov +amc +art +aDz +amc +ame +ame +bNL +ana +bhE +czD +aky +aky +aOH +aQz +aRW +aSZ +aSZ +aSZ +aSZ +bah +bbT +bdp +bdp +bgm +aRW +biG +bjR +bkT +bmM +boC +bqN +btc +bmM +boK +bze +bmH +bCI +bEV +bHm +bJq +bmH +bmH +bmH +bQp +boK +boK +bTE +bWg +bXi +bYR +bTE +cbU +cbU +cbU +cbU +cbU +ckF +cbU +cbU +cpQ +crK +ctl +cuG +cwu +cxO +cpQ +cAc +cBd +cCj +cDj +cEf +cyQ +cGl +cHe +cpP +cHb +cGk +cJQ +cCz +cKB +cKY +cdO +cfG +cpP +cMw +cdO +cdO +cdO +cdO +cdO +cdO +cdO +chl +cdO +cfG +cLD +cdO +cdO +cdO +cHb +cwt +cdO +cdO +cdO +cdO +cPM +cHN +cdO +cpP +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akE +aky +aky +amm +amZ +amc +ame +ame +ame +amc +aJi +cRq +aFU +aFU +aFU +cRq +cRs +amc +ame +ame +ame +amc +bhD +akE +aky +aky +aOK +aQA +aRX +aTa +aUL +aWH +aSZ +bai +aSZ +bdq +beF +bgn +aRX +biG +bjR +bln +bmM +boD +bqJ +btd +bmM +bxc +bze +bmH +bCJ +bEW +bHi +bJr +bmH +bMx +boK +boK +boK +boK +bTE +bVM +bXi +bYS +cai +cbU +cdP +cfH +chm +ciU +ckG +cmt +coc +cpQ +crL +ctm +cuH +cwv +cxP +cyR +cAd +cBe +cCk +cCk +cCk +cCk +cCk +cCk +cCj +cCj +cCj +cJR +cCj +cKC +cKZ +ckD +ckD +cMh +ckD +ckD +ckD +ckD +ckD +ckD +cNI +ckD +ckD +ckD +ckD +ckD +cOs +cOO +cOO +cOO +cOO +cOO +cOO +cOO +cOO +cOO +cQf +cdO +czg +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akE +aky +aky +ane +anT +ame +ame +ame +amc +azt +amc +aFS +amc +amc +amc +aFS +amc +azt +amc +ame +ame +ame +bhF +akE +aky +aky +aOD +aQB +aRX +aTb +aUM +aWI +aYt +baj +bbU +bdr +beG +beG +bhv +biH +bjZ +bkT +bmM +boC +bqO +bte +bmM +bxd +bze +bmH +bCK +bEV +bHn +bJs +bmH +bMy +bOz +bQq +boK +bTV +bTE +bVM +bXi +bYm +caj +cbU +cdQ +cfI +cfI +ciV +ckH +cmu +cod +cpQ +crM +ctn +cuI +cww +cxQ +cyS +cAe +cBf +cCl +cDk +cEg +cFg +cGm +cGm +cxU +cIt +cJf +cJh +cCj +cKC +cqd +cHb +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cOt +cLR +cLR +cLR +cLR +cLR +cLR +czg +czg +cpP +cQg +ckC +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +akE +alg +aky +anb +ana +anT +ame +ame +ame +amc +ass +ame +amc +azt +amc +ame +ame +amc +ame +ame +ame +cGL +bhD +akE +aky +alg +aOz +aQl +aRX +aTc +aUN +aWJ +aYu +bak +bbV +bds +beH +bgo +bhw +biI +bjS +bkX +bmM +boE +bqP +btf +bmM +boK +bze +bmH +bmH +bEX +bHo +bmH +bmH +boO +boO +bQr +boO +bTW +bTE +bVM +bXi +bYm +caj +cbV +cdR +cfJ +chn +ciW +ckI +cmv +coe +cpR +cpR +cpR +cuJ +cpR +cpQ +cpQ +cAf +cBg +cCl +cDl +cEh +cFh +cGn +cGn +cxU +cIu +cJg +cJS +cCj +cKD +cqd +cLC +cLR +cMi +cMx +cMr +cMZ +cMi +cMx +cMr +cMZ +cMi +cMx +cMr +cMZ +cOc +cOu +cOP +cPf +cPs +cPB +cPB +cPO +amc +amc +czg +cQg +cQl +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aae +afM +afM +afM +afM +afM +afM +afM +afM +afM +afM +afM +afM +aae +afM +afM +afM +aac +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aae +akE +aky +aky +aky +aow +amZ +aqe +amc +ame +ame +ame +ame +amc +ame +amc +ame +ame +ame +ame +amc +bNM +amZ +bhD +aky +aky +aky +aOz +aQl +aRX +aRX +aRX +aRX +aRX +aRX +aRX +aRX +aRX +aRX +aRX +biG +bjR +bkT +bmM +bmM +bqQ +bmM +bmM +boK +bzf +boN +boN +bEY +bHp +boN +bKM +boK +bOA +bQs +bRW +boK +bTE +bVM +bXi +bYm +caj +cbW +cdS +cfK +cho +ciW +ckJ +cmw +cof +cpS +crN +cto +cuK +cwx +cxR +cxU +cAg +cBe +cCl +cDm +cEi +cFi +cGo +cGo +cxU +cIv +cJh +cJT +cCj +cKC +cqd +coa +cLR +cMj +cMy +cMr +cMZ +cMj +cNr +cMr +cMZ +cMj +cMy +cMr +cMZ +cOc +cOv +cOQ +cPg +cPt +cPB +cPB +cPO +cBx +ame +czg +cQg +cNT +czg +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aac +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +akE +aky +alN +aky +ang +aky +aky +apv +apv +apv +apv +apv +apv +apv +apv +apv +apv +apv +apv +apv +aky +aky +cQR +aky +aky +aNp +aOL +aQC +aRY +aRY +aRY +aWK +aYv +aYv +aYv +aYv +aYv +aYv +aRQ +biJ +bka +blo +bmN +boF +bqR +btg +btg +btg +bzg +btg +btg +bEZ +boF +boF +bKN +boF +bOB +bQt +bRX +boF +bmN +bWm +bXA +bYm +caj +cbV +cdT +cfL +chp +ciW +ckK +cmx +cog +cpS +crO +ctp +cuL +cwx +cxS +cxU +cAg +cBe +cCl +cDn +cEj +cFj +cGo +cGo +cxU +cIw +cJi +cJU +cCj +cKC +cLa +cob +cLR +cMj +cMr +cMr +cMZ +cMj +cMr +cMr +cMZ +cMj +cMr +cMr +cMZ +cOd +cOw +cOR +cPh +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cQg +cNT +czg +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aae +aaj +aak +aak +aak +aak +aak +aak +aak +aak +aaj +aaj +aaj +aak +aak +aak +aak +aaj +aak +aak +aak +aak +aak +aak +aak +aak +aaj +aae +aac +aaa +aaa +aaa +aeZ +agf +ago +agu +ago +ago +ago +agu +ago +ago +ago +agu +ago +ago +ago +agu +ago +ago +ago +agu +ago +ago +ago +agu +ago +ago +akd +aks +aae +aae +alN +amq +anf +aky +aox +apw +apw +apw +apv +att +avb +avb +avb +azv +apv +apw +apw +apw +aFV +aky +cQT +aKL +aky +aNq +aOz +aQl +aRZ +aKF +aUO +aWL +aYw +aYw +aYw +aYw +aYw +aYw +aYw +biG +bjX +bkX +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +boK +bze +bMz +bMz +bMz +bMz +bMz +bTE +bVM +bXi +bYR +cak +cbU +cdU +cfM +chq +ciW +ckL +cmy +coh +cpS +crP +ctq +cuM +cwx +cxT +cxU +cAg +cBe +cCl +cDl +cEk +cFk +cGp +cHf +cxU +cIx +cJj +cJV +cCj +cKC +cqd +cLD +cLR +cMk +cMz +cMM +cMZ +cNi +cNs +cNA +cMZ +cNM +cNR +cNV +cMZ +cOe +cOx +cOR +cPi +cPu +cPC +cLR +cMr +cPT +cMr +cLR +cQg +cQm +czg +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aaq +aaB +aaI +aaI +aaI +aaI +aaI +aaI +aaI +abs +aaI +aaI +aaI +aaI +aaI +acn +acD +aaI +aaI +aaI +aaI +adz +adK +adP +aak +aaa +aac +aaa +aaa +aeZ +aft +afu +afN +agv +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +agG +ajr +ajz +aae +ake +akt +aae +aaa +aky +amr +ang +aky +aoy +apx +aql +aru +aky +atu +avc +awr +axO +azw +aky +apx +aql +aru +aoy +aky +cQR +alg +alN +aky +aOM +axS +aky +aky +aky +aky +aYx +bal +bbW +bdt +beI +bgp +bhx +biJ +bjQ +blp +bmP +boG +bqS +bth +bvh +bxe +bzh +bAM +bCL +bFa +bmO +boK +bKO +bMz +bOC +bQu +bRY +bMz +bUZ +bVM +bXl +bYT +cal +cbU +cbU +cbU +cbU +ciX +ckM +cmz +coi +cpS +crQ +ctr +cuN +cuN +cxU +cxU +cAh +cBh +cCl +cCl +cEl +cFl +cCl +cCl +cxU +cIy +cJk +cJW +cCj +cKE +cLb +cDi +cLR +cMl +cMA +cMN +cNa +cMl +cMA +cNB +cNa +cMl +cMA +cNW +cMZ +cOf +cOy +cOS +cPj +cPv +cPD +cPJ +cMr +cPU +cMr +cLR +cQg +cdO +czg +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aar +aaj +aak +aak +aak +aak +aak +aak +abl +abt +abl +aak +aak +aak +aak +aaj +aak +aak +aak +aak +aak +adA +aaj +aar +aak +aaa +aac +aaa +aeZ +aft +afu +afN +agb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +ajA +aae +akf +aku +aky +aky +aky +ams +anh +anU +aoz +aoz +aqm +aoz +aky +atv +aJc +aws +atw +aJh +aky +aBZ +aDy +aEO +aFW +aHB +cQV +aKM +aMf +apy +aON +aQD +aSa +aTd +aUP +aWM +aYy +bam +bbX +bdu +beJ +bgq +bhy +biG +bjR +blq +bmO +bmO +bqT +bti +bvi +bxf +bzi +bzj +bzk +bFb +bmO +bJt +bze +bMz +bOD +bQv +bRZ +bTX +bVa +bVO +bXj +bYU +cam +cbX +cdV +cfN +cam +ciY +ckN +cmA +coj +cpT +crR +cts +cuO +cwy +cxV +cyT +cAi +cBi +cCm +cDo +cEm +cFm +cGq +cHg +cHR +cIz +cJl +cJX +cCj +cKF +cLc +cLE +cLS +cMm +cMB +cMO +cNb +cNj +cMB +cMO +cNJ +cMm +cMB +cMO +cNZ +cOg +cOz +cOT +cPk +cPw +cPE +cPK +cPK +cPV +cMr +cLR +cQg +cdO +czg +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aar +aak +aae +aae +aaa +aaa +aaa +aaa +aaQ +abu +aaQ +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aae +adB +aak +aar +aak +aaa +aac +aeZ +aft +afu +afN +agb +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +afP +aae +akg +akv +akF +alh +aky +amt +ani +anl +anl +anl +aqn +anl +ast +atw +avd +awt +atw +atw +aAD +aCa +bug +bys +cvv +cGM +cQU +aFX +aMg +aHC +aOO +aQE +aSb +aTe +aUQ +aWN +aYz +ban +bbY +bdv +beK +bgr +bhz +biK +bkb +blr +bmQ +boH +bqU +btj +bvj +bxg +bzj +bAN +bCM +bFc +bmO +boK +bze +bMA +bOD +bQw +bOD +bTY +bVb +bVM +bXw +bYV +can +cbY +cdW +cfO +chr +ciZ +ckO +cmB +cok +cpU +cpU +ctt +cuP +cpU +cpU +cyU +cAj +cBj +cCn +cDp +cBj +cFn +cok +cpU +cpU +cuP +cJm +cJY +cKo +cKG +cLd +cLF +cLT +cMn +cMC +cMn +cMn +cNk +cNt +cNC +cMn +cMn +cNt +cMn +cOa +cOh +cOA +cOU +cPl +cPx +cPF +cMr +cMr +cMr +cPY +cLR +cQh +cOO +cQo +axL +axL +axL +axL +axL +cQq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aar +aak +aae +aaP +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aco +aco +aco +aco +aco +aco +adB +abl +adQ +abl +abl +abl +afa +afu +afN +agb +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +afP +aae +akg +akw +akG +ali +alO +amu +anj +anV +aoA +apy +aqo +arv +aky +atw +ave +awu +atw +atw +aky +aCb +aDA +aoD +anX +aHD +cQX +aKN +aMh +anl +aOP +aQF +aSc +aTf +aUR +aWO +aYA +bao +bbZ +bdw +bal +bgs +bhy +biL +bjI +bls +bmO +bmO +bqV +btk +bvi +bxh +bzk +bzj +bzi +bFd +bmO +boL +bze +bMz +bOE +bQx +bSa +bTZ +bVc +bWn +bXh +bYW +cao +cbZ +cdX +cfP +cao +cja +ckP +cmC +col +cpV +crS +ctu +cuQ +cwz +cxW +cyV +cAk +cBk +cCo +cDq +cEn +cFo +cFo +cHh +cFo +cEn +cFo +cJZ +cao +cKH +cLe +cLG +cLU +cMo +cMD +cMP +cNc +cMo +cMD +cND +cNK +cMo +cMD +cMP +cOb +cOi +cOB +cOV +cPm +cPy +cPG +cPL +cMr +cPW +cMr +cLR +cHN +cHb +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aar +aak +aaa +aaQ +aaQ +aaQ +aaQ +aaQ +aaP +abv +aaP +aaQ +aaQ +aaQ +aaQ +acp +aae +acM +ada +ada +ads +adC +abl +adR +aej +aew +abl +afb +aae +afO +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +afP +aaa +akg +akx +akH +alj +alP +amv +ank +anW +aoB +apz +aqp +arw +aky +atx +avf +aJf +atw +azy +aky +aCc +aDA +aEQ +amy +amy +cQW +aKO +amy +amy +aOQ +aQG +aky +aky +aky +aky +aYx +bap +bca +bdx +beL +bgt +bhA +biM +bjM +bkY +bmR +boI +bqW +btl +bvk +bxi +bzl +bAO +bCN +bFe +bmO +boK +bze +bMz +bOF +bQy +bSb +bMz +bVd +bVM +bXi +bYX +cap +cca +cca +cca +cca +cjb +ckQ +cmD +com +cjb +crT +crT +cuR +cuR +cuR +cyW +cAl +cBe +cxU +cDr +cDt +cDt +cDt +cDr +cDt +cDt +cDt +cDw +cDi +cKI +cLb +cDi +cLR +cMp +cME +cMQ +cNa +cNl +cME +cMQ +cNa +cNN +cME +cMQ +cMZ +cOj +cOC +cOW +cPn +cPz +cPD +cPJ +cMr +cMr +cMr +cLR +cHN +cdO +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aar +aak +aaa +aaQ +aaQ +aaT +aaY +abe +abm +abw +abm +abe +abN +abV +aaQ +acp +acE +acN +acp +aae +aco +aaa +abl +adS +aek +aex +abl +afc +afv +afP +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +afP +aaa +akh +aky +aky +aky +aky +amw +anl +anX +aoC +apA +aqp +arx +amr +aky +aky +aww +aky +aky +amr +aCd +aDA +aER +aFY +aHE +aJk +aKP +aMi +aFY +aOP +aQH +aky +aTg +akJ +aWP +aYw +aYw +aYw +bdy +aYw +aYw +aYw +biN +bjI +bkT +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +boK +bze +bMz +bMz +bMz +bMz +bMz +bTE +bWo +bXi +bYS +cai +cca +cdY +cfQ +chs +cjc +ckR +cmE +con +cpW +crT +ctv +cuS +cwA +cxX +cyX +cAl +cBe +cCp +cDs +cEo +cFp +cGr +cDr +amc +amc +amc +cDw +cKp +cKJ +cLf +cdO +cLR +cMq +cMF +cMR +cMZ +cNm +cNu +cNE +cMZ +cNO +cNS +cNX +cMZ +cOk +cOD +cOX +cPo +cPu +cPC +cLR +cMr +cPX +cMr +cLR +cHN +cdO +czg +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aag +aag +aas +aag +aag +aaP +aaQ +aaU +aaZ +abf +abf +abx +abf +abf +abO +abW +ace +acq +acF +acO +acp +acp +aco +aco +abl +adT +aej +aey +abl +afd +aae +afP +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +ajB +ajD +ajD +ajD +ajQ +alk +aky +amx +anl +anl +aoD +ani +aqq +ary +asu +aty +avg +awx +aJg +azz +aAE +aCe +aDB +aES +aFZ +aFZ +aJl +aKQ +aFZ +aNr +aOR +aQI +aky +ajD +aUS +atG +atG +atG +atG +atG +atG +atG +bhB +biO +bkc +bkX +bhg +boJ +bqX +btm +boN +boN +boN +boN +boN +boN +boN +boN +bKP +bMB +bMB +bMB +bSc +boM +bTE +bVM +bXi +bYm +caj +cca +cdZ +cfR +cht +cjd +ckS +cmF +coo +cpX +crT +ctw +cuT +cwB +cxY +cyX +cAm +cBe +cRb +cDt +cEp +cFq +cGs +cDw +cHS +cHS +cHS +cDw +cqd +cKK +cpP +cLH +cLR +cMr +cMr +cMj +cMZ +cMr +cMr +cMj +cMZ +cMr +cMr +cMj +cMZ +cOl +cOE +cOY +cPp +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cHN +cNT +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aag +aal +aat +aaC +aaJ +aaQ +aaQ +aaV +aba +abg +abn +aby +abn +abG +abP +abX +acf +acr +acG +acP +adb +adk +acp +acp +acp +adU +ael +abl +abl +afe +afw +afP +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajC +ajO +aki +akz +aki +all +alQ +amy +amy +amy +aoE +apB +aqr +aqr +asv +atz +aqr +awy +axQ +azA +asv +aqr +aDC +aET +aFZ +aHF +aJm +aKR +aFZ +anl +aOS +aQJ +aky +aky +aOM +aky +aky +aky +aky +aky +aky +bgu +bhg +biL +bjI +bkT +bhg +boK +bqY +btn +btn +btn +btn +btn +btn +btn +btn +btn +btn +btn +btn +btn +bSd +boK +bTE +bWp +bXm +bYm +caj +ccb +cea +cfR +chu +cje +ckT +cmG +cop +cpY +crT +ctx +cuU +cwC +cxZ +cyY +cAn +cBl +cCr +cDu +cEq +cFr +cGt +cDw +cHT +cIA +cIA +cDw +cqd +cHP +cpP +cLI +cLR +cMr +cMy +cMj +cMZ +cMr +cNr +cMj +cMZ +cMr +cMy +cMj +cMZ +cOm +cOE +cOZ +cPq +cLR +cPH +cpP +cPP +cHb +cPZ +cyQ +cHN +cNT +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aam +aau +aaD +aaK +aaQ +aaQ +aaU +aba +abh +aaP +aaQ +aaP +abH +abQ +abY +aaQ +acs +acG +acQ +adc +adl +adt +adD +acp +adV +aem +aez +aeN +aff +afx +afP +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajD +akj +ajD +akI +alm +alR +amz +anl +anl +aoF +apC +apC +apC +asw +atA +avh +awz +axR +azB +asw +apC +aDD +aEU +aFZ +aHG +aJn +aKS +aFZ +anl +aOP +aCa +aSd +aTh +aUT +aWQ +aky +baq +atw +bdz +aky +ajQ +bhg +biL +bjI +bkT +bhg +boK +bqY +btn +ame +ame +amc +ame +ame +ame +ame +ame +amc +ame +ame +btn +bze +boK +bTE +bVM +bXi +bYm +caj +ccc +ceb +cfS +chu +cjf +ckU +cmH +coq +cpZ +crT +cty +cuV +cwD +cya +cyZ +cAo +cBm +cCs +cDv +cEr +cFs +cGu +cDw +cHU +cIA +cJn +cDw +cqd +cHP +cpP +cLJ +cLR +cMr +cMG +cMS +cMZ +cMr +cMG +cMS +cMZ +cMr +cMG +cMS +cMZ +cOn +cOE +cPa +cPr +cLR +cPI +cyQ +cPQ +cdO +cLH +cpP +cQi +cQn +czg +aae +aae +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aai +aan +aav +aaE +aaL +aaQ +aaQ +aaW +abb +abi +abo +aaQ +abE +abI +abR +abZ +acg +act +acH +acR +add +adm +adu +adE +adL +adW +aen +aeA +aeO +afg +afx +afQ +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +ahP +aaa +aaa +aaa +aiK +aaa +aaa +ajD +ajD +ajD +ajD +akJ +aln +aky +aky +anm +anY +aoG +apD +aqs +aky +aky +aky +aky +awA +axS +aky +aky +aky +aky +aky +aGa +aHH +aJo +aKT +aFZ +anl +aOP +aCa +aSd +aTi +aUT +aWR +aky +baq +atw +bdz +aky +ajQ +bhg +biL +bjI +bkT +bhg +boL +bqZ +btn +ame +ame +bxj +bxl +bCO +bCO +bCO +bxl +bxj +ame +ame +btn +bSe +bUa +bTE +bVM +bXi +bYm +caj +ccb +cec +cfT +chv +cjg +ckV +cmI +cor +cqa +crT +ctz +cuW +cwE +cyb +cyX +cAl +cBe +cCt +cDs +cEs +cFt +cGv +cDw +cHV +cIB +cHV +cDw +cqd +cHP +cpP +cpP +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cLR +cOF +cLR +cLR +cLR +cpP +cpP +cpP +cKS +cpP +cpP +cQj +cdO +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aao +aaw +aaF +aaM +aaQ +aaS +aaU +aba +abh +aaP +aaQ +aaP +abJ +aba +aca +aaQ +acu +acG +acS +ade +adn +adv +adD +acp +adX +aeo +aeB +aeP +afh +afx +afP +aae +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +ahD +ahQ +aie +aaa +aiv +aiL +ajc +aaa +ajE +ajP +ajP +ajD +akK +aln +alS +aky +aky +aky +aky +aky +aky +aky +asx +atB +avi +awB +axT +atB +aAF +aCf +aDE +aEV +aGb +aGa +aGa +aKU +aFZ +aFY +aOP +aQK +aSd +aTj +aUU +aWS +aky +baq +atw +bdz +aky +ajQ +bhg +biP +bjI +bkT +bhg +boM +bqY +btn +amc +bxj +bxj +bAP +bCP +bFf +bHq +bJu +bxj +bxj +amc +btn +bze +boJ +bTE +bVM +bXi +bYR +cak +cca +ced +cfU +chw +cjh +ckW +cmJ +cos +cqb +crT +ctA +cuX +cwF +cyc +crT +cAp +cBn +cxU +cDr +cEt +cFt +cGw +cHi +cHW +cIC +cJo +cKa +cKq +cKL +cLg +cLg +cLg +cLg +cLg +cLg +cLg +cLg +cLg +cNF +cNF +cNP +cNF +cNF +cNF +cNF +cOG +cPb +cNp +cNp +cNp +cNp +cNp +cNp +cNp +cNp +cQk +cdO +czg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aag +aap +aax +aaG +aaN +aaR +aaQ +aaV +aba +abj +abp +abz +abp +abK +abS +acb +ach +acr +acG +acT +adf +ado +acp +acp +acp +adY +aep +abl +abl +aaj +afy +afP +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +ahv +ahE +ahR +ahE +ahv +aiw +aiM +aiw +ahv +ajD +ajQ +ajQ +akA +akL +alo +alT +alT +alT +alT +alT +alT +alT +arz +asy +atC +avj +awC +axU +atC +aAG +aAG +aAG +aAG +aGc +aHI +aky +aKV +aMj +aNr +aOT +aQL +aSe +aTk +aUV +aWT +aYB +atw +atw +bdz +aky +akL +bhg +biL +bjI +bkT +bhg +bhg +bqY +btn +ame +bxk +bzm +bAQ +bAU +bFg +bAU +bAU +bKQ +bJw +ame +btn +bze +bTE +bTE +bWq +bXi +bYY +bTE +cca +cee +cfV +chx +cji +cjb +cca +cot +cqc +crU +crU +crU +crU +crU +crU +cAq +cBo +crV +cDw +cEu +cFt +cGx +cDw +cHV +cID +cHV +cDw +cKr +cKM +cIn +cpP +cpP +cyQ +cpP +cpP +cIn +cNn +cpP +cpP +cpP +cyQ +cNQ +cpP +cpP +cyQ +cOH +cPc +cpP +czg +czg +czg +czg +czg +czg +czg +czg +cpP +cpP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aag +aag +aay +aag +aag +aaP +aaQ +aaU +abc +abf +abf +abx +abf +abL +abT +acc +aci +acv +acI +acU +acp +acp +aco +aco +abl +adZ +aeq +aeC +abl +afi +aaj +afR +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +ahv +ahE +ahS +ahE +ahv +aiw +aiN +aiw +ahv +ajF +ajR +akk +ajD +ajH +alp +ajT +ajT +ajT +ajT +aoH +apE +ajT +arA +asz +atD +atE +awD +axV +atE +atE +atE +atE +atE +axV +aHJ +aky +aKW +aMk +anV +aOU +aQM +aSf +aTl +aUW +aWU +aYB +atw +atw +bdA +aky +akK +bhg +big +bjI +blh +bmS +bhg +bqY +btn +ame +bxk +bzn +bAR +bAU +bFh +bAU +bAR +bKR +bJw +ame +btn +bSf +bTE +bVe +bWe +bXi +bYm +bVb +ccd +cef +cfW +chy +cjj +ckX +cmK +cou +cqd +crV +ctB +cuY +ctB +crV +cza +cAr +cBp +cCu +crV +cEv +cFu +cGy +cHj +cHX +cIE +cJp +cDw +cqd +cKN +cLh +cpP +cLV +cMs +cpP +cob +cdO +cdO +cdO +cIm +cpP +cKz +cdO +cKy +cpP +cOo +cdO +cLC +cpP +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aaz +aak +aaa +aaQ +aaQ +aaX +abd +abk +abq +abA +abq +abM +abU +acd +aaQ +acp +acJ +acV +acp +aae +aco +aaa +abl +aea +aer +aer +aeQ +afj +afz +afS +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +ahv +ahF +ahT +aif +ahv +aix +aiO +ajd +ahv +ajD +ajD +ajD +ajD +akM +alq +alU +alU +alU +alU +alU +alV +alU +arB +asA +atE +avk +awE +axW +azC +aAH +aCg +aDF +aEW +axV +aHK +aky +aKX +aMl +aNs +aOV +aQN +aSg +aTm +aUX +aWV +aYB +atw +atw +bdB +aky +bgv +bhg +big +bjI +blh +bmT +bhg +bra +btn +ame +bxl +bzo +bAS +bAS +bFi +bAS +bAS +bKS +bxl +ame +btn +bze +bTE +bVf +bWe +bXi +bYm +caq +cce +ceg +cfX +chz +cjk +ckY +cmK +cov +cqd +crV +ctB +ctB +ctB +cyd +czb +cAs +cBq +cCv +crV +cEw +cFv +cGz +cHk +cHY +cIF +cJq +cKb +cqd +cKN +cLi +cpP +cpP +cpP +cpP +coa +cfG +cdO +cdO +cMV +cpP +cNL +cKw +cdO +cpP +cpP +cOH +cpP +cpP +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aaz +aak +aaa +aaQ +aaQ +aaQ +aaQ +aaQ +aaP +abB +aaP +aaQ +aaQ +aaQ +aaQ +acp +aae +acW +adg +adp +adw +adF +abl +aeb +aeq +aeq +abl +aaj +aaj +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +ahv +ahv +ahU +ahv +ahv +ahv +aiP +ahv +ahv +ajG +ajS +ajQ +ajQ +akN +alr +alV +amA +ann +anZ +aoI +apF +alU +arC +asA +atE +avl +awF +axX +azD +aAI +aCh +aDG +aEX +axV +aHJ +aky +aKY +aMm +aCa +aOP +aQO +aSd +aTn +aOP +aWW +aky +bar +atw +bdB +aky +ajQ +bhg +big +bjI +blh +bmU +bhg +bqY +btn +ame +bxk +bzp +bAT +bCQ +bFj +bHr +bAT +bKT +bJw +ame +btn +bze +bTE +bVg +bWe +bXi +bYm +caq +cce +ceh +cfY +chA +cjl +ckZ +cmK +cow +cqe +crV +ctC +cuZ +ctB +cyd +czc +cAt +cBr +cCw +crV +cEx +cFw +cGA +cHl +cHZ +cIG +cJr +cDw +cqd +cKN +cLj +cpP +cLW +cMt +cpP +cMd +cNd +cIo +cNd +cpP +cpP +czg +czg +czg +cpP +cOp +cOI +cPd +cpP +aaa +aae +aae +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aaz +aak +aae +aaP +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aco +aco +aco +aco +aco +aco +adG +abl +aec +abl +abl +abl +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +ahv +ahG +ahO +aig +ahv +aiy +ahO +aig +ahv +ajH +ajT +ajT +ajT +akO +als +alU +amB +ano +amE +ano +apG +alU +aln +asA +atE +avm +awG +axY +azE +aAJ +aCi +aDH +aEY +axV +aHJ +aky +aKZ +aMn +aNt +aOW +anl +aSd +aTo +aUY +aWX +aky +bas +atw +bdB +aky +ajQ +bhg +bii +bjL +bkT +bhg +bhg +bqY +btn +ame +bxk +bzq +bAU +bCR +bFj +bHs +bAU +bKU +bJw +ame +btn +bze +bTE +bTE +bVM +bXi +bYm +car +cce +cei +cfZ +chB +cjm +cla +cmK +cox +cqf +crV +ctB +ctB +ctB +cyd +czd +cAu +cBs +cCx +crV +cDw +cFx +cDw +cDw +cDw +cDw +cDw +cDw +cqd +cKN +cpP +cpP +cKw +cdO +cpP +cMT +cdO +cdO +cGl +cpP +aaa +aaa +aaa +aae +cpP +cOq +cOJ +cOq +cpP +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aaz +aak +aae +aae +aaa +aaa +aaa +aaa +aaQ +abC +aaQ +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aae +adG +aak +aaz +aak +aaa +aac +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +aae +aae +aae +aae +aae +aht +ahv +ahU +aih +aht +ahv +aiP +aih +aht +ajI +ahv +ahv +ahv +ahv +ahv +alU +amC +anp +aoa +aoJ +apH +alU +aln +asA +atE +avn +awH +axZ +azF +aAK +aCj +aDI +aEX +axV +aHJ +aky +aky +aky +aNu +aOP +anl +aSd +aQK +aUZ +aWY +aky +bat +atw +bdB +aky +ajQ +bhg +big +bjI +blt +bhg +boK +bqY +btn +amc +bxj +bxj +bAV +bCS +bFk +bHs +bJv +bxj +bxj +amc +btn +bSg +bUb +bTE +bVU +bXo +bYw +cas +ccf +cej +cga +chC +cjn +clb +cmK +coy +cqd +crV +ctB +cva +cwG +cye +cze +cAv +cBt +cCy +crV +cEy +cFy +cGB +ccg +ccg +ccg +ccg +cKc +cKs +cKO +cLk +cpP +ahA +cMu +cpP +cLC +cdO +cdO +cNv +cpP +aaa +aaa +aae +aae +cpP +cOq +cOK +cOq +cpP +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aak +aaz +aaj +aak +aak +aak +aak +aak +aak +abl +abt +abl +aak +aak +aak +aak +aaj +aak +aak +aak +aak +aak +adH +aaj +aaz +aak +aaa +aac +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +ahw +ahH +ahV +aii +aip +aiz +ahV +aje +ahM +ajJ +ajU +ajU +ajU +ajU +alt +alU +amD +anq +aob +aoK +apI +alU +arD +asA +atE +atE +awI +aya +azG +aAL +aCk +aDJ +aEZ +aGd +aHL +aJp +aLa +aky +axS +aOX +aQP +aSh +aTp +aVa +aWZ +aSh +aky +aky +aky +aky +ajQ +bhg +bih +bjI +blu +bhg +boK +bqY +btn +ame +ame +bxj +bxj +bCR +bFj +bHt +bxj +bxj +ame +ame +btn +bze +boK +bhC +biQ +bXB +blv +bhC +ccf +cek +ccf +ccf +ccf +ccf +cmK +coz +cqd +crV +crV +crV +crV +crV +crV +cAw +cBu +crV +crV +cEz +cFz +cDr +chl +cfG +cdO +cdO +cKd +cdO +cEd +cLl +cyQ +cLX +cdO +cMH +cMU +cdO +cdO +cNw +cpP +aaa +aae +aae +aaa +aaa +cOr +cOL +cPe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aac +aaa +aak +aaA +aaH +aaO +aaO +aaO +aaO +aaO +aaO +abr +abD +aaO +aaO +aaO +aaO +aaO +acw +aaO +aaO +aaO +aaO +aaO +adI +adM +aed +aak +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +ahw +ahI +ahI +ahI +ahI +ahI +ahI +ahI +ahI +ahI +ahI +ahI +akB +ahM +alu +alU +amE +anr +aoc +aoL +amE +alV +aln +asA +atF +atE +atE +atE +atE +atE +atE +atE +atE +atE +aHJ +aJq +aLb +ajQ +aNv +avq +aQP +aSi +aTq +aVb +aXa +aYC +bau +bcb +ajD +ajP +ajQ +bhg +big +bjI +bkV +bmV +boN +brb +btn +ame +ame +amc +bxk +bCT +bFl +bHu +bJw +amc +ame +ame +btn +bze +boK +brd +bWr +bXC +bYZ +cat +ccg +cel +cel +cel +cel +clc +ccg +coA +cqg +cel +cel +cel +ccg +clc +ccg +cAx +cBv +cCz +cDx +cEA +cFA +cDr +cdO +cdO +cdO +cdO +cGk +cwt +cEd +cLl +cpP +cLY +ckC +cMH +cdO +cIn +cdO +cNx +cpP +aae +aae +aaa +aaa +aaa +aaa +cOM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aae +aaj +aak +aak +aak +aak +aak +aak +aak +aak +aaj +aaj +aaj +aak +aak +aak +aak +aaj +aak +aak +aak +aak +aak +aak +aak +aak +aaj +aae +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +ahv +ahw +ahW +aij +ahV +ahV +aiQ +ahV +aij +ahW +ahw +aji +ahv +akP +alv +alU +amE +ans +amE +aoM +amE +alU +arE +asB +atG +avo +awJ +awJ +awJ +aAM +awJ +awJ +awJ +aGe +aHM +aJr +aLc +aAM +aNw +aOY +aQP +aSj +aTr +aVc +aXb +aYD +aQP +bcc +aAG +beM +ajQ +bhg +big +bjI +bkT +bhg +boO +brc +btn +btn +amc +bzr +bAW +bCU +bFj +bHv +bJx +bKV +amc +btn +btn +bze +boK +bhC +bWs +bXD +bZa +bhC +bBc +cem +cem +cem +cem +cld +cmL +coB +cqh +cqh +cqh +cqh +cwH +crF +czf +cAy +cBw +cAy +cDy +cEB +cFB +cDy +cHm +cIa +cIH +cJs +cKe +cwr +cuE +cLm +cpP +czg +czg +cpP +cpP +cpP +cpP +cpP +cpP +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +aae +aae +aae +aae +aae +aae +aae +aae +aht +aht +ahw +ahO +ahw +aiq +ahM +ahM +ais +ahw +ahO +ahw +ahw +ahv +akQ +alw +alU +alU +ant +aod +aoN +alU +alU +arF +arM +atH +avp +awK +awK +awK +awK +awK +aDK +aFa +aFa +aHN +aJs +aLd +aMo +aNx +aOZ +aQP +aSk +aTs +aVd +aXc +aYE +aQP +ajD +ajD +beN +ajD +bhg +big +bjI +bkT +bhg +boK +boK +bto +btn +ame +bzs +bxl +bxj +bFm +bxj +bxl +bKW +ame +btn +boK +bSh +bTV +bhC +bWt +bXD +bZb +cau +cch +amc +amc +ame +ame +bzt +amc +bKW +ame +ame +amc +amc +cwI +cyf +czg +ame +amc +amc +cDw +cEC +cFC +cDw +cDw +cDw +cDw +cDw +cDw +czg +cpP +cLn +cpP +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahw +ahW +ahw +ahw +ahw +ahw +ahw +ahw +ahW +ahw +aaa +aht +akR +alw +aiu +amF +anu +aoe +aoO +apJ +aqt +ahM +asC +atI +avq +akL +ayb +azH +aAN +aCl +aDL +aFb +aGf +ajQ +aJt +aLe +ajQ +ajQ +akL +aQP +aSl +aTt +aVe +aXd +aYF +aQP +bcd +alS +beO +ajG +bhg +big +bjI +bkT +bhg +boM +boK +btp +btn +amc +bzt +bAX +bCV +bFn +bHw +bAX +bKW +amc +btn +bQz +bze +bUc +bhC +bWs +bXD +bZb +cav +cch +amc +amc +amc +ame +bzt +cmM +bKW +ame +amc +amc +amc +cwI +cyf +czg +ame +ame +ame +cDr +cED +cFD +cGC +cHn +cIb +cII +cJt +cDr +amc +cpP +cLn +cpP +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aab +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aae +cQr +cQs +cQr +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahk +aho +ahX +aho +ahl +ahl +ahl +ahl +aho +ahZ +ajV +akl +aht +akS +alx +alW +amG +anv +aof +aoP +apK +aqu +arG +ahM +atI +avq +ajQ +akK +azI +ahv +ahv +ahv +ahv +ahv +ahv +atI +aLf +ahv +azH +alS +aQP +aSm +aTu +aVf +aXe +aYG +aQP +bcd +bdC +beP +ajS +bhg +biy +bkd +bkU +bhg +boK +boK +btp +bhC +bxm +bzu +bAY +bCW +bFo +bHx +bJy +bKX +bxm +bhC +bQA +bze +boK +bhC +bWu +bXE +bZc +cav +cch +ame +amc +chD +chD +cle +chD +coC +chD +chD +amc +ame +cwI +cyf +czg +amc +ame +amd +cDr +cEE +cFE +cGD +cGD +cIc +cGC +cJu +cDr +amc +ccC +cLo +ccC +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aae +aae +cQt +cQu +cQC +cQu +cQt +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahk +aho +aho +ahx +ahJ +ahq +aik +ahq +ahq +ahq +ahq +ajs +ahq +ajW +akm +ahw +akT +aly +alX +amH +anw +aog +aoQ +ahv +aqv +arH +ahM +atI +avr +ahv +ahv +ahv +ahv +aCm +aDM +aFc +aGg +aHO +aJu +aLg +ahv +ahv +ahv +aQP +aQP +aTv +aTv +aTv +aQP +aQP +aht +ahv +beQ +ahv +bhC +biQ +bke +blv +bhC +bhC +brd +bhC +bhC +bxn +bzv +bAX +bAX +bFp +bAX +bAX +bKY +bxn +bhC +bhC +bSi +bhC +bhC +bWs +bXF +bZd +caw +cch +ame +ame +chD +cjo +clf +cmN +coD +cqi +chD +ame +ame +cwI +cyf +czg +amc +amc +amd +cDr +cEF +cFF +cGE +cHo +cId +cIJ +cJv +cDt +amc +cns +cLp +cns +aae +aae +aab +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +cQt +cQt +cQA +cQD +cQF +cQt +cQt +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahl +ahp +ahp +ahy +ahq +ahY +ahq +ahY +ahq +ahY +ahq +ahY +ahq +ajW +akn +ahw +akT +aly +alX +amI +anx +aog +aoR +ahv +aqw +arI +asD +atJ +avs +awL +ayc +azJ +aAO +aCn +aDN +aFd +aGh +aHP +aJv +aLh +aMp +aNy +aPa +aQQ +aSn +aPa +aPa +aPa +aPa +bav +aPa +aPa +beR +bgw +cQP +biR +bkf +blw +bmW +boP +boP +boP +boP +bxo +bzw +bAZ +bCX +bFq +bHy +bJz +bKZ +bxo +boP +boP +bSj +boP +bVh +bWv +bXG +bZe +cax +cci +cen +cen +chE +cjp +clg +cmO +coE +cqj +chD +amc +amc +cwI +cyg +czg +amc +amd +amd +cDr +cEG +cFG +cGF +cDr +cIe +cDt +cDt +cDr +ava +cns +cLq +cns +amd +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +cQr +cQu +cQw +cQs +cQs +cQs +cQH +cQu +cQr +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahl +ahq +ahq +ahz +ahq +ahY +ahq +ahY +aiA +ahY +ahq +ahY +ahq +ajW +akn +ahw +akT +alz +alX +amJ +any +aog +aoS +ahv +aqx +arJ +ajU +atK +avt +ajU +ayd +ajU +aAP +aCo +aDO +aFe +aGi +aHQ +aJw +aLi +aMq +aNz +ajU +ajU +ayd +ajU +ajU +ajU +ajU +ajU +aJw +ajU +beS +bgx +cQS +biS +bkg +blx +bmX +boQ +boQ +boQ +boQ +boQ +boQ +bBa +bCY +bFr +bHz +bJA +bLa +boQ +boQ +boQ +bSk +boQ +bVi +bCY +bXH +bZf +cay +ccj +ceo +ceo +chF +cjq +clh +cmP +coF +cqk +chD +amc +amc +cmL +cyh +cpP +amc +amd +aDx +cDr +cEH +cFH +cGG +cDr +cIf +cIK +cJw +cKf +amd +cKP +cLr +cKP +atr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ame +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +cQs +cQv +cQx +cQs +cQE +cQs +cQI +cQK +cQs +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahl +ahr +ahr +ahy +ahq +ahY +ahq +ahY +ahq +ahY +ahq +ahY +ahq +ajW +akn +ahw +akT +aly +alX +amK +anz +aog +aoT +ahv +aqy +arK +asE +atL +avu +awM +awM +azK +aAQ +aCp +aDP +aFf +awM +aHR +aJx +aLj +aMr +aNA +awM +awM +aSo +awM +awM +awM +awM +baw +bce +bdD +beT +bgy +cQQ +biT +bkh +bly +bmY +boR +boR +boR +bvl +bvl +bvl +bBb +bCZ +bFs +bHA +bJB +bLb +bMC +bMC +bQB +bSl +bUd +bVj +bWw +bXI +bZg +caz +cck +cep +cep +chG +cjr +cli +cmQ +coG +cql +chD +amc +amc +cwJ +cpb +cns +amc +amd +amd +cDw +cDw +cDw +cDw +cDr +cDr +cDr +cDr +cDr +auW +cns +cLs +cns +amd +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amc +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +cQr +cQu +cQy +cQs +cQs +cQs +cQJ +cQu +cQr +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahm +aho +aho +ahx +ahK +ahq +ail +air +aiB +aiR +ajf +ajt +ahq +ajW +ako +ahw +akT +aly +alX +amL +anA +aog +aoU +ahv +aqz +alw +ahM +atI +avv +asH +asH +asH +aAR +aCq +aDQ +aFg +asH +asH +aGn +aLk +aCv +ayi +ahv +ahv +ahv +ahv +ahv +ahv +ahv +ahv +ahv +ahv +beU +ahv +bhC +biU +bke +blz +bhC +bhC +bre +btq +btq +btq +bzx +bBc +bDa +bFt +bHB +bJC +bJC +bJC +bJC +bJC +bSm +bJC +bJC +bWx +bXJ +bZh +caA +cch +ame +ame +chD +cjs +clj +cmR +coH +cqm +chD +ame +ame +cwJ +cyi +cns +amc +amc +amd +cns +csn +cFI +cns +amd +amd +amc +amc +amc +amc +ccC +cRd +ccC +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +cQt +cQt +cQB +cQC +cQG +cQt +cQt +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahm +aho +ahZ +aho +ahl +ahl +ahl +ahl +aho +ahZ +ajX +akp +aht +akU +alA +alY +amM +anB +anB +aoV +apL +aqA +arL +aiC +atI +arP +asH +aye +azL +aAS +aCr +aDR +aFh +aGj +asH +aJy +aLl +aMs +aNB +aPb +aPb +aPb +aPb +aPb +aXf +aPb +aPb +aPb +aPb +aPb +aRe +bhG +biV +bki +blA +bhG +bhC +brf +btr +btr +btr +btr +bBc +bDb +bFu +bHC +bJC +bLc +bMD +bOG +bQC +bSn +bUe +bJC +bWy +bXK +bZi +caB +cch +ame +amc +chD +chD +cle +chD +coC +chD +chD +amc +ame +cwJ +cyj +cns +amc +cBx +amd +ccC +chZ +cpe +ccC +ccC +ccC +ccC +ccC +ccC +ccC +ccC +cLo +ccC +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aae +aae +cQt +cQu +cQD +cQu +cQt +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahw +ahW +ahw +ahw +ahw +ahw +ahw +ahw +ahW +ahw +aaa +aht +akR +alw +aiu +amN +anC +anC +aoW +ahM +aqB +ahM +asF +atI +arP +asH +ayf +ayf +aAT +aCs +aDS +aFi +aGk +aHS +aJz +aLm +aMt +ayi +aPc +aCL +aCK +azX +azX +azX +azZ +azZ +azX +azX +azX +aRh +bhG +biW +bkj +blB +bmZ +bmZ +brg +bts +bts +bmZ +bzy +bmZ +bDc +bFv +bHD +bJD +bLd +bME +bMF +bQD +bSo +bUf +bJC +bWz +bXD +bZb +caB +cch +amc +amc +amc +ame +bzt +amc +bKW +ame +amc +amc +amc +cwJ +cyj +cns +ame +ame +ame +ccC +chZ +cFJ +cGH +cGH +cIg +cIL +cJx +cKg +cKt +cKQ +cLu +ccC +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aab +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aaa +aaa +aae +aae +aae +cQr +cQs +cQr +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +aae +aae +aae +aae +aae +aae +aae +aae +aht +aht +ahw +ahO +ahw +ais +ahM +ahM +ajg +ahw +ahO +ahw +ahw +ahv +akV +alw +alZ +amO +anD +aoh +aoX +alZ +aqC +arM +arM +atM +arP +asH +ayg +ayg +aAU +aCt +aDT +aFj +aGl +aHT +aJA +aLn +aMu +asH +aPd +asH +asH +ame +amc +ame +ame +ame +amc +ame +azX +bgz +bhG +biW +bkj +blC +bmZ +boS +brh +btt +bvm +bxp +bzz +bBd +bDd +bFw +bHE +bJD +bLe +bMF +bMF +bQE +bSp +bUg +bJC +bWA +bXD +bZb +caC +cch +amc +amc +ame +ame +bzt +amc +bKW +ame +ame +amc +amc +cwJ +cyj +cns +ame +amc +amc +ccC +cEI +cFK +ccC +cns +cns +cns +cns +ccC +cKu +ccC +cgp +ccC +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aae +aae +ahv +ahw +ahW +aij +ait +ait +ait +ait +aij +ahW +ahw +akq +ahv +akP +alB +alZ +amP +anE +aoi +aoY +apM +aqD +arN +asG +asG +avw +asH +ayh +ayh +aAV +aCu +aDU +aFk +aGm +atR +aJB +aLo +aMv +asH +aPe +aQR +asH +ame +atZ +atZ +atZ +atZ +atZ +amc +azX +aRh +bhG +biW +bkj +blD +bmZ +boT +bri +btu +bvn +bxq +bzA +bBe +bDe +bFx +bHF +bJE +bLf +bMG +bOH +bQF +bSq +bUh +bJC +bWB +bXD +bZa +bhC +bBc +ceq +ceq +ceq +ceq +clk +cmS +coI +cqn +cqn +cqn +cqn +cwK +cpc +ccC +cns +cns +cns +ccC +ctU +cFL +ccC +amc +ame +ame +amc +ccC +chZ +cvy +cxg +cvy +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +afp +afV +afB +afB +afB +afB +afB +afB +afB +afV +afp +agZ +aaa +aaa +aaa +aaa +ahw +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +akC +ahM +alC +alZ +amQ +anF +aoj +aoZ +apN +aqE +arO +asH +asH +asH +asH +ayi +ayi +ayi +aCv +aDQ +aFg +aGn +asH +asH +aLp +asH +asH +aMz +aQS +aSp +aTw +aVg +aXg +aYH +aYH +atZ +ame +beV +bgA +bhH +biX +bkk +blE +bna +boU +brj +btv +bvo +bxr +bzB +bBf +bDf +bFy +bHG +bJF +bLg +bMH +bOI +bQG +bSr +bUi +bVk +bWC +bXL +bZj +caD +ccl +cer +cer +cer +cer +cer +cmT +coJ +cer +cer +cer +cer +ccl +cyk +ccl +ccl +ccl +ccl +ccl +ccl +cFM +ccC +cns +cns +cns +cns +ccC +chZ +ccC +ccC +ccC +aae +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +afk +aeD +aeF +aeF +aeF +afU +agH +agV +aeF +aeF +ahb +afl +afk +ahh +agZ +aaa +aaa +ahw +ahM +aia +aim +ahM +ahM +aiS +ahM +ahM +ahM +ahM +ahM +ahM +ahM +alD +alZ +amR +anG +aok +apa +alZ +aqF +arP +asH +atN +avx +awN +ayj +azM +aAW +aCw +aDV +aFl +aGo +aHU +aJC +aLq +aMw +aNC +aMz +aQT +aSq +amc +atR +aXh +aYI +bax +atZ +ame +arZ +bgB +bhI +biY +bkj +blF +bmZ +boV +brk +brk +brk +bxs +bzC +bBd +bDg +bFz +bHH +bJC +bJC +bJC +bJC +bJC +bJD +bJC +bJC +bWD +bXB +blv +caE +caE +caE +caE +caE +caE +caE +caE +caE +cqo +cqo +cqo +cqo +cqo +cyl +cqo +cqo +cqu +cqu +cqu +cqu +cFN +cgp +cHp +cIh +csr +csq +ccC +cKv +ccC +aaa +aaa +aae +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +afk +aeD +aeF +aeF +aeF +aeF +afU +agI +afU +aeF +aeF +ahc +aeG +aet +ahi +afA +agZ +aaa +ahv +ahv +ahv +ahv +aiu +aiu +ahv +ajh +ajh +ajh +ajh +ajh +ahv +ahv +alE +alZ +alZ +alZ +alZ +alZ +alZ +aqG +arP +asH +atO +avy +avy +ayk +azN +azN +aCx +aDW +aFm +azN +azN +azN +aLr +aMx +aND +aPf +aQU +ayu +aTx +aVh +aXi +aYH +aYH +atZ +ame +arZ +aqJ +bhG +biW +bkj +blB +bmZ +boW +brk +btw +bvp +bxt +bzD +bBd +bDh +bFA +bHI +bJG +bLh +bMI +bOJ +bQH +bSs +bJG +bVl +bWE +bXM +bZk +caF +ccm +ces +cgb +chH +chH +chH +cmU +caE +cqp +crW +crX +cvb +crX +cym +czh +cqo +cBy +cCA +cDz +cqu +cFN +ccC +chZ +chZ +chZ +chZ +ccC +clv +ccC +aab +aaa +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +aeR +aeJ +aeG +afT +aeF +aeF +aeF +aeF +agJ +aeF +aeF +aeF +ahc +aeG +afA +afW +aeR +aeR +agZ +ahw +ahN +ahw +ain +ahM +aiC +ahv +aji +aju +ajK +ahw +aji +aht +akW +alF +ama +ama +ama +ama +ama +ama +aqH +arP +asH +atP +avz +avy +ayl +azO +aAX +aCy +aDX +aFn +aGp +aHV +aDY +aLs +aMy +aNE +aPg +aQV +aSr +ame +atZ +atZ +atZ +atZ +atZ +amc +arZ +aqJ +bhG +biW +bkl +blG +bmZ +bmZ +bmZ +bmZ +bmZ +bmZ +bmZ +bBd +bDi +bFB +bHJ +bJG +bLi +bMJ +bOK +bML +bSt +bJG +bVm +bWF +bXN +bZl +caE +caE +caE +caE +chI +cjt +cll +cmV +caE +cqq +crX +crX +cvc +cwL +cyn +czi +cAz +cBz +czn +cCK +cqu +cFO +ctU +cHq +chZ +cIM +chZ +cKh +chZ +ccC +ccC +ccC +ccC +ccC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeG +afl +aeI +aeF +aeF +aeF +aeF +aeF +aeF +agJ +aeF +aeF +aeF +agg +aeJ +aeF +ahn +aeF +afC +ahB +ahO +ahB +ain +ahM +ahM +aht +ahw +ahw +ahO +ahw +ahw +aht +akX +alG +amb +amS +anH +aol +apb +apO +aqI +arQ +asH +atQ +avA +awO +aym +azP +avy +aCz +ayi +aDY +aDY +aDY +aJD +aLt +aMz +aNF +aDS +aQW +aSp +aTw +aVg +aXj +aYJ +aYJ +atZ +ame +arZ +aqJ +bhG +biZ +bkj +blH +bhG +boX +brl +btx +bvq +bxu +bzE +bBg +bDb +bFu +bHC +bJG +bLj +bMK +bOL +bML +bSu +bJG +bVn +bWF +bXN +bZm +caE +ccn +cet +cgc +cew +cew +clm +cmV +caE +cqr +crY +crY +cvd +cwM +cyo +czj +cAA +cBA +cCB +cDA +cqu +cFN +ctU +chZ +chZ +cIN +chZ +cKi +chZ +cgp +cLv +clv +cLZ +cns +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +aeD +aeF +aeF +aet +afU +afU +afU +aeF +aeF +agK +aeF +aeF +aeF +agg +afk +aeD +aeF +aeF +aeF +aet +ahw +ahw +ahw +ain +ahM +aiD +aht +aaa +ahw +ajK +ahw +aaa +aht +akY +alc +alc +alc +alc +alc +apc +apP +aqJ +arR +asH +atR +atR +atR +ayn +azQ +avy +aCA +aDY +aFo +aFo +aFo +aDY +aLu +aMz +aNF +aDS +aQX +aSq +amc +atR +aXk +aYK +bay +atZ +ame +arZ +aqJ +bhG +bja +bkm +blI +bnb +boY +brm +bty +bvr +bxv +bzF +bBg +bDc +bFv +bHD +bJG +bLk +bML +bOM +bJG +bJG +bJG +bJG +bWG +bXN +bZn +caG +cco +ceu +cew +cew +cew +cln +cmV +caE +cqs +crW +crX +cve +crX +cyp +czk +cqo +cBB +cCC +cDB +cEJ +cFP +cGI +chZ +chZ +chZ +ccE +cGI +chZ +caQ +chZ +cqN +cMa +cns +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeE +aeF +aeF +afA +afV +afV +afV +afV +afB +agL +afB +afV +afp +afk +aeD +aeF +aeF +aeF +aeF +aet +aae +ahw +aib +ain +ahM +aiE +ahw +ajj +ajl +ajL +ajl +akr +ahw +akZ +alc +amc +amc +amd +alc +apd +apQ +aqK +arS +asI +atS +avB +awP +ayo +azR +aAY +aCB +aDZ +aCD +aGq +aCD +aJE +aLv +aMA +aNG +aPh +aQY +ayu +aTx +aVh +aXl +aYJ +aYJ +atZ +ame +arZ +aqJ +bhG +bjb +bkn +blJ +bhI +boZ +brn +btz +btz +btz +btz +bBh +bDd +bFw +bHE +bJG +bLl +bMM +bON +bQI +bSv +bMQ +bJG +bWH +bXN +bZo +caH +ccp +cev +cew +cew +cju +caE +cmW +caE +cqo +cqo +cqo +cqo +cqo +cqo +cqo +cqo +cBC +cCD +cDC +cqu +chZ +cGJ +chZ +chZ +chZ +chZ +cGJ +chZ +ccC +cLw +cLK +cMb +cns +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +aeF +aeF +afB +aeF +aeF +aeF +aeF +aeF +aeF +agJ +aeF +afl +aeJ +aeF +aeF +aeF +aeF +aeF +aet +aaa +ahw +aic +ain +ahM +aiE +ahw +ajk +ajv +ajM +ajY +ajk +ahw +akZ +alH +amd +amT +ame +alc +alM +apR +aqL +arT +asJ +atT +avC +awQ +ayp +azS +aAZ +aCC +avy +avy +aGr +aHW +avy +aLw +avy +aNF +aDS +aDS +aPl +ame +atZ +atZ +atZ +atZ +atZ +amc +arZ +bgC +bhG +biW +bkj +blK +bhG +bpa +bro +btA +bvs +bxw +bzG +bBh +bDd +bFz +bHI +bJG +bLm +bMN +bOO +bQJ +bSw +bMQ +bJG +bWI +bXN +bZl +caI +ccq +cew +cgd +ccz +cjv +caE +cmX +caE +cqt +cqt +cqt +cqu +cwN +cyq +czl +cAB +cBD +cCE +cDD +cEK +cqu +cqu +ccC +ccC +cIO +cIO +cIO +cIO +cIO +cIO +cIO +ccC +ccC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +aeF +afm +afB +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +afC +aeF +aeF +aeF +aeF +ahs +aet +aaa +ahw +aic +ain +ahM +aiE +ahw +ajk +ajv +ajM +ajY +ajk +ahw +ala +alc +ame +amd +amc +alc +ape +apS +aqM +arU +asK +atU +avD +awR +ayq +azT +aBa +aCD +aEa +aCB +aGs +aCB +aCB +aLx +avy +aNF +aPi +aQZ +ayu +aTx +aVi +aXm +aYL +aYN +atZ +ame +arZ +aqJ +bhG +biW +bkj +blB +bhG +bpb +brp +btz +bvt +bxx +bzH +bBh +bDj +bFx +bHK +bJH +bLn +bMO +bOP +bQK +bSx +bUj +bJG +bWG +bXN +bZl +caH +ccr +cew +cge +cew +cjw +caE +cmY +caE +cqt +crZ +ctD +cvf +cwO +cyr +czm +czm +cBD +cCF +cDE +cEL +cFQ +cFW +aaa +aaa +cIP +cJy +cJy +cJy +cJy +cJy +cLL +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeG +aeF +afn +afB +aeF +aeF +agg +afV +afV +afV +afV +aeI +aeF +aet +aeF +aeF +aeF +aeF +ahd +aet +aae +ahw +aib +ain +ahM +aiE +ahw +ajl +ajv +ajM +ajY +ajl +ahw +akZ +alc +alc +alc +alc +alc +akZ +apR +aqN +arV +asH +atV +avE +awS +ayr +azT +aBb +avy +avy +aFp +aFp +aFp +aJF +aLy +avy +aNF +avy +aRa +aPl +amc +atR +aXn +aYM +baz +atZ +ame +arZ +aqJ +bhG +biW +bkj +blB +bhG +bpc +brq +btB +bvu +bxy +bzI +bBi +bDk +bFy +bHL +bJI +bLo +bMP +bOQ +bQL +bSy +bUk +bJG +bWG +bXO +bZp +caH +ccs +cew +cgf +chJ +cjx +caE +cmZ +coK +cqt +csa +cqt +cqu +cwP +cyq +czn +czn +cAF +cCG +cDF +cEM +cFQ +cFW +aaa +aaa +cIQ +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeH +aeF +aeF +aet +aeF +aeF +aet +agp +aeF +aeF +aeF +afC +agJ +aet +ahd +aeF +aeF +aeF +aeF +aet +ahw +ahw +ahw +ain +ahM +aiF +aht +ajk +ajv +ajM +ajY +ajk +aht +akZ +akZ +amf +alc +anI +akZ +apf +apR +aqO +arW +asL +atW +avF +awT +ays +azU +aBc +aCE +aCE +aCE +aGt +aCE +aCE +aCE +aMB +aNH +aPj +aRb +ayu +aTx +aVj +aXo +aYN +aYN +atZ +ame +arZ +aqJ +bhG +biW +bkj +blC +bhG +bpd +brr +btz +bvv +bxz +bzJ +bBj +bDl +bFC +bHM +bJG +bLp +bMK +bMJ +bQM +bMQ +bUl +bJG +bWG +bXN +bZm +caE +cct +cew +cew +chK +cjx +clo +cna +coL +cqt +cqt +cqt +cqu +cwQ +cyq +czn +czn +cBE +cCH +cDG +cEN +cFQ +cFW +cFW +cIi +cIQ +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeI +aeF +aeF +aet +aeF +aeF +aet +agq +agw +aeF +agW +aet +aeF +afA +aeI +ahg +ahg +aeF +aeF +ahu +ahC +ahO +ahC +ain +ahM +ahM +aht +ajk +ajv +ajM +ajY +ajk +aht +alb +alI +akZ +akZ +akZ +akZ +akZ +apR +aqN +arV +asH +atX +avG +awU +ayt +azV +aBd +aCF +aEb +aFq +aGu +aHX +aJG +aFq +aMC +aNI +aPk +aRc +aSr +ame +atZ +atZ +atZ +atZ +atZ +amc +arX +aqJ +bhG +biW +bkj +blB +bhG +bpe +brs +btz +bvw +bxA +bzK +bBh +bDi +bFB +bHN +bJG +bLq +bMQ +bOR +bQN +bSz +bUm +bJG +bWG +bXN +bZm +caE +ccu +cew +cew +chK +cjy +caE +caE +coM +cqu +cqu +cqu +cqu +cqu +cqu +czo +czn +cBF +cCG +cDH +cEN +cFR +cGK +cHr +cGK +cIR +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeS +aeF +afC +aeF +aeF +afC +aeF +aeF +aeF +agX +aet +aeF +afl +aeR +afV +afV +afp +afp +agY +ahw +ahN +ahw +ain +ahM +ahM +aht +ajk +ajv +ajM +ajY +ajk +aht +alc +alc +alM +alc +alc +alc +alM +apR +aqP +arX +asH +atY +avH +awV +ayu +azW +aBe +awV +ayu +awV +aBe +awV +ayu +awV +aBe +aNJ +aPl +atR +atR +ame +amc +ame +ame +ame +amc +ame +arX +aqJ +bhG +bjc +bkj +blB +bhG +bhG +brt +btz +btz +bxB +btz +btz +bDm +bFD +bHO +bJG +bJG +bMR +bJG +bJG +bJG +bJG +bJG +bWG +bXN +bZq +caE +ccv +cex +cgg +chL +cjz +clp +cnb +coN +cqv +csb +ctE +cvg +cwR +cys +czp +cAC +cBG +cCG +cDH +cEO +cFS +cRn +cHs +cRn +cIS +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeI +afo +aet +aeF +aeF +afl +afV +afV +afV +afV +aeD +agJ +aeF +aeF +aeF +aeF +afA +agY +aaa +aaa +aae +aht +ahw +ahw +ahw +aht +ajm +ajv +ajM +ajY +ajm +akD +ald +alI +alJ +amU +alb +alc +apg +apR +aqN +arX +ame +ame +avI +amc +ayv +ame +aBf +amc +ayv +ame +aBf +amc +ayv +ame +aBf +amc +ayv +ame +ame +ame +azX +azX +azZ +azZ +azX +azX +arX +aqJ +bhG +biW +bkj +blL +bnc +bhG +ame +btC +bvx +bxC +bzL +bBk +bDn +bFE +bHP +bJJ +bLr +bMS +bOS +btC +ame +bUn +bVo +bWJ +bXN +bZr +caJ +caH +cey +caH +chM +cjA +caH +cnc +coO +cqw +csc +ctF +cvh +cwS +cyt +czq +cAD +cBH +cCI +cDH +czn +cFT +cFW +cFW +cFW +cIQ +cJA +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +afp +aeJ +aeF +aeF +aeF +aeF +aeF +agJ +aeF +aeF +aeF +aeF +ahe +aeF +agg +agY +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aae +ajk +ajw +ajM +ajZ +ajk +aht +akZ +alJ +amg +alI +anJ +alc +akZ +apR +aqN +arX +amc +atZ +avJ +atR +ayw +atZ +aBg +atR +ayw +atZ +aBg +atR +ayw +atZ +aBg +atR +ayw +atZ +amc +azX +aCK +aSv +aSw +apP +apP +apP +beW +aqJ +bhG +biW +bkj +blB +bnd +bpf +amc +btD +bvy +bxD +bzM +bzP +bDo +bFF +bHQ +bzP +bLs +bMT +bOT +bQO +amc +bUo +bVp +bWG +bXN +bZm +caK +ccw +cez +cgh +chN +cjB +clq +cnd +coP +cqx +ccy +ctG +cvi +cwT +cyu +czr +cAE +cBI +cCJ +cDI +cEP +cFU +cRo +cHt +cRo +cIT +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeJ +aeF +aeF +aeF +aeF +aeF +aeF +aeF +agJ +aeF +aeF +aeF +agg +agY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +ajk +ajx +ajM +ajZ +ajk +aht +alb +alK +amh +akZ +anK +alM +akZ +apT +aqN +arY +ame +atZ +avK +awW +ayx +atZ +aBh +aCG +aEc +atZ +aGv +aHY +aJH +atZ +aMD +aNK +aPm +atZ +ame +azX +aVk +aXp +aYO +aYO +aYO +aYO +beX +bgD +bhG +biW +bkj +blB +bnd +bpf +ame +btE +bvz +bxE +bzN +bzP +bDo +bFz +bHQ +bzP +bLt +bMU +bOU +bQP +ame +bUo +bVp +bWG +bXN +bZm +caK +ccx +ceA +cew +chO +cjC +clr +cne +coQ +chQ +csd +cjE +cvj +cwU +caE +czs +cAF +cBJ +cCK +cDJ +cEN +cFV +cGN +cHu +cGN +cRc +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +aeR +afW +afp +afV +afV +afB +agL +afB +afV +afV +afp +afW +aeR +agZ +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aae +aae +ajn +ajy +ajM +aka +akb +aht +ale +akZ +ami +akZ +anL +alc +akZ +apR +aqQ +arZ +ame +atZ +avL +avL +avL +atZ +aBi +aCH +aBi +atZ +aGw +aHZ +aGw +atZ +aME +aNL +aME +atZ +ame +azZ +apQ +aXq +ayz +ayz +ayz +ayz +beY +bgE +bhG +bjd +bko +blB +bnd +bpf +amc +btD +bvA +bxF +bzO +bzP +bDp +bFG +bHR +bzP +bLu +bMV +bOU +bQO +amc +bUo +bVp +bWK +bXP +bZm +caK +ccw +ceA +cgi +chO +cjD +cls +cnf +coR +cqy +cse +cjx +cvj +cwV +caE +czt +cAF +cBK +cCL +cDK +cEN +cFV +cFW +cFW +cIi +cIQ +cJz +cJz +cJz +cJz +cJz +cIQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +aeT +afq +afq +aet +agh +aeF +aeF +aeF +aeF +aeF +aha +aet +afq +afq +ahj +agZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +ajn +ajN +akb +aaa +aht +alf +alL +amj +amV +anM +alc +apf +apU +aqN +arZ +ame +atZ +avL +awX +ayy +atZ +aBi +aCI +aBi +atZ +aGx +aIa +aGw +atZ +aME +aNM +aME +atZ +ame +azZ +apR +aPp +aYP +aYP +aYP +aYP +aYP +aYP +aYP +bje +bkj +blB +bnd +bpf +ame +btD +bvA +bxG +bzP +bzP +bDq +bFH +bHS +bzP +bzP +bMW +bOU +bQO +ame +bUo +bVp +bWK +bXQ +bZs +caL +ccy +ceB +cgj +chP +cjx +caH +cng +coS +cqz +csf +ctH +cvk +cwW +caJ +czu +cAF +cBK +czn +cDL +cEQ +cFV +cFW +aaa +aaa +cIV +cJB +cJz +cJz +cJz +cLx +cLM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +aeT +afq +afq +afX +afk +aeI +aeF +agx +agM +agJ +aeF +agg +afk +ahf +afq +afq +ahj +agZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aht +alc +alM +alc +alc +anN +alc +akZ +apR +aqR +arX +amc +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +atZ +amc +azX +apR +aPp +aYP +baA +bcf +bdE +beZ +bgF +aYP +biW +bkj +blB +bnd +bpf +ame +btD +bvB +bxH +bzQ +bzQ +bDr +bFI +bHT +bzQ +bzQ +bMX +bOV +bQO +ame +bUo +bVp +bWG +bXR +bZt +caM +ccz +ccz +cgk +chQ +cjE +clt +clt +coT +cqA +clt +ctI +cvl +csj +cyv +czu +cAF +cBK +cCM +cDM +cER +cDM +cFW +aaa +aaa +cIW +cJC +cKj +cKj +cKj +cJC +cLN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +aeJ +aeU +aeU +aeU +aet +aeu +aeJ +aeF +aeF +agN +aeF +aeF +afA +agY +aet +aeU +aeU +aeU +afA +agZ +aaa +aaa +aaa +aaa +aaa +aaa +afv +aaa +aaa +aaa +aaa +aaa +afv +aaa +aae +aae +aae +aae +alc +alI +apR +aqN +arX +ame +amc +ame +ame +ame +amc +ame +ame +ame +amc +ame +ame +ame +amc +ame +ame +ame +ame +ame +azX +apR +aPp +aYP +baB +bcg +baB +bfa +baB +aYP +bjf +bkj +blB +bnd +bpf +amc +btD +bvC +bxI +bzR +bzP +bDs +bFJ +bHU +bzP +bLv +bMY +bOW +bQO +amc +bUo +bVp +bWG +bXR +bZo +caK +ccw +cew +cgl +chK +cjx +clt +cnh +coU +cqB +clt +ctJ +cvm +cwX +cyv +czv +cAG +cBL +czv +czv +cyv +cFW +cFW +aaa +aaa +aaa +cJD +cJD +cJD +cJD +cJD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeK +aeK +aeK +aeK +aeK +aaa +afA +aeI +aeF +agO +aeF +agg +aeJ +aaa +aeK +aeK +aeK +aeK +aeK +agY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alc +alc +alc +alc +anI +apR +aqN +arX +azX +azX +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azX +azX +azX +apR +aPp +aYP +baC +bch +baB +bfb +bgG +bhJ +bjg +bkp +blB +bnd +bpf +ame +btF +bvC +bxJ +bzS +bzP +bDo +bFK +bHQ +bzP +bLw +bMZ +bOW +bQQ +ame +bUo +bVp +bWG +bXR +bZo +caK +ccx +cew +cgm +chK +cjx +clt +cni +coV +cqC +clt +ctK +cvn +cwY +cyv +czw +cAH +cBM +cCN +cDN +cyv +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +afk +aeI +agP +agg +afk +agY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +alc +amW +alb +alc +akZ +apV +aqS +ats +asN +asN +asN +awY +ayz +ayz +aBj +ayz +ayz +ayz +ayz +ayz +ayz +ayz +ayz +ayz +cLt +ayz +ayz +ayz +aVm +cQM +aYP +baB +bci +bdF +bfc +bgH +bhK +bjh +bkq +blM +bnd +bpf +amc +btD +bvD +bxK +bzT +bBl +bDt +bFL +bHV +bzP +bLx +bNa +bOX +bQO +amc +bUo +bVp +bWG +bXR +bZo +caK +ccA +ceC +cgn +chK +cjF +clu +cnj +coW +cqD +clt +ctL +cvo +cwZ +cyv +czx +cAI +cBN +cCO +cDO +czv +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +afk +agQ +afk +agY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alH +amX +akZ +aom +akZ +akZ +asa +asb +aYO +aYO +aYO +aCJ +aYO +asM +aEd +aFr +aGy +aPn +aPo +aVl +aYO +aYO +asM +cCq +cIU +asM +asM +avM +avM +cQL +aYP +baB +bcj +baB +bfd +bdH +aYP +biW +bkj +blN +bne +bhG +ame +btG +bvE +bxL +bzP +bzP +bDu +bFM +bHW +bzP +bzP +bNb +bOY +btG +ame +bUn +bVq +bWL +bXS +bZo +caE +caE +caE +caE +chR +cjG +clu +clu +clu +clu +clu +ctM +cvn +cxa +cyv +czy +cAJ +cBO +cCP +cDP +cES +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +agO +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alc +amY +anO +aon +aon +aon +aqT +aon +aon +aon +aon +awZ +ayA +azX +apR +azX +aEe +aEe +aEe +aEe +aEe +aEe +aEe +azX +aPp +azX +ame +amc +amc +ame +aYP +baD +bck +bdG +bfe +bgI +aYP +biV +bkr +blA +bnf +bnf +bnf +btC +bvF +bxM +bzU +bBm +bDv +bFN +bHX +bJK +bLy +bNc +bOZ +btC +azY +bUn +bUn +bWM +bXT +bZu +caN +ccB +ceD +cgo +chS +cjH +clv +cnk +coX +cqE +csg +ctN +cvp +cxb +cyv +czv +czv +czv +czv +czv +cyv +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aes +afk +agQ +afk +agZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alc +alc +alc +aon +aph +apW +aqU +asc +asO +aua +aon +axa +ayB +azX +apR +aCK +aEe +aFs +aGz +aIc +aGD +aLz +aEe +azX +aPp +azZ +amc +aTy +aVn +aVn +aYQ +baE +bcl +bdH +bff +bgJ +aYP +biW +bkj +blO +bng +bpg +bru +bnj +btC +btC +bzV +bzV +bzV +bzV +bzV +bzV +bzV +btC +btC +btC +bSA +bUp +bVr +bWN +bXU +bZv +bUn +ccC +ceE +cgp +chT +cjI +clw +cnl +coY +cqF +csh +ctO +cvq +cxc +csj +aaa +aae +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afA +aeD +agP +afl +aeJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +api +apX +aqV +apX +asP +aub +aon +awZ +aon +azX +apR +aCL +aEe +aFt +aGA +aId +aJI +aLA +aEe +azX +aPp +azZ +amc +aTz +aVo +aXs +aYR +baF +bcm +bdH +bfg +bgK +aYP +biW +bkm +blP +bnh +bph +brv +btH +bnj +ame +amc +ame +amc +ame +amc +ame +amc +ame +bPa +bQR +bSB +bUq +bVs +bWO +bXV +bZw +caO +ccD +ceF +ccD +chU +cjJ +clx +cnm +coZ +cqG +csi +ctP +cvr +cxd +csj +aaa +aae +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +agy +agP +aeF +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +apj +apY +aqW +asd +asQ +auc +aon +axb +aae +azX +apR +azX +aEe +aFu +aGB +aGA +aJJ +aLB +aEe +azX +aPp +azZ +ame +aTz +aVp +aXt +aYS +baG +bck +bdI +bfg +bgL +aYP +bjd +bkn +blQ +bni +bpi +brw +btI +bnj +bnj +bzW +bzY +bDw +bDw +bDw +bzY +bzY +bzY +bPb +bQS +bSC +bzW +bUn +bWP +bXW +bZx +bUn +ccE +ceG +ccC +chV +cjK +cly +ccC +coX +coX +csj +csj +cvs +csj +csj +aaa +aae +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +agx +agR +aeF +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +apk +apY +aqX +apY +asR +aud +avN +axb +aaa +azX +apR +aCM +aEe +aFv +aGC +aIe +aJK +aLC +aEe +azX +aPp +azZ +amc +aTz +aVq +aXu +aYT +baH +bcn +baB +bfh +bgM +aYP +biW +bkj +blB +bnf +bpg +brx +bpg +bvG +bxN +bnj +bzY +bDx +bFO +bHY +bzY +bzY +bNd +bPc +bQT +bSD +bzW +bUn +bUn +bXX +bZy +bUn +ccC +ceE +ccC +chW +cjL +chX +ccC +aaa +aaa +csj +ctQ +cvt +cxe +csj +aaa +aae +aaa +aae +aab +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +aeF +agx +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +apl +apZ +aqY +ase +asS +aue +avO +axc +aaa +azX +apR +aCN +aEe +aFw +aGD +aIf +aGD +aLD +aEe +azX +aPp +azZ +amc +aTA +aVr +aVr +aYU +baI +bco +bdJ +bfi +bgN +aYP +biW +bkj +blB +bnf +bpj +brx +bpg +bvH +bxO +bnj +bBn +bDy +bFP +bHZ +bJL +bzY +bNe +bPd +bQU +bSE +bzW +aaa +bUn +bXY +bZz +caP +ccF +ceH +cgq +chX +cjL +chX +ccC +aae +aae +csj +ctR +cvu +cxf +csj +aae +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +aeF +aeF +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +apm +aqa +aqZ +asf +asT +auf +aon +axd +aaa +azX +aBk +azX +aEe +aEe +aEe +aIg +aEe +aEe +aEe +azX +aPp +azX +ame +amc +amc +ame +aYP +aYP +aYP +aYP +aYP +aYP +aYP +biW +bkj +blB +bnf +bpk +bry +btJ +bnj +bnj +bzW +bBo +bDz +bFQ +bIa +bJM +bzY +bNf +bPe +bQV +bSF +bzW +aae +bUn +bXY +bZA +bUn +ccG +ceI +cgo +chY +cjL +chX +ccC +aaa +aaa +csj +csj +cRk +csj +csj +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +aeF +aeF +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +aon +aon +ara +asg +asU +asg +ara +axd +aaa +azX +apR +azX +azX +aCK +apP +aIh +aJL +aLE +azX +azX +aPp +azX +azX +azZ +azZ +azX +azX +baJ +bcp +bdK +bfj +bgO +bhL +bji +bkq +blM +bnf +bpl +brz +btK +bnj +bxP +bzX +bBp +bDA +bFR +bIb +bJN +bzY +bNg +bPf +bQW +bSG +bzW +aaa +bUn +bXY +bZA +bUn +ccH +ceJ +ccC +chZ +cjL +clz +ccC +aaa +cqH +csk +cqJ +cvw +cqJ +csk +czz +aaa +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +agx +aeF +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +ara +ash +asV +aug +ara +axd +aaa +azX +apR +apP +apP +apP +aFx +aIi +apP +apP +apP +apP +aPq +aPb +aSs +aPb +aPb +aPb +aXf +baK +bcp +bdL +bfk +bgP +bhM +bjj +bkl +blR +bnf +bpm +brA +btL +bnj +bxQ +bzY +bzY +bDB +bFS +bIc +bzY +bzY +bNh +bPf +bQW +bSH +bzW +aae +bUn +bXW +bZA +bUn +ccI +ceK +ccC +cia +cjL +chX +ccC +aaa +cqI +csl +ctS +ctS +ctT +cyw +cqI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aet +aeF +aeF +aeF +aet +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aon +ara +asg +asW +asg +ara +axd +aae +azX +apR +aCO +aEf +aFx +apP +apP +aJM +aLF +aCL +aIb +arV +azX +azX +azZ +azX +azX +azX +aRg +bcp +bdM +bfl +bgQ +bhN +bjk +bkj +blS +bnj +bnj +bnj +bnj +bnj +bpq +bzY +bzY +bzY +bFT +bId +bzY +bzY +bNi +bPf +bQW +bSI +bzW +aaa +bUn +bXZ +bZB +bUn +ccJ +ccK +ccK +ccK +cjM +clA +ccC +aaa +cqJ +csm +ctT +ctS +ctT +cyx +czA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afA +aeI +aeF +agg +aeJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aqb +arb +asi +asX +auh +ara +axd +aaa +azX +aBl +azX +azX +azZ +azZ +azZ +azZ +azZ +azX +aCK +arV +azX +aSt +apP +aSt +azX +aYV +aRh +bcp +bcp +bcp +bcp +bcp +biW +bkj +blO +bnk +bpn +brB +btM +bvI +bxR +bzZ +bBq +bDC +bFU +bIe +bJO +bLz +bNj +bPf +bQW +bSJ +bzW +aaa +bUo +bYa +bZC +bVm +ccK +ceL +cgr +ccK +cjN +clB +ccC +aaa +cqI +csl +ctS +ctS +ctT +cyy +cqI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeR +afC +aeR +agY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aon +ara +ara +asY +ara +ara +axd +aaa +azY +aBm +azY +aaa +aaa +aae +aaa +aae +aaa +aaa +azX +aPr +azX +apP +aTB +apP +apP +aYW +baL +aPb +aPb +aPb +aPb +bhO +bjl +bkp +blT +bnk +bpo +brC +btN +bvJ +bxS +bAa +bBr +bDD +bFV +bIf +bJP +bLA +bNk +bDD +bQX +bSK +bzW +aaa +bUo +bYa +bZC +bVm +ccL +ceL +cgs +ccK +cjO +clB +ccC +aaa +cqK +csk +cqJ +cvx +cqJ +csk +czB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +afv +ara +asZ +ara +afv +axd +aaa +azZ +apR +azZ +aae +aae +aaa +aaa +aae +aaa +aae +azZ +arV +azX +aSt +apP +aSt +aCK +apP +aRh +azX +aCK +azX +azX +azX +biW +bkj +blU +bnk +bpp +brD +btO +bvK +bxT +bAb +bBs +bDE +bFW +bIg +bJQ +bLB +bNl +bPg +bQY +bSL +bzW +aaa +bUo +bYb +bZC +bVm +ccJ +ceL +cgt +ccJ +cjN +clC +ccC +ccC +ccC +ccC +ccC +ccC +ccC +ccC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +arc +ara +ata +ara +arc +axd +aaa +azZ +apR +azZ +aaa +aaa +aaa +aab +aaa +aaa +aaa +azZ +arV +azX +apP +apP +azX +azX +aFx +aRh +aCL +apP +apP +bgR +azX +bjm +bkp +blB +bnl +bpq +bpq +bpq +bvL +bxU +bAc +bBt +bDF +bFX +bIh +bJR +bLC +bNm +bPh +bQZ +bSM +bzW +aaa +bUo +bYa +bZC +bVn +ccK +ceM +cgu +ccK +cjN +clB +cnn +chZ +chZ +clv +chZ +cvy +cxg +cvy +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apn +aqc +ard +ard +atb +aui +aui +axe +aae +azZ +apR +azZ +aae +aae +aae +amd +aae +aae +aae +azZ +aPs +aRd +aRd +aRd +aRd +aRd +aYX +aRi +azX +bdN +bfm +bgS +azX +biW +bkj +blO +bnk +bpr +brB +btM +bvM +bxV +bAc +bBu +bDG +bFY +bIi +bJS +bLC +bDF +bPf +bRa +bSN +bzW +aaa +bUn +bYc +bZD +bUn +ccK +ccK +ccK +ccK +cjN +clD +cno +cpa +chZ +csn +ccC +ccC +ccC +ccC +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aac +aac +aad +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +arc +arc +atc +arc +avP +aaa +aaa +aAa +aBm +aAa +aaa +aaa +aGE +amd +aIk +aaa +aaa +azZ +aPp +azX +azX +azX +aVs +apP +aYY +aTC +aTC +aTC +aXv +aTC +aTC +bjn +bkj +blT +bnk +bpo +brC +btP +bvN +bxV +bAd +bAd +bDH +bFZ +bIj +bJT +bJT +bNn +bPi +bRb +bJT +bJT +aae +bUn +bYd +bZE +caQ +ccM +ceN +cgv +cib +cjP +clE +cgv +cpb +cqL +cso +cgp +cvz +cxh +cns +afv +afv +afv +afv +afv +afv +afv +afv +afv +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aae +arc +arc +arc +aae +aaa +aaa +aAa +aBm +aAa +aaa +aaa +aGF +aIj +aDx +aaa +aaa +azZ +aPt +aRe +aSu +aTC +aTC +aXv +aTC +aTC +bcq +bdO +aXw +bgT +bhP +biW +bkj +blU +bnk +bps +brE +btO +bvO +bxW +bAe +bBv +bDI +bGa +bIk +bJT +bLD +bNo +bNt +bRc +bSO +bJT +aaa +bUn +bYd +bYf +caP +caS +caS +caS +cic +caS +caS +clv +clB +cqM +csp +ccC +cvA +cqM +cns +aae +aae +aae +aae +aae +aae +aae +aae +afv +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiG +aae +ajo +aaa +aiG +aae +ajo +aaa +aiG +aae +ajo +aae +aae +aaa +aaa +aae +aae +aae +aae +aae +aaa +aaa +aAa +aBm +aAa +aaa +aaa +amd +aIk +amd +aaa +aaa +azZ +arV +aRf +aSv +aTC +aVt +aXw +aYZ +baM +bcr +bdP +bfn +aXw +bhP +bjo +bkj +blB +bnl +bpq +bpq +bpq +bvP +bxV +bAe +bBw +bDJ +bGb +bIl +bJT +bLE +bNo +bNt +bRd +bSO +bJT +aae +bUn +bYe +bZF +caR +ccN +ceO +cgw +cid +cjQ +caS +cnp +cpc +chZ +csq +ccC +cvB +chZ +cns +aaa +aaa +aaa +aaa +aaa +aae +aae +cGO +afv +cIj +aaa +cGO +aae +cIj +aaa +cGO +aae +cIj +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiG +aiT +ajo +aaa +aiG +aiT +ajo +aaa +aiG +aiT +ajo +aaa +aae +aae +aaa +aaa +aae +aae +aae +aaa +aaa +aab +aAa +aBm +aAa +aae +aae +aae +amd +aae +aae +aae +azZ +arV +aRg +aSw +aTC +aVu +aXx +aZa +baN +aZa +bdQ +bfo +bgU +bhQ +bjp +bkj +blO +bnm +bpt +brF +btQ +bvQ +bxV +bAe +bBx +bDJ +bGc +bIm +bJT +bLF +bNo +bPj +bRe +bSP +bJT +aaa +bUn +bYf +bZG +bUn +ccO +ceP +cgx +cie +cjR +caS +cnp +cpd +chZ +csr +ccC +chZ +cxi +cns +aaa +aaa +aaa +aaa +aae +aae +aaa +cGO +cHv +cIj +aaa +cGO +cHv +cIj +aaa +cGO +cHv +cIj +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aaa +aae +aae +aaa +aaa +aae +aaa +aaa +aaa +aae +aAa +aBm +aAa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azZ +aPu +aRh +aCL +aTC +aVv +aXy +aZb +baO +aZb +bdR +bfp +aZb +bhR +bjq +bkq +blV +bnn +bpu +brG +btR +bvR +bxX +bAe +bBy +bDJ +bGc +bIn +bJU +bLG +bNp +bPk +bRf +bSQ +bJT +bVt +bUn +bUo +bUo +caS +ccP +ceO +cgy +cif +cjS +clF +chZ +cpe +cqN +css +ccC +cgp +cxj +ccC +aaa +aaa +aaa +aae +aae +aaa +aaa +cGO +cHw +cIj +aaa +cGO +cHw +cIj +aaa +cGO +cHw +cIj +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aad +aae +aae +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aiG +aiU +ajo +aaa +aaa +aaa +aae +aae +aaa +aae +aaa +aaa +aae +aae +aAa +aBm +aAa +aae +aaa +aae +aaa +aae +aae +aaa +azZ +aPv +aRh +aSx +aTC +aVw +aXw +aZc +aTC +bcs +bdS +bfq +bgV +bhP +biW +bks +blT +bno +bpv +brH +btR +bvR +bxY +bAf +bBz +bDK +bGd +bIo +bJV +bLH +bNq +bPl +bRg +bSR +bJT +bVu +aaa +aaa +aaa +caS +ccQ +ceO +cgz +cig +cjT +caS +cia +cpe +cqO +css +ctU +cvC +chZ +ccC +aaa +aaa +aae +aae +aaa +aaa +aaa +cGO +cHw +cIj +aaa +cGO +cHw +cIj +aaa +cGO +cHw +cIj +aae +aae +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aiH +aiV +ajp +aaa +aiH +akc +ajp +aaa +aiH +aiV +ajp +aaa +aaa +aaa +aaa +aae +aae +are +auj +auj +auj +auj +azY +aBm +azY +aaa +aaa +aae +aaa +aae +aaa +aaa +azX +aPs +aRi +aSy +aSy +aSy +aXz +aSy +aSy +aSy +aSy +aSy +aSy +aSy +bjr +bkt +blW +bnp +bpw +brI +btS +bvS +bxZ +bAe +bBA +bDL +bGc +bIp +bJW +bLI +bNr +bPm +bNt +bSS +bJT +bVt +aae +aae +aae +caS +ccR +ceQ +cgA +cih +cjU +cii +ccC +cpf +cgp +ccC +ctV +ctV +ctV +ctV +czC +aae +aae +aaa +aaa +aaa +aaa +cGP +cHx +cIk +aaa +cGP +cKk +cIk +aaa +cGP +cHx +cIk +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aae +aaa +aaa +aae +aiW +aae +aaa +aae +aiW +aae +aaa +aae +aiW +aae +aaa +aaa +aaa +aaa +are +are +are +auk +avQ +axf +auj +aAb +aBm +aCP +azY +aAa +aAa +aAa +aAa +aAa +azY +azY +aPw +aCP +aSy +aTD +aVx +aVx +aVx +aVx +bct +bdT +bfr +bgW +aSy +bjs +bku +blX +bnq +bpx +brJ +btT +bvT +bya +bAe +bBB +bDL +bGc +bIq +bJT +bLJ +bNs +bPn +bNt +bST +bJT +aaa +aaa +aaa +aaa +caS +ccS +ceR +cgB +ccV +cjV +cii +cnq +cpe +cqP +cst +ctV +cvD +cxk +cyz +czC +czC +czC +aaa +aaa +aaa +aaa +aae +cHy +aae +aaa +aae +cHy +aae +aaa +aae +cHy +aae +aaa +aaa +aae +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aae +aae +aid +aio +aio +aiI +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +aiX +anP +aoo +aoo +aoo +axP +asj +axP +aul +avR +axg +ayC +aAc +aBn +aCQ +aCQ +aCQ +aCQ +aIl +aCQ +aCQ +aCQ +aCQ +aPx +aRj +aSy +aTE +aVx +aVx +aZd +baP +bct +bdU +bdU +bgX +aSy +bjt +bko +blY +bnl +bpq +bpq +bpq +bvU +bxV +bAe +bBC +bDM +bGe +bIr +bJT +bLK +bNt +bNt +bNt +bST +bJT +aae +aaa +aaa +aaa +caS +ccT +ceS +cgC +ccV +cjW +cih +chZ +cpg +cqQ +csu +ctW +cvE +cxl +cyA +cRm +cAK +cRm +cCQ +cDQ +cET +cET +cET +cET +cET +cET +cET +cET +cET +cET +cET +cET +cMc +cCQ +cCQ +cMI +aae +aae +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aae +aiY +aae +aae +aae +aiY +aae +aaa +aae +aiY +aae +aaa +aaa +aaa +aaa +are +are +are +aum +avS +axh +auj +aAd +aBo +azY +azY +azY +azY +azY +azY +azY +azY +azY +aPy +azY +aSy +aTF +aVy +aXA +aZe +baQ +bct +bdU +bdU +bgY +aSy +bju +bkj +blZ +bnk +bpy +brK +btU +bvV +bxW +bAe +bBD +bDN +bGf +bIs +bJT +bLJ +bNt +bPo +bNt +bST +bJT +aae +aae +aaa +aaa +caS +ccU +ceT +cgD +ccV +cjX +cii +cnr +chZ +chZ +csv +ctV +cvF +cxm +cyB +czC +czC +czC +aaa +aaa +aaa +aaa +aae +cHz +aae +aae +aae +cHz +aae +aaa +aae +cHz +aae +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aaa +aaa +aiH +aiZ +ajp +aaa +aiH +aiZ +ajp +aaa +aiH +aiZ +ajp +aaa +aaa +aaa +aaa +aae +aae +are +auj +auj +auj +auj +azY +aBp +aCP +aEg +aFy +aGG +aIm +aJN +azY +aEj +azY +aPy +aMF +aSy +aTG +aVz +aVx +aVx +baR +bct +bdU +bdU +bgZ +bhS +bjv +bkj +bma +bnk +bpo +brC +btV +bvW +bxV +bAd +bAd +bDO +bFZ +bIj +bJT +bLL +bLL +bLL +bLL +bLL +bLL +bLL +aae +aae +aae +caS +ccV +ccV +ccV +cii +cjY +cii +cns +cns +cns +cns +ctV +ctV +ctV +ctV +czC +aae +aae +aaa +aaa +aab +aaa +cGP +cHA +cIk +aaa +cGP +cHA +cIk +aaa +cGP +cHA +cIk +aaa +aaa +aae +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aac +aac +aae +aae +aiJ +aja +ajq +aaa +aiJ +aja +ajq +aaa +aiJ +aja +ajq +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +azY +aBo +aCR +aEh +azY +aGH +aCV +aJO +azY +aCV +aGG +aPz +aRk +aSy +aTH +aVA +aXB +aZf +baS +bcu +bdV +bfs +bha +bhT +bjw +bkj +bmb +bnk +bpz +brL +btW +bvX +bxV +btR +bBE +bDP +bGg +bIt +bJX +bLM +bNu +bPp +bRh +bSU +bUr +bVv +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +cGQ +cHB +cIl +aaa +cGQ +cHB +cIl +aaa +cGQ +cHB +cIl +aae +aae +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aiJ +aja +ajq +aaa +aiJ +aja +ajq +aae +aiJ +aja +ajq +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +azY +aBo +azY +aEi +azY +aGI +aIn +aJP +azY +aEi +aCP +aPy +aCV +aSy +aTI +aVB +aXC +aXC +baT +bcv +bdW +bft +bhb +bhU +bjx +bkq +bmc +bnl +bpq +bpq +bpq +bvY +bxX +btR +bBF +bDQ +bGh +bIu +bJY +bLN +bNv +bPq +bRi +bSV +bUs +bVv +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +cGQ +cHB +cIl +aaa +cGQ +cHB +cIl +aae +cGQ +cHB +cIl +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiJ +ajb +ajq +aaa +aiJ +ajb +ajq +aae +aiJ +ajb +ajq +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azY +aBo +azY +aCV +azY +aGJ +aCV +aJQ +azY +aCV +azY +aPy +aRl +aSy +aTJ +aVC +aXD +aZg +baU +bct +bdU +bfu +bhc +aSy +bjy +bkj +blZ +bnk +bpA +brK +btU +bvZ +bxT +bAg +bBG +bDR +bGi +bIv +bJZ +bLO +bNw +bPr +bRj +bSW +bUt +bVv +aae +aae +aae +aae +aae +afv +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +cGQ +cHC +cIl +aaa +cGQ +cHC +cIl +aae +cGQ +cHC +cIl +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aiJ +aae +ajq +aaa +aiJ +aae +ajq +aaa +aiJ +aae +ajq +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azY +aBq +azY +aEj +azY +aGK +aCV +aCV +azY +aMF +azY +aPy +aRm +aSy +aTK +aVD +aVx +aZh +baV +bct +bdU +bfu +bdT +aSy +bjz +bkj +bma +bnk +bpo +brC +btX +bwa +byb +bAh +bBH +bDS +bGj +bIw +bKa +bLP +bNx +bPs +bRk +bPt +bUu +bVv +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aae +aae +cGQ +aae +cIl +aaa +cGQ +aae +cIl +aaa +cGQ +aae +cIl +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aae +aae +aaa +aaa +aaa +aab +aaa +aaa +aaa +azY +aBr +azY +azY +azY +azY +azY +aJR +azY +aGL +azY +aPA +aJU +aSy +aTL +aVE +aVx +aVx +aVx +bct +bdT +bfv +bdT +aSy +bjA +bkv +bmb +bnk +bpB +brM +btW +bwb +byc +btR +bBI +bDT +bGk +bIx +bKb +bLM +bNy +bPt +bRl +bSX +bUv +bVv +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aac +aac +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +azY +aBs +aCS +aCS +aFz +azY +aEh +aCV +aLG +aCV +azY +aPy +aCV +aSy +aTM +aSy +aSy +aSy +aSy +aSy +aSy +aSy +aSy +aSy +ahv +bkw +bmd +bjF +bpC +bpC +bpC +bpC +bpC +bpC +bpC +bDU +bGl +bIy +bud +bLL +bLL +bPu +bLL +bLL +bLL +bLL +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +cIX +cKl +cIX +cIX +cIX +aac +aac +aac +aac +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +azY +aBt +aCT +azY +aBm +aCP +aIo +aJS +azY +aLH +azY +aPy +aCV +azY +aTN +aTN +aXE +aTN +baW +aTN +bdX +bfw +bfw +bhV +bjB +bkx +bme +bjE +bpD +brN +btY +aTN +aTN +aTN +bpC +bDV +bGm +bIz +bwf +bLQ +bNz +bPv +bNz +bSY +bwf +afv +afv +afv +afv +afv +afv +afv +afv +afv +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +azY +azY +azY +azY +aBm +azY +azY +azY +azY +azY +azY +aPy +aCP +azY +aTO +aTN +aXF +aZi +baX +aZi +bdY +aZi +bdY +bhW +bjC +bky +bmf +bnr +bpE +brO +btZ +bwc +byd +bwc +bBJ +bDW +bGn +bIA +bKc +bLR +bNA +bPw +bRm +bSZ +bwf +bVw +bwf +aae +aae +aae +aae +aae +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +azY +aBu +aCU +aCP +aBm +aGL +aIp +aJT +aCV +aCV +aCV +aPy +azY +azY +azY +azY +azY +azY +azY +azY +azY +azY +azY +azY +aCP +bkw +bmg +bjF +bpF +brP +bua +bfw +bfw +bfw +bBK +bDX +bGo +bIB +bwf +bLS +bNB +bPx +bRn +bTa +bwf +bVx +bwf +aaa +aaa +aaa +aaa +aaa +aae +aae +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +azY +aBv +aCV +aEk +aBs +aCS +aCS +aCS +aCS +aMG +aCS +aPB +aRn +aRn +aTP +aRn +aRn +aZj +aRn +aRn +aRn +aRn +aRn +aRn +bjD +bkz +bmh +bjF +bpG +brQ +bjF +bjF +bjF +bjF +bjF +bDY +bGp +bIC +bud +bud +bNC +bPy +bRo +bud +bud +bVw +bwf +bwf +bwf +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +azY +aBw +aCV +azY +aFA +aGM +aIq +aJU +aLH +azY +aCV +aPC +aRo +aSz +aTQ +aVF +aSz +aSz +baY +aSz +aSz +aSz +aTQ +bhX +bjE +bkA +bmi +bjF +bpH +brR +bjF +bwd +bye +bAi +bBL +bDZ +bGq +bID +bKd +bLT +bND +bPz +bRp +bTb +bUw +bVx +bWQ +bYg +bwf +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +azY +azY +azY +azY +aFB +aFB +aFB +aJV +aFB +azY +azY +azY +azY +azY +aTR +aCP +azY +azY +azY +azY +aCP +azY +aTR +azY +bjF +bkB +bmj +bns +bpI +brS +bjF +bwe +byf +bAj +bBM +bEa +bGr +bIE +bKe +bLU +bNE +bPA +bRq +bTc +bUx +bwf +bUw +bwf +bwf +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aFC +aGN +aCV +aEi +aFC +aaa +aaa +aaa +azY +aSA +aTS +aVG +aVG +aZk +baZ +aZk +aVG +bfx +bhd +bhY +bjF +bkC +bmk +bnt +bpJ +brT +bjF +bwf +byg +bAk +bwf +bwf +bGs +bAk +bwf +bwf +bNF +bAk +bwf +bwf +bwf +bVy +bWR +bYh +bwf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aFB +aCV +aIr +aJW +aFB +aaa +aab +aae +azY +aSB +aTT +aCV +aCV +aTT +bba +aTT +bdZ +aMF +bhe +bhZ +bjF +bkD +bml +bnu +bpK +brU +bjF +bwg +byh +bAl +bwf +bEb +bGt +bIF +bwf +bLV +byh +bPB +bwf +bTd +bBN +bVz +bWS +bVz +bwf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aFB +aGO +aIs +aJX +aFB +aaa +aae +aae +azY +azY +aTU +aCV +aCV +aZl +aCV +bcw +aMF +aMF +bhf +azY +bjF +bjF +bjF +bnv +bpL +brV +bjF +bwh +byi +bAm +bwf +bEc +bGu +bIG +bwf +bLW +byi +bAm +bBN +bTe +bwf +bVz +bWT +bVz +bwf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aFB +aFB +aFB +aFB +aFB +aae +aae +aaa +aaa +azY +azY +azY +azY +azY +azY +azY +azY +azY +azY +azY +aaa +aaa +bjF +bnw +bpM +brW +bjF +bwf +byj +bwf +bBN +bwf +bGv +bAk +bwf +bwf +bNG +bwf +bwf +bTf +bwf +bVA +bWU +bYi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +aab +bjF +bnx +bpN +brX +bub +bwi +byk +byk +bBO +byk +bGw +bIH +bKf +byk +byk +byk +bRr +bTg +bwf +aaa +bWV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaa +bjF +bny +bpO +brY +buc +bwj +byl +byl +byl +byl +bGt +bIH +byk +byk +byk +byk +bRs +bTh +bwf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +bjF +bnz +bnz +bnz +bjF +bwk +bym +bAn +byl +byl +bGx +bII +byi +bLX +byk +bPC +bBN +bwf +bwf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +bjF +aaa +aaa +aaa +bud +bwl +byn +byk +bBP +bEd +bGy +bIJ +bBP +byk +byk +bPD +bwf +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bud +bwm +byo +byk +bBP +bEe +bGz +bEe +bBP +byk +byk +bPE +bwf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bud +bwn +byp +bAo +bBQ +bEf +bGA +bIK +bBQ +bLY +byp +bPF +bwf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bud +bwo +bwf +bwo +bBR +bwo +bwf +bwo +bBR +bwo +bwf +bwo +bwf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +aae +aaa +aae +aaa +aae +aaa +aae +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +aae +aaa +aae +aaa +aae +aaa +afv +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +afv +aaa +aae +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +aaa +aaa +afv +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aae +aaa +aab +aaa +aaa +aaa +aae +aaa +aaa +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +afv +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ayD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} - From 72629729a14b8862ecac688c6487e0d0238790ca Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Sat, 12 Mar 2016 02:01:25 +0000 Subject: [PATCH 70/77] Automatic changelog generation for PR #16018 --- html/changelogs/AutoChangeLog-pr-16018.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-16018.yml diff --git a/html/changelogs/AutoChangeLog-pr-16018.yml b/html/changelogs/AutoChangeLog-pr-16018.yml new file mode 100644 index 00000000000..d599f680fbd --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-16018.yml @@ -0,0 +1,5 @@ +author: PKPenguin321 +delete-after: True +changes: + - rscadd: "Added reinforced bolas. They do a very short stun in addition to normal functions, and take twice as long to break out of when compared to regular bolas." + - tweak: "The traitor's Throwing Star Box has been made into the Throwing Weapons Box. It now contains two reinforced bolas in addition to its old contents. It also costs 5 TCs, down from 6." From f3ecb132ba42e01a71c1959e751da3bd80f961b6 Mon Sep 17 00:00:00 2001 From: c0 Date: Wed, 9 Mar 2016 15:00:47 +0300 Subject: [PATCH 71/77] Adds Alien Alloys --- .../miniantags/abduction/abduction_gear.dm | 73 +++++++++++++++++- code/game/machinery/doors/airlock_types.dm | 5 +- .../objects/items/stacks/sheets/mineral.dm | 37 ++++++++- .../items/stacks/tiles/tile_mineral.dm | 9 +++ code/game/objects/structures/door_assembly.dm | 10 --- code/game/objects/structures/false_walls.dm | 9 +++ .../turfs/simulated/floor/mineral_floor.dm | 31 ++++++++ code/game/turfs/simulated/walls_mineral.dm | 14 +++- icons/obj/abductor.dmi | Bin 46736 -> 49431 bytes icons/turf/floors.dmi | Bin 389796 -> 387904 bytes icons/turf/walls/abductor_wall.dmi | Bin 0 -> 1977 bytes 11 files changed, 173 insertions(+), 15 deletions(-) create mode 100644 icons/turf/walls/abductor_wall.dmi diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index 41b35e2f108..29a654fbc65 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -589,17 +589,88 @@ Congratulations! You are now trained for xenobiology research!"} name = "resting contraption" desc = "This looks similar to contraptions from earth. Could aliens be stealing our technology?" icon = 'icons/obj/abductor.dmi' + buildstacktype = /obj/item/stack/sheet/mineral/abductor icon_state = "bed" +/obj/structure/table_frame/abductor + name = "alien table frame" + desc = "A strudy table frame made from alien alloy." + icon_state = "alien_frame" + framestack = /obj/item/stack/sheet/mineral/abductor + framestackamount = 1 + density = 1 + +/obj/structure/table_frame/abductor/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/weapon/wrench)) + user << "You start disassembling [src]..." + playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1) + if(do_after(user, 30/I.toolspeed, target = src)) + playsound(src.loc, 'sound/items/Deconstruct.ogg', 50, 1) + for(var/i = 1, i <= framestackamount, i++) + new framestack(get_turf(src)) + qdel(src) + return + if(istype(I, /obj/item/stack/sheet/mineral/abductor)) + var/obj/item/stack/sheet/P = I + if(P.get_amount() < 1) + user << "You need one alien alloy sheet to do this!" + return + user << "You start adding [P] to [src]..." + if(do_after(user, 50, target = src)) + P.use(1) + new /obj/structure/table/abductor(src.loc) + qdel(src) + return + /obj/structure/table/abductor name = "alien table" desc = "Advanced flat surface technology at work!" icon = 'icons/obj/smooth_structures/alien_table.dmi' icon_state = "alien_table" + buildstack = /obj/item/stack/sheet/mineral/abductor + framestack = /obj/item/stack/sheet/mineral/abductor + buildstackamount = 1 + framestackamount = 1 canSmoothWith = null + frame = /obj/structure/table_frame/abductor + /obj/structure/closet/abductor name = "alien locker" desc = "Contains secrets of the universe." icon_state = "abductor" - icon_door = "abductor" \ No newline at end of file + icon_door = "abductor" + can_weld_shut = FALSE + material_drop = /obj/item/stack/sheet/mineral/abductor + +/obj/structure/door_assembly/door_assembly_abductor + name = "alien airlock assembly" + icon = 'icons/obj/doors/airlocks/abductor/abductor_airlock.dmi' + overlays_file = 'icons/obj/doors/airlocks/abductor/overlays.dmi' + typetext = "abductor" + icontext = "abductor" + airlock_type = /obj/machinery/door/airlock/abductor + anchored = 1 + state = 1 + +/obj/structure/door_assembly/door_assembly_abductor/attackby(obj/item/W, mob/user, params) + if(istype(W, /obj/item/weapon/weldingtool) && !anchored ) + var/obj/item/weapon/weldingtool/WT = W + if(WT.remove_fuel(0,user)) + user.visible_message("[user] disassembles the airlock assembly.", \ + "You start to disassemble the airlock assembly...") + playsound(src.loc, 'sound/items/Welder2.ogg', 50, 1) + if(do_after(user, 40/W.toolspeed, target = src)) + if( !WT.isOn() ) + return + user << "You disassemble the airlock assembly." + new /obj/item/stack/sheet/mineral/abductor(get_turf(src), 4) + qdel(src) + else + return + else if(istype(W, /obj/item/weapon/airlock_painter)) + return // no repainting + else if(istype(W, /obj/item/stack/sheet)) + return // no material modding + else + ..() \ No newline at end of file diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 335e502f706..00357c87d86 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -299,11 +299,14 @@ /obj/machinery/door/airlock/abductor name = "alien airlock" + desc = "With humanity's current technological level, it could take years to hack this advanced airlock... or maybe we should give screwdriver a try?" icon = 'icons/obj/doors/airlocks/abductor/abductor_airlock.dmi' overlays_file = 'icons/obj/doors/airlocks/abductor/overlays.dmi' doortype = /obj/structure/door_assembly/door_assembly_abductor opacity = 1 - explosion_block = 2 + explosion_block = 3 + hackProof = 1 + aiControlDisabled = 1 ////////////////////////////////// /* diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index 1670a24e98e..7f73e2254be 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -265,7 +265,7 @@ var/global/list/datum/stack_recipe/snow_recipes = list ( \ /obj/item/stack/sheet/mineral/snow/New(var/loc, var/amount=null) recipes = snow_recipes pixel_x = rand(0,4)-4 - pixel_y = rand(0,4)-4 + pixel_y = rand(,4)-4 ..() /****************************** Others ****************************/ @@ -311,4 +311,37 @@ var/global/list/datum/stack_recipe/snow_recipes = list ( \ w_class = 3 throw_speed = 1 throw_range = 3 - origin_tech = "materials=4" \ No newline at end of file + origin_tech = "materials=4" + +/* + * Alien Alloy + */ +/obj/item/stack/sheet/mineral/abductor + name = "alien alloy" + icon = 'icons/obj/abductor.dmi' + icon_state = "sheet-abductor" + singular_name = "alien alloy sheet" + force = 5 + throwforce = 5 + w_class = 3 + throw_speed = 1 + throw_range = 3 + origin_tech = "materials=6;abductor=1" + sheettype = "abductor" + +var/global/list/datum/stack_recipe/abductor_recipes = list ( \ + new/datum/stack_recipe("alien chair", /obj/structure/chair, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("alien bed", /obj/structure/bed/abductor, 2, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("alien locker", /obj/structure/closet/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("alien table frame", /obj/structure/table_frame/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("alien airlock assembly", /obj/structure/door_assembly/door_assembly_abductor, 4, time = 20, one_per_turf = 1, on_floor = 1), \ + null, \ + new/datum/stack_recipe("alien floor tile", /obj/item/stack/tile/mineral/abductor, 1, 4, 20), \ +/* null, \ + new/datum/stack_recipe("Abductor Agent Statue", /obj/structure/statue/bananium/clown, 5, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("Abductor Sciencist Statue", /obj/structure/statue/bananium/clown, 5, one_per_turf = 1, on_floor = 1)*/ + ) + +/obj/item/stack/sheet/mineral/abductor/New(var/loc, var/amount=null) + recipes = abductor_recipes + ..() \ No newline at end of file diff --git a/code/game/objects/items/stacks/tiles/tile_mineral.dm b/code/game/objects/items/stacks/tiles/tile_mineral.dm index 319b1035190..967d4613a80 100644 --- a/code/game/objects/items/stacks/tiles/tile_mineral.dm +++ b/code/game/objects/items/stacks/tiles/tile_mineral.dm @@ -58,3 +58,12 @@ mineralType = "bananium" materials = list(MAT_BANANIUM=500) +/obj/item/stack/tile/mineral/abductor + name = "alien floor tile" + singular_name = "alien floor tile" + desc = "A tile made out of alien alloy." + icon = 'icons/obj/abductor.dmi' + icon_state = "tile_abductor" + origin_tech = "materials=6;abductor=1" + turf_type = /turf/simulated/floor/mineral/abductor + mineralType = "abductor" \ No newline at end of file diff --git a/code/game/objects/structures/door_assembly.dm b/code/game/objects/structures/door_assembly.dm index e73d8c64566..94ea8e37317 100644 --- a/code/game/objects/structures/door_assembly.dm +++ b/code/game/objects/structures/door_assembly.dm @@ -292,16 +292,6 @@ anchored = 1 state = 1 -/obj/structure/door_assembly/door_assembly_abductor - name = "alien airlock assembly" - icon = 'icons/obj/doors/airlocks/abductor/abductor_airlock.dmi' - overlays_file = 'icons/obj/doors/airlocks/abductor/overlays.dmi' - typetext = "abductor" - icontext = "abductor" - airlock_type = /obj/machinery/door/airlock/abductor - anchored = 1 - state = 1 - /obj/structure/door_assembly/door_assembly_wood name = "wooden airlock assembly" icon = 'icons/obj/doors/airlocks/station/wood.dmi' diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm index 1de69c421da..6fb3e3cb3bc 100644 --- a/code/game/objects/structures/false_walls.dm +++ b/code/game/objects/structures/false_walls.dm @@ -271,3 +271,12 @@ mineral = "metal" walltype = "iron" canSmoothWith = list(/obj/structure/falsewall/iron, /turf/simulated/wall/mineral/iron) + +/obj/structure/falsewall/abductor + name = "alien wall" + desc = "A wall with alien alloy plating." + icon = 'icons/turf/walls/abductor_wall.dmi' + icon_state = "abductor" + mineral = "abductor" + walltype = "abductor" + canSmoothWith = list(/obj/structure/falsewall/abductor, /turf/simulated/wall/mineral/abductor) diff --git a/code/game/turfs/simulated/floor/mineral_floor.dm b/code/game/turfs/simulated/floor/mineral_floor.dm index 612aec92013..35344e06e72 100644 --- a/code/game/turfs/simulated/floor/mineral_floor.dm +++ b/code/game/turfs/simulated/floor/mineral_floor.dm @@ -169,3 +169,34 @@ last_event = world.time active = 0 return + +// ALIEN ALLOY +/turf/simulated/floor/mineral/abductor + name = "alien floor" + icon_state = "alienpod1" + floor_tile = /obj/item/stack/tile/mineral/abductor + icons = list("alienpod1", "alienpod2", "alienpod3", "alienpod4", "alienpod5", "alienpod6", "alienpod7", "alienpod8", "alienpod9") + +/turf/simulated/floor/mineral/abductor/New() + ..() + icon_state = "alienpod[rand(1,9)]" + +/turf/simulated/floor/mineral/abductor/break_tile() + return //unbreakable + +/turf/simulated/floor/mineral/abductor/burn_tile() + return //unburnable + +/turf/simulated/floor/mineral/abductor/make_plating() + return ChangeTurf(/turf/simulated/floor/plating/abductor2) + + +/turf/simulated/floor/plating/abductor2 + name = "alien plating" + icon_state = "alienplating" + +/turf/simulated/floor/plating/abductor2/break_tile() + return //unbreakable + +/turf/simulated/floor/plating/abductor2/burn_tile() + return //unburnable \ No newline at end of file diff --git a/code/game/turfs/simulated/walls_mineral.dm b/code/game/turfs/simulated/walls_mineral.dm index 7333c428b75..e9014cd60a7 100644 --- a/code/game/turfs/simulated/walls_mineral.dm +++ b/code/game/turfs/simulated/walls_mineral.dm @@ -173,4 +173,16 @@ mineral = "snow" hardness = 80 sheet_type = /obj/item/stack/sheet/mineral/snow - canSmoothWith = null \ No newline at end of file + canSmoothWith = null + +/turf/simulated/wall/mineral/abductor + name = "alien wall" + desc = "A wall with alien alloy plating." + icon = 'icons/turf/walls/abductor_wall.dmi' + icon_state = "abductor" + walltype = "abductor" + mineral = "abductor" + sheet_type = /obj/item/stack/sheet/mineral/abductor + slicing_duration = 200 //alien wall takes twice as much time to slice + explosion_block = 3 + canSmoothWith = list(/turf/simulated/wall/mineral/abductor, /obj/structure/falsewall/abductor) \ No newline at end of file diff --git a/icons/obj/abductor.dmi b/icons/obj/abductor.dmi index c08d266200fd05080b5974617aa70496d2725061..0896e9a500a52f7cb2f89dd66b308083218e8ec8 100644 GIT binary patch literal 49431 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%0Ary4ZjDskiTNj# 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 aB-7f=`cquqlsgLWr>3O+s#?K1{Qm&tXFf>) diff --git a/icons/turf/floors.dmi b/icons/turf/floors.dmi index 610481c7f22b5f9f58a28b2bdecd86d69f55acdb..b838b5a104437c6de4535b6727dadb869e53c263 100644 GIT binary patch delta 93738 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

      +tWjYG00khRrJ?^h-i>~sVK0YIz9&8i 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 delta 95645 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%0D${xI95!=Dv%r0JS=R$oPJkA{0tV@>%OuZ5p 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 literal 0 HcmV?d00001 From 52d91c0cf9da3816f1c822926d68e95c3ffa83fb Mon Sep 17 00:00:00 2001 From: c0 Date: Thu, 10 Mar 2016 03:37:15 +0300 Subject: [PATCH 72/77] Abductor Tech added to RnD --- .../miniantags/abduction/abduction_gear.dm | 21 ++++++++++++------- code/modules/research/rdconsole.dm | 4 ++++ code/modules/research/research.dm | 11 +++++++--- code/modules/research/server.dm | 2 ++ 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index 29a654fbc65..a062f7bdb2c 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -11,7 +11,7 @@ icon_state = "vest_stealth" item_state = "armor" blood_overlay_type = "armor" - origin_tech = "materials=5;biotech=4;powerstorage=5" + origin_tech = "materials=5;biotech=4;powerstorage=5;abductor=3" armor = list(melee = 15, bullet = 15, laser = 15, energy = 15, bomb = 15, bio = 15, rad = 15) actions_types = list(/datum/action/item_action/hands_free/activate) var/mode = VEST_STEALTH @@ -136,7 +136,7 @@ icon = 'icons/obj/abductor.dmi' icon_state = "gizmo_scan" item_state = "silencer" - origin_tech = "materials=5;magnets=5;bluespace=6" + origin_tech = "materials=5;magnets=5;bluespace=6;abductor=4" var/mode = GIZMO_SCAN var/mob/living/marked = null var/obj/machinery/abductor/console/console @@ -217,7 +217,7 @@ icon = 'icons/obj/abductor.dmi' icon_state = "silencer" item_state = "gizmo" - origin_tech = "materials=5;magnets=5" + origin_tech = "materials=5;magnets=5;abductor=3" /obj/item/device/abductor/silencer/attack(mob/living/M, mob/user) if(!AbductorCheck(user)) @@ -261,7 +261,7 @@ icon = 'icons/obj/abductor.dmi' icon_state = "implant" activated = 1 - origin_tech = "materials=2;biotech=3;magnets=4;bluespace=5" + origin_tech = "materials=2;biotech=3;magnets=4;bluespace=5;abductor=5" var/obj/machinery/abductor/pad/home var/cooldown = 30 @@ -323,7 +323,7 @@ pin = /obj/item/device/firing_pin/alien icon_state = "alienpistol" item_state = "alienpistol" - origin_tech = "combat=5;materials=4;powerstorage=3" + origin_tech = "combat=5;materials=4;powerstorage=3;abductor=3" /obj/item/weapon/paper/abductor name = "Dissection Guide" @@ -362,7 +362,7 @@ Congratulations! You are now trained for xenobiology research!"} icon_state = "wonderprodStun" item_state = "wonderprod" slot_flags = SLOT_BELT - origin_tech = "materials=6;combat=5;biotech=7" + origin_tech = "materials=6;combat=5;biotech=7;abductor=4" force = 7 w_class = 3 actions_types = list(/datum/action/item_action/toggle_mode) @@ -518,6 +518,7 @@ Congratulations! You are now trained for xenobiology research!"} icon_state = "cuff_white" // Needs sprite breakouttime = 450 trashtype = /obj/item/weapon/restraints/handcuffs/energy/used + origin_tech = "materials=2;magnets=5;abductor=2" /obj/item/weapon/restraints/handcuffs/energy/used desc = "energy discharge" @@ -546,26 +547,32 @@ Congratulations! You are now trained for xenobiology research!"} /obj/item/weapon/scalpel/alien name = "alien scalpel" icon = 'icons/obj/abductor.dmi' + origin_tech = "materials=2;biotech=2;abductor=2" /obj/item/weapon/hemostat/alien name = "alien hemostat" icon = 'icons/obj/abductor.dmi' + origin_tech = "materials=2;biotech=2;abductor=2" /obj/item/weapon/retractor/alien name = "alien retractor" icon = 'icons/obj/abductor.dmi' + origin_tech = "materials=2;biotech=2;abductor=2" /obj/item/weapon/circular_saw/alien name = "alien saw" icon = 'icons/obj/abductor.dmi' + origin_tech = "materials=2;biotech=2;abductor=2" /obj/item/weapon/surgicaldrill/alien name = "alien drill" icon = 'icons/obj/abductor.dmi' + origin_tech = "materials=2;biotech=2;abductor=2" /obj/item/weapon/cautery/alien name = "alien cautery" icon = 'icons/obj/abductor.dmi' + origin_tech = "materials=2;biotech=2;abductor=2" /obj/item/clothing/head/helmet/abductor name = "agent headgear" @@ -573,7 +580,7 @@ Congratulations! You are now trained for xenobiology research!"} icon_state = "alienhelmet" item_state = "alienhelmet" blockTracking = 1 - origin_tech = "materials=6;magnets=5" + origin_tech = "materials=6;magnets=5;abductor=3" flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR // Operating Table / Beds / Lockers diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 31f90f277cc..10f91bb920a 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -642,6 +642,8 @@ proc/CallMaterialName(ID) dat += "

      Current Research Levels:


      " diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index 552765519cb..6470b5453c5 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -112,7 +112,7 @@ research holder datum. for(var/v in known_tech) var/datum/tech/T = known_tech[v] - T.level = Clamp(T.level, 1, 20) + T.level = Clamp(T.level, 0, 20) for(var/v in known_designs) var/datum/design/D = known_designs[v] @@ -226,6 +226,12 @@ research holder datum. id = "syndicate" rare = 4 +/datum/tech/abductor + name = "Alien Technologies Research" + desc = "The study of technologies used by advanced alien race known as Abductors." + id = "abductor" + rare = 5 + level = 0 /* /datum/tech/arcane @@ -264,8 +270,7 @@ research holder datum. return 0 var/cost = 0 - var/i - for(i=current_level+1, i<=level, i++) + for(var/i=current_level+1, i<=level, i++) if(i == initial(level)) continue cost += i*5*rare diff --git a/code/modules/research/server.dm b/code/modules/research/server.dm index 629035dee92..286f65ae899 100644 --- a/code/modules/research/server.dm +++ b/code/modules/research/server.dm @@ -301,6 +301,8 @@ dat += "Known Technologies
      " for(var/v in temp_server.files.known_tech) var/datum/tech/T = temp_server.files.known_tech[v] + if(T.level <= 0) + continue dat += "* [T.name] " dat += "(Reset)
      " //FYI, these are all strings. dat += "Known Designs
      " From 9a3276c78414adff361993d50c0ea625269d4cd5 Mon Sep 17 00:00:00 2001 From: c0 Date: Thu, 10 Mar 2016 05:42:10 +0300 Subject: [PATCH 73/77] Alien Alloys in RnD --- code/game/objects/items/stacks/sheets/mineral.dm | 2 +- code/modules/research/designs.dm | 11 +++++++++++ code/modules/research/rdconsole.dm | 3 ++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index 7f73e2254be..ebe9d12f1f1 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -330,7 +330,7 @@ var/global/list/datum/stack_recipe/snow_recipes = list ( \ sheettype = "abductor" var/global/list/datum/stack_recipe/abductor_recipes = list ( \ - new/datum/stack_recipe("alien chair", /obj/structure/chair, one_per_turf = 1, on_floor = 1), \ +/* new/datum/stack_recipe("alien chair", /obj/structure/chair, one_per_turf = 1, on_floor = 1), \*/ new/datum/stack_recipe("alien bed", /obj/structure/bed/abductor, 2, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("alien locker", /obj/structure/closet/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("alien table frame", /obj/structure/table_frame/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \ diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 8e3f719d11f..3f41fe0c246 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -494,3 +494,14 @@ datum/design/diagnostic_hud_night materials = list(MAT_METAL = 1000, MAT_GLASS = 500, MAT_PLASMA = 1500, MAT_URANIUM = 200) build_path = /obj/item/weapon/weldingtool/experimental category = list("Equipment") + + +/datum/design/alienalloy + name = "Alien Alloy" + desc = "A sheet of reverse-engineered alien alloy." + id = "alienalloy" + req_tech = list("abductor" = 1, "materials" = 7, "plasmatech" = 2) + build_type = PROTOLATHE + materials = list(MAT_METAL = 4000, MAT_PLASMA = 4000) + build_path = /obj/item/stack/sheet/mineral/abductor + category = list("Stock Parts") diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 10f91bb920a..f9ac74a6bda 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -399,7 +399,8 @@ proc/CallMaterialName(ID) if( new_item.type == /obj/item/weapon/storage/backpack/holding ) new_item.investigate_log("built by [key]","singulo") new_item.reliability = R - new_item.materials = efficient_mats.Copy() + if(!istype(new_item, /obj/item/stack/sheet)) // To avoid materials dupe glitches + new_item.materials = efficient_mats.Copy() if(linked_lathe.hacked) R = max((new_item.reliability/2), 0) new_item.loc = linked_lathe.loc From 8dfef3b793653906be128288e26dcf0e593a957d Mon Sep 17 00:00:00 2001 From: c0 Date: Thu, 10 Mar 2016 05:57:22 +0300 Subject: [PATCH 74/77] fix --- .../miniantags/abduction/abduction_gear.dm | 2 +- code/game/machinery/doors/airlock_types.dm | 2 +- .../objects/items/stacks/sheets/mineral.dm | 4 ++-- code/modules/research/research.dm | 2 +- icons/obj/structures.dmi | Bin 117327 -> 118404 bytes 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index a062f7bdb2c..ba2f6335045 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -601,7 +601,7 @@ Congratulations! You are now trained for xenobiology research!"} /obj/structure/table_frame/abductor name = "alien table frame" - desc = "A strudy table frame made from alien alloy." + desc = "A sturdy table frame made from alien alloy." icon_state = "alien_frame" framestack = /obj/item/stack/sheet/mineral/abductor framestackamount = 1 diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 00357c87d86..3e029901c3c 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -299,7 +299,7 @@ /obj/machinery/door/airlock/abductor name = "alien airlock" - desc = "With humanity's current technological level, it could take years to hack this advanced airlock... or maybe we should give screwdriver a try?" + desc = "With humanity's current technological level, it could take years to hack this advanced airlock... or maybe we should give a screwdriver a try?" icon = 'icons/obj/doors/airlocks/abductor/abductor_airlock.dmi' overlays_file = 'icons/obj/doors/airlocks/abductor/overlays.dmi' doortype = /obj/structure/door_assembly/door_assembly_abductor diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index ebe9d12f1f1..41399ddbe5c 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -265,7 +265,7 @@ var/global/list/datum/stack_recipe/snow_recipes = list ( \ /obj/item/stack/sheet/mineral/snow/New(var/loc, var/amount=null) recipes = snow_recipes pixel_x = rand(0,4)-4 - pixel_y = rand(,4)-4 + pixel_y = rand(0,4)-4 ..() /****************************** Others ****************************/ @@ -330,7 +330,7 @@ var/global/list/datum/stack_recipe/snow_recipes = list ( \ sheettype = "abductor" var/global/list/datum/stack_recipe/abductor_recipes = list ( \ -/* new/datum/stack_recipe("alien chair", /obj/structure/chair, one_per_turf = 1, on_floor = 1), \*/ +/* new/datum/stack_recipe("alien chair", /obj/structure/chair, one_per_turf = 1, on_floor = 1), \ */ new/datum/stack_recipe("alien bed", /obj/structure/bed/abductor, 2, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("alien locker", /obj/structure/closet/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("alien table frame", /obj/structure/table_frame/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \ diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index 6470b5453c5..88d3e5d3643 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -228,7 +228,7 @@ research holder datum. /datum/tech/abductor name = "Alien Technologies Research" - desc = "The study of technologies used by advanced alien race known as Abductors." + desc = "The study of technologies used by the advanced alien race known as Abductors." id = "abductor" rare = 5 level = 0 diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 10e54587abea4b813740b4c5feb95c96998ab21b..1b2cd39b87886e68af17ebc79f29650850ae3f82 100644 GIT binary patch delta 70834 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%0D(A{ zm0b}(dAL`rH9Q&)`2K*XM@zu%z5=lgB5scFdJi#wBWLK~{(WA}Xh^U2jDmquG5h}D zNnd&rz}Ry_HRDwmN))~+1TmS}#}{M}G}K~xm4SOFdQ>UK*ZXYfOpNGtygnvoow&_t zIxi&f=Em!Au^#*M^mNXR>L}H))dLB#J(d-<((37XpUn=bO*!5GE`Ei)_VbmR;M*lp zp7%$#ch`rZWRO5+8)_N%;!l96wpJhDdlmd=p*N&M6ZkK)w{+u4^#XA$JYWom zwz3A|iT|*=hKia@^8>4&){da*49krJm+k#jUBi{_OGk^6ngOc>L2ZNP#X??97Z1AL zLw_#s2S7c^3{=z(Y1QD)zr7LWc+!C0!OzgR^fil`Wd~_Iv;HhzIcv3`rsU)gkd$Ko zH>%QP4t^rwuhjW(66435(REqFGx@b2I(7VAf2}+1K!DGOICq!JpW?beLm{w0kQ#Sa zJQ(W-WM(}&l+Fi#hprTph@BW$bHliR9c)FG_+3^BftAa{a5X-sGm4J=Lo6;3 ztG@dDe)xSXdnBC@Ylj`4D!RCx;>Dlhs@vFQ_I8b?AjvFxk|B{2|)on82N3?r(zn>QYH*UH?T32`wPJIA&b8s;m5cm6t_}#XA z1hy6Hbdvq+eT)BY)i(zyLrjL2Wo|A)#!5XN#urljcZc&>#onU^uah97v4U@_WqioT zb~@Vrk?+8z+R0Q;?`RfLTKN@w%;4$bY?(Ky>(1Ek&qP_2V~_DZ#t*CRWd3)P$wAhd z%k(nOQ8N5E=w96|+P;E#$c=rBlP8mY=_PsQ_@X!B1rSjr5n>T! zY5Cy;CL}sX2vqDAsWyimt~(|x@bEH)r}0`humE0e_)L(06ziu)mA(z=Ha7eRR;-YW z_&k-^T8W(GuW?h`>pgqp5;~$kwwx-Mt@p=M;%r_y*-;aaTcIWCzwjQ{Xj`O`OhjQ7g-5wC8KL9yGp9G5F zVgVf_{tL!l$7rG;9G1$7mp6aa>mJvO{ewx;#2>1CD;rIT(zSuzLpYP+E%W1p_*OI% zC4+0zM2exNMnnB*UIsWwzXckI38oaV^Kjy1fYV!qlK;x>xCm9as0;_pynRxWRouI( zk83mON=?IWX)#jwIu^K|g^H0>DVRviv=zG=gx67!juRSs`BVsaY|o_)eHm~5-Ff>J z2eK;YnZ@C|YTrleLs-+kkg+KA(JeJ7N9fe}Q>}XN)Z}}?z!D8h2Bqr}B;H*B7ZuXa zCH+ih^2ZL@+)f6<5!`KkE3F*6TNpkk2zB_55&wiQ!lQ+*g8lyM6+$ZKNUCZWs(qg$ zxKoNV(F(8|wn;-w{!ngckkg>6lYQp+M}Qhc$$RDBIBG_BgjXnZ`G#AFa@bkO>I!ym zLa1|L32nOa=S|!ai^wsWY6jAUGY?)xhcEEoW$A-w5DXnLAUuti<;si8+mfL_&qcZ5 z{dfwP2YVb4$fMK@gyV5Pu%?I|-phLrGIV_EOT@crcUi&gQ9`!@x17uMICdO~`4&=B zEXZALqoG)OOEg+P(3);f4KMw*w}Nj5o&U)ge^Amn>&duiE~EmkfrGt8i3ddCuK7vT zeKsuVehPQE*$H}D5k;@D7X9wJ`|nJ!C%Kp0@JYMJU(J=DG!(v|Bh)*2<0tEPN(w!( z!JG!-O$ruLxk@OguPDXMx_KRm9>r;i4JBNp#c(eycATgwqUcgp&}7City~bz zwRADtc;zlciPGb3#*j?9Tq3+?XXLmph6>ERkd`6Ct<3<782B2g{01_stY$5B!) z6z8X`2+*Y^ic6J|8gx>WJ0V3t%U};-*=|j28rjmrKh42IJCCntq^`Ymbbb{qZmYhK z3fICnZV$hWIqYc5%N?I->RN)g1;4Z@r0zjri1yBDodmW{E%!J%U$EtZ!BKU0bI)3K ztC(rEjvskdI0>oJ-`h6;o|wn)TOYTf&@{+2SV5KgWH8V@sTQ*tFZF%ls}z-Eq9=#v zKUvcz)fBy%^lS1Wm0HXV#CeJ!;y;-eE>}xi$TDQ&`wQ|;ov{GtgD23h?9)Of-Lvca z*zQRYsj6rEnQw4g5KdNbxVW*9!6JzvVh~pI#A?pB^32>SAS4MWz@fjYC5~>WR|o!a zhkj7xdlrY~L)p6JT&AI3llA7-E6k{H3e9qAPyc3IT%}tpbn@Fm?=@HZRRC6#Piukd zKMZVl-&#_|?6Dvw0Q^A9|XW5!xvR z1GvwxG1`O-f;sD#L|~o4VxPQ%G;aEA+Xd-sjYI6pS#@jA63g{HvD0&RS(hat1Y6gh z?^JYa#Pd?@GY~Z$xo6j(lqFu+&eRygd%tK$mEtb?A?X0@LOK!>DncfKvKr$*%&{P3 zN~S@6kh`&;lJpEgoqCj2xw(yJ7>W@Gwoh&0Go)eV9jiT%msN%$8 zynH{QaxyBcDVL?G5Jn%ICwM z_cx5x00D4zJ0&sG-EzI!x?I22-#Qw)!=7Cgu#@Nev*Z;9IV6$;HQ>pg=9Q%|8K`%l z(T%+)e|e#5O6SG}=L5{UmJU>Eb-6cHpyzF$;3J?Tux@Ea$_nq=A2Cz?6>VI{Vv)uu z#e(DPux)>{-of#EUgW7owVAk(5l^ZX?Z4oi0HgJ9`Zw${#uC!tlO;FhvEcI*cu|-8 zrsrei8PyyUrroh~#asZgyF&o%pgvb|*u#AbOUp_@-y}B+njlFFtxVVZ?}%)GJeq{b(_BHh8oK|mpZxWRBq$l7PBUJkS^!r2 z49i$B))waZLWMqJHsEO+N6J&?g~yB8sv1o^{P)oB{;coE%J1fFYv<}gVMrNR07#E=&scU<{GW7HxX8wLoFYf({Fd&|H?KoZ z5OxxV38izVbOp^NnH0+{!AODcg>+KbG3*Ij3PMoCr@FgO+h2@~YHs}isnRNQ|2V`8 z&V`%1N_qcQZj(1pds!J83!axB<#>SG^YI#?EimxQo3&pN6G(yDKtvSNgGG7AnVMne z09t7J{}?(CWyLhzi;bD}9_tr~Ji7|!lavUc=$75UF}~iAsO~{ZQPjwEpB;YZQMjq; zaD95DWBj91%$UTvy;%R|tXHgbO3JEOe{D-9WX@<^4FBLA_XiQn2AJsZKln$$a|53T zcKZ-6${h>{k}3`Rt;jKy@%vSiH+rh;J2(kyen4r!H&fS-I59om+WR2z2M7oqHN#28 zBkJXP^6z(tjmT(k6V?zuL_mM03=$}L^KDl(?3>s}I3oTZ2Ck9uo!>pQZ(Qv&a<;#e zRQHL4BE;`HTVJkcBIFOZcYH6lVC<)zY}z1$3?dx2mn)ZrX1y5aAA zMS#!Yqe2+PMBEm(@@SwhaIA?&G9ut@us$Z)U6-mMbl%z zCMfFcOBj`3WbgMd_v2?o7~YhX1bnu-#(g7O-{MVQ0YEB@N@fZD`>PaNK@s>o)rA{vYRO`(UoAfqtsjl zZUfrZ8GM)_Fiu%@G_tg~NI*&&vA=KoYyLvyeQsy=`T$u5)y&MyBhdqLh>RI0=p4?6 zUbi#+T5%E^j2H$KRSUvd44j@n?)pHLl#Td1#krGTR=Dc3D&Ez*ii9Q;9lG~;V`){xP=U_e>)I93wBsK0PzOk@j5_ftMd3^gp zd-O)jY3-}c!W@GWWzhjy{F_SsMtRZc)Rt68KV%#OOFH@CL)$i6}*_GcAst&|F!mz1`0}l<}zt<^m|SqKzZ~GLIF62 z*}9guKnNHVstA z!*T2qFFN8(P(T}Sw;}twT;R`FvFWWw(0-^M#@=dgOvZo1R1HfPONArU{#~Oyk4^p; z8(^J19MJHRPRbZ`+T+^J35Btw!p!%|{59Nc8qTYHSJa%1|41ZbS8D*H?#vKkrR)r> z5W*e;YD;lPA5@46%@!gdgK8bS&CK2h+QxB|dh;3uoj&w(aD561ltz6MMEBG1$QF8p zb>SS(kkUiT)RLG|>%W2APNMKx1X+WI5(#4}YX!F@2CaO&ZPb@NlX&he2^Xzo`S&UP zBL?E+@B3*2b&JY^fmS-UH{ngh88_s((!-t+^Y;QBF3#t))b{n8kWECfl% z@@~n+amv;o=?`=F)+5N(cc-=l`-j>bRle7bBU!?vcC#>K2!Yer{_644ry%w}4~SXC z%&R8P%11j&wYBE`C&=M>Y;d^R-nz673b8@1-<%T};?aI>+vQorx}YizVsW%^bDg28 zhDa8Lp3I+_fy3K+J9|Dr%$Phex{}h{M0|`k(_;$&s z8mDuGcIl#YlATGpMG%8NB!@lW1%O+G)z%67N6|+Os(fh4JzwSYbqe0>XjkQ}fVFrV z#On?K&Q8GmOHrak@aW5rb5oygwE%`gk_x=`QU86ZvP(s3oG|2#{@80YQ;-3X(bG#m zxvq!ZP?w?^gP)%C&Dk``fG47+xn)0_k`army18yrabdq}&!$i8vi}#|o*vruLHMxz zCFB8QQLTCRKX*ht?1Bx6^FrxlQpq74yWZsD;>b_Uo0QQ47x&*a(tU^lhNui*$`JYo zQLTFsNRlm-cCc01cX2suhp3)oOd*WX;U+x?iUWZPn5LL>o!>|DwjbFC2nUN`dR{2u ztH+P@^toPK&?I&h%^`MpD)cdhDxN8=JZV5iXD+H*(ceET-D&I6x)l&alJsK$)_#WM$BjBvvC&CSsrORRF)z=@8THd zP(~CYdjstSWCu*e|La(eZTjKvM_Yov(EyFNnhj9gK!npQQmL460R|+zWIt{39ls`6 z-#kCxSw-~v%gH^C>HkR-lmkwl3Vcyvr#;|;2x26Kb z1#k7`0F@y~fHWdb)MfD^5`pc^N}o``(z8+M2{$=e#O|Kf|Ic%f%6zc#P;eGnWWrEQ zD(OhUd1RkdHS?@(U##F^Io9`P?CcrLb~ilppuCTC6t_Z`m6jfJY~`Hi^{wkd0>GunJMe7=b_(fqxF$3J-7QA5IkDxD1^@J4Sru zwax!%35F4R00IRPu%RFl$S&}Jz(Ye|&v{hnFI24kz1W*7s;D@gSxq_8>-gTC5*0hb z+Vvu=)C5dH6te1WLz0qg6q9c+N(j+^E~afNrOCxhvS&Tv{;}1>uzIiA*w8*O5-FEb zK>JAUH{uOy9m5BWX;GLpiA#z!oI`cxOxK^x#>WE{?pCE90hM?OAIRbln)XXO-}&XC zXwjG&?syx4+M9rhn?bfRe`V;BU_Oa(F& z=vG4znrxw-H14y_R=^0ebti>XLV+BSa6Ch?VOQir;FC3bAlt8eORs z>mYGb$|`4by#~raDoDY@W~DKvkWxvHKs`?)US-8sNkUZ~)ddxFMnO(8xgk zTKyZsZqmTwvY17Cl0QBTBXygnm96N~;krnwl31**I;=*HWa5oZD-IT9;c1A02f}f} ztcGefjft}opW*ffew_2`Vae*>i%4!htwpvT z6M^qU0(MJK`oaNKjOZg743-L$l3q<04oN{n+cw1HEnP5U)11{dl6aD))$qEG&B5#n z1LM!l;*+rywT-uu^oeSpzyPCU^o96b`H}^4pzqGg5!Ey6Ekb*eAl2ZG!-a7u1+4o5 z0G%d(C%BEkNwXAex&PwJzUT%3T0Y|WHWw?u)lQJ8yYpUq;ksNM zx871m_C^Iu#@ItyyQ0P_74`^mlL>@QI)r~e!W*&}Q>5I2!I+UC?q={|u~_QY&Y`o{ev=gwbwMvw$>1b0wlYe(XFcKK3FoQY53+h zI8gyS#}iSkOG&h5&()P<%~CO(mj6`u`yVh4=frdaQ=kSfG(chg^$JtR`PFmk|1U{9 z@yVI7l$x_Sjb|o3rQ?Qwhz{rFJ3v2i04cQSivdV>MX{t#BSW0pYR5_#3hdIJBSR`` zi4E+v9A!0YLn`z@7CWBX5|Yoi-pJp|%P{y{A>gC#1P!=pGyE?mZ#TikMgw!>0`7A5 z)7k3v9v`t;C4Y5#c~|3j@sx0Is4GNs#PJ?9RNW;iVFkAKZmHeX^ezDnsU-;vPFBPx zZSC(Gf11_EktZi0Ely6;6s3%RP*f25U|;P~j?guauk!MC(SLn=@M7^Nm>OM+1nUlf z>JB}{{18$ci9zw=oi|N`wI>9K%gXYOahSg;C{b8O?E2N*=2X5SgEgskdoQK3yI%AX z`%?N}viF>J9|IjNd%$34=*Cl}0N2zo>;^dQT$)`)stB==5`ge(YL1;lFgs( z`7~qeI`3y_o@1Vger-LQPSo5R5_27+Z~W!M9$z+he&+!6axudR{=?U0uSXDaQ#p&2 zK!09`TYCQizP@G(tm^b?*;n*y9lm&b6II})mZ`9{kwLmx(zu3$`P#D zalM`3wm+Drt^NRiVE+Mw;-L1jqCU}s0G50i{s@fylk8yb0=K0_`Y&g{k>7#x-;%Lx znl=*%JK1Y?vfZ$ugcZE9vYX7QLu-{JTW&lbtT1@G>_JE92x?$rN7S_xlr?@|E8 z#D8(6A0|JQ*mvqXHGJ`@)qD%G(n4A9FA##7M%(8q{tork2UzLPf&FN0b9@lJ-+)Wz z@35|MKDdoHnQDthc8 zWZHxJn0jAu5$oNW>X#@h=68F)sP;Lu&Qw6_T=?S-+-=8Bw3C{o6gaX$gH84RNpSf$VJa>C8(z{&FUD;@ z0HF|a!z3v^x^`ey7R%yrAh|l6f1!NODwsC)AGLp(kTYBwJ57tx1T*~+K@QJK6 z1(YNt2IjAm4iEZkjGN2yoQS%AjcUU=(ac*!kVNJPa4JgecDmO(XGKW{?3z~LE7WsU zPR76$;<#xKnPZ#}Vi!ypXtUEn9Oxee!}9zS`uQ3HF{nAbf6FKIq~859TS5R?{7gwZ zclE<4Zqh zlEpTsCz8HI?^H5kC|kwCn42YD*yTm3TxHIe=4J5HP;FhV{!mb7HHkv2+&fVFk~tkD z;L%-6p`&RTIYVkXN`Y6n$+QufifO<64=Mho$ma!#5OhQBhb&>wv>} zLhOR+VX@77&Tsm1w%vneA_qxlhszfB95(#)uHh-pa^}_?a@B!@>|9jG5Wsu06H*$q z0GUNG*7x@J-+6aa@4EaE(fSnrq8Z&7f$svDb?9;Nc<&KQt4ot;g0!ZyP%VmWpsv30 zloQ+8gp8UxHa$JPEBitW!pX^51-yILol6RlLD#`^CuNr$cj0hhF?;FIaiX^W`M0gD zo#|hlR2`D)>T0T2w5sjz?TX4nKJToVVCHX_Ar+}=An$q+6k_u_IH+2To7Lsn$dmDS z^QE>ZivLo5jq83>SB6qj68wQ!DV^tc@5(Aps7xR&YQ*(nD6b%{-vd(gb6(&Hgr<=< z1nYWa2U>dyortAC^0}jU7ekJwigp$mXOeCwG0I1=c#1U-^Akuf2^{Dq2y|}bgxt|JtOd;%n!!On4I(848+aB!|(^h}pV)t@0r<7@Q zY%E-`>}1rASBHhfcxCCx15ovG=f@fC4?)M>zaqe-dfk3>wd7Jw8i2U6#>4KNUvliV z_LbU;72nuqLtI`V4!VB`y^slUw9dI;p#nSwe-Rv^akH*dDYI`0385F8bkj5GB2P)tO41jd_eZ=52%_bb zr9Jv+-0Hl9N}mJ|e=TovYsQ19exr&7ZJp+~>q>lCZr;l0!;ZuJGsxugcxQ(mvDnd7o)%=Ane;Smzy7Z2lpZ!gCcTv&JwK7!fE zNV^KzUXYaStwRJUsYfD6t&~JPuQVoyCfJxNdTL35K|$YwdXd z1BODsN-CtvJ_lyF1iir`s`8x!BnhszUL(Nte`$ApB0|rZ_d46;912>!7QDhw+ZS|D#E4ZEdw5qpuRXxVT6R2ikP!ih-gf z06W(=*IPuwTH8R8;Q7E>W8=Z@UivKY3A-sK9PqWKTA5DTxgDRfa!4i>uTfHpcF9Gm zO_Ram9G;*h4pHAL!C7~^+!N$Z%Z8hmj42gj6}xHD7Z$wXHB8dT+Sj}Lu`@!~{^JdA zD3)O{fgH02sfqbZqDUkZ)B2EVORP2%U^t_JACOZ?wqR9hupdl45fu6}<$nS{Za-P^ z?L4`@UxC((SY-99?%;}2msAN?W;XiI9)km48u4|mUUA=u9~J6M6b`^WA4-`Qvun3M zc>c^;C@Xb1W!}&s#o=6mgaTG>&eeXqxw!(Is?is^jTlu$9Hy2Y;8guZ|>oE%WjH2e2B`S}PmOZfTdu9A^NPn5hl`blx z=)RKUcRh0733I$`xmF7c!NQasITPEHUWEUm~eSZ?$NDzcu9{ z`&d-TNIIb1*0}7Kz+^3_Gg_ehYoUUd_SqAeAuJjKOjR9?U$@E0Omm;2C7$s+tl|U* zP7)ZNGw)Oy5QUN!4@8%ppN9Yy-m70jvDdJE zJD_<$8lk8iV4tO)m6HX}dA@;}D&0|{3_PLaSVkh*FuN1(gM}QosGs~%Hz~_KsEI%} zN1G{dKZGJkT0M@QHx62|6#P*lV|V)eOkoK_r(BByPj@JnDzaAK!nPqM>!7-901It#JPuxazOPLHS0@7P1w-n-9FLr=uE zJiDX9BSWuLHgD?t^xmFF!&0J<2y;2rS)Cj7xN0vN{VW=w)7+`Oe_n6NaKb}(u)5ZJBL?|yOBU*| zzI^#7b8{z?UsVJ|E-vcfQID}<*%gugX4P+G5K+uirNNZ+T2to5VoFlDXjwBm8qkEQ zV|?(-Zy>=zM-3i-hPpI=axHr+*j~&2F+YL9c+VgZ{OPB|T_rkG?n?OH70?`64%EQ; zpWY7kWqX~y%0V!+W}SU=GHSb00ow?4GPH^e35rtQRs)u)MKF8M(ohLT<#)t86&J{= z7SE~iel`Mb%V0MI-+Ngm_9ScVn9yb&Me9ZFpRs~}YrCD~1sTEvtaGnf4GVsr%n~Oj zmh5`otHn>eKEqyi_nB`fd!jw=RYQR7dU_*p{KtLUj8!ozxIgX^)j0#f&g?z`Bf~^} zJ;eXX(+ddwJGsO|?Tv49`PXDu|M+wz()_&V$@CBx%!t}`XXN)mNA#*0`r2f8c;Sr3d!dKWST|1BeQJ5}A6&t0 zaCU&S`Z6|=vQ^0G<(Ya`id?|kUv>x`iyFl5hE9rG0v-vUw^SECBClS(+O1m*rL(`g z@AQj)WfD*1*SRDc#}vB?|KM{k+aJflq>OjmB0}^jn4N1&1_M7G+0Cex!#z!#&3gVQ zuiQ28?2lhEn_>D{{7=OcNsKyo^sFcM6&Ejos}(sPW$;4m29pT+>vsx@Zj}ZMq}wt^ z=x>qErkP>crsBE31LCuTS}$;x(M&dymHh%9_CsR~*+^duX}@}%)O3G8@$ro86NYf_ zU^w&xeE0ob_}h`GZ5Q~ydo+Hc>(#Fh+bl(!T9p}s*vz`kF5HbiD?~!aqDv#%@B?E& zqA}}*c4e-X-9)M)IaL#iE9ozX6s4~h&Eg%lc6Q_n{(t9*yUdpwT{kxlHiYRu(d@1kC=7g37`#9RpHqzRtra3*;CK56gwhlFWNj9twD-54d)^Mv z0_qEh&3KhC$)NrXtPV)wgsqA(LIoe#P|#FUlLS4KVhU^D6nF3#PK|_}f;L9Ub)9rK3jEswD`689RZL{>FfGYp(oDze&4$AgEdEWUVTDaldYaBP4s})RY*?=E)7S!6~ zaylr;T6`!?BMVBPf-A53e98!=D2q9}*JyAnlyHjccda$Z zoFLdC?LcmIwLgYRX7!u~lbT92lY{sE`qfh_--nY8(Lb_7Kk@v(-0qGfC2FzBzApRU z)AGvsEO}=0h5i}Pj8~i)#~>aU(8ykf6eTN3f2MC>z+x9C#V|mMx)DfBO3K;!tA|>H zE&s=_FS&`G$PC2$`}@HGCRW(=T5nolFOi=s&!g(PDQJgXEt1Lfz2oKje^>KRg0Qch_kz36PSP`Ke>MQUcIoKmPC zQj-Cjb4ydHmg}#DFT*JjxuXMAbr6cTUf=%0ka5@;zoR_xTzb6pnjz3@cD=IaKFgu#ps<9}?SW0p^qcc< zZ5^QP5Q0lfIfgR# z2OZhuYK!w{!+~7vqD?6)K8$l9*R0xbIyy}U_zI#flrqCcyd;IN@?#Zv;cEut;siW8 z>KafD0MQa{JK{}X+wd(%xn{eK|K>j`RbkUp@WoGVz+HLbuoUcP?3a1wO06E{TYNNC z!@I(0dP-a9_i5zICvXH@o7lmkCYZUX$?U~l-Wz`sZvt(mnV&sD(lmL^40r-iDhVL3 zYoqCR!PgnTyDRpNB>CHT{8T>nSn*116{n@u?qlJ!XGoiTw?msaNe}X3+H&(63HVse zvXa3~jR)+Wc9go_malW9rC+^4-7JnA_g5mbVUHb37Ua@0sz`mc^{vv&^eqE3BVhu) zF~J2=0txfM`LqTb%Z7sN_F;j$yE_j+Rf-`Y&h+}Vv1;GmEGM!?tpj8EQTgs%1wGU= zLd@?I<2@86Ho{42Aq|ho681W{%;9t^B|d6XYq0l8jB4~DJHA0SKTT~`CkXwA@#h7P zYnmU@x{k=88DvXVdM7#AgHiHoRBVAy_C4wCw{LdaO}>@zxN*S3D*S;hwxe_7)`?2tBpt`*!9j;8}rLxGyC(| zh6cWOva-E7adA&|oj!91`E~0|@3*zJfrTU5-ewvZ8BrxMc>Yb3-tXMoKf6+ zfCL=2gX?CyE@FNMtp6~>MQB}G^ZBJFB4hXF6{(s(0|Lg_rTn5o*Vn-lDa>!{^pRDY{Fz&RdYXDSZ*vSbE!q!Iu_ z4usBp?x1O+RP**0^!GRSWgD0b9DR0%*3JKKeFAP9Bo66>s+gKy^a^rt1gaHF6QJUt zha5VnT76*{**N`{!atkCLZX0p#wj2W`TEPvL%`6`kk?M}w{5%p?Oxx& zP-P*}P6|RRw%I=`8A6qCI6P7gX6`HTJ~=cks=m&^O;uf83IGt&CFJzl%<7vibX*eX zg&}?t6Br|A)g}`~6WbXR#L+LKt;XcrD=K2_QrOHv{+)cfXyW;I|5lQuQS-s8!cz}- z)rMVK$7Xa>Bbz>@Z^9nOYX%!GB~-qdK^b#QrCyk$)#|TDf8tyU<$BQ)_+4o*YkHZ_ zSy(ltNq3mozajkatT#u=jNuyx_{4dUei2S=4iKNwnzqQ#w;KZ>a0D0a+3(lJWzmUz z7g<0V;wLx!hoTM-E%NIxW<8`;b#W3orPg4-M_=F8L(;CarbW)DTs0E$6od?L}KHBQ3Fwfjr zDD??lAc^Kj9U+{tRQp&Knb9B9_8#XrWUsMQIuw z9UpD>FpG`gzFs3yM~~89g#`2K=EGI{w3N5W{}2=BF17sl<*7aL@N%VKg4( zOz`X3q}2uutoRBmG$tpLu=M?2cK7Xx zfyIl>YkYfKyAaI}PKcmOk1IBVjU3OHi}p9t`CSNm{y{Q(!RS)&%2g;lE^40G!G{M9z<34dgdoL#0qgtX2AVl$zV=78Ta$&NW z8RSbs_9wl`k}y%Mt*ynIAT|5XLo6~)LS}pY@8dqE2N@?|5KY25`$93jWIp;eH8o)p z20@>&nwpxl{kNoRYHDhLAhD~dsp0bF%d+#xq~`0c+e1lcGwwu?HskK^@I{$_9fw_0 zr(p}m0Sn+4L8npSbasM}xh2q%almv2Ew}Huh_rl5alm|t81vNp{>*7Kb4$RTnT@ig zIAFT@3o?#-g#Z8wwMj%lR48x{aPIs$1f>d{xs>7lZiooR8V}i@Y-Seul92sLZ=xhj z6t`^M3JGF{W&e3dgyi*oqPCWQ4-d<^AG5vw_i-Q7hbbXoFh;`C2}9v_yLsb{Hvq;F zC6mdNmi%~HrpuQv<955F{uBFd#J#@Al*h1Z%>PO{jzl^^RwFfFi6CjfbX0_8j>(B% z&dDNw!5lka0|*4bQnAc_v-N6}nef0XU;n7Cu8xBT5AxOT{N0z*JwEz>({FtwW?S8AG5vw z_i-Q7i*W?3q@;vv*RExMBy-6JObSCG#|eJt&YcP6S5{W0ESq#rq{%WeZQs7=sJo?= z%g3E3`H{JLM$nnZ`fvq3~q)W~Zxg+zI6u-Ry`$6xa_9r6<)RsR=75l<+%?8wLn z8nrsOQ zda|^1&XLe9ycuF#X`m%mGZeB$~%=G+L-^_ThJdY%bAOB#U+#JLh_@F ztS5xxfXxdsNsZBjsi2T9*Bx31jFfG83bSR5WlB|cI$fA8W^}jjV6j>VgiP(J z#cU=&^zHS3d6-wM!si*GV4fMZvJHh83<_Aez`~NpcjN84$^44NtaQ3L@9}b@s~7XC z8XmUU7;JCFP_{5U{x{j}l$6h>J8v%QH>@LYy9>MZ zAS%@8hWl8&VkrlI*NDOV2!p*2Fh3O4PJuvxhWdJcvQ55fYikizi51iyj|YuL6aG#H zsUmW=A~6~a3=PXOck6VzaFEC0B-d=&x|L%`vrEDb9}c$ZK#T@F2vL0akw-wKA`l1! z;}H>@1OPtFIvGzF!TN65x;5%wqrt#{+sz{zH*&Hu@_x+r`i~)A{pBFpxykxpECHOT z{A5UfBtISjl-vJxIvqnpLn-@yY~GRmZ!+?wGRPT!63Nd6#J$5-t2Lt(T#Cb$i;#T8 zy1Ke3DJh|=tBcCY%JA>W=ADioTBiKpVi8#vDL+XY`Ooiuh;ZA5Uah3@L_3aA6#>5= zjao@yWSFimz5qa_P~Zy$5JVBBQi)=8lzfGMA7^VD0I@@hZ%B`C&`o=*8$!VcRT>Q^ zPB??-tAeEA?Ad09OO~QRq~-7bfqZ0V20POL4Gl!&r9Cu5Cx?V zVjdXavrj@D_fSKz;Tos$j6ArL@Ns!`|V@yW@PXp83J&(n|FY`3p} zx0jZd7IJ}nxd#W6o~6_27#lTNs-{> z8+req*}a>0_62X+?5_Wqw?(}A%SEbxJ}9^UO;mm=B$6LV0MqIJk$oRX+5cnPf3ot^ z9e?7<-(a(4d^dn}5!VD+Utgaw4VVOn!x1JTsm@CltzJ$f`*fn+@87>)_POaIksn&i z`Id15TFdzs;f)n_*s;W5O(lS21zdxK-SX7i!TNZ0_kfU9zs;Z);CA%bltfeK`#uB6n zz&$W9u5Gff37sqi;rOwTX%WWV{|&Yf`IznXC;IuH2vYUIRQ)er`)3lF?*EaHLx5m> z`%gyxM8=$?uh{?!=KAROsc~ItwE2z{$zX5#ev-O^Gzns zx3t841CLCTlV9urC};0TV}5?lkg#RDcSrpjTmO@djm&KFAwdut>P7L9jT_Ut|FgaR z=|avmQz>5#rb@nlAPBPhe=dwaiR5PsaW!C>HbFwrtSQF{Um{ROqcMD(so&|6v)KT% z*-Rkx_R?{8kOvo((SEZX4+5him@Q^pj-c6a#3u%ioh}BwJ_f!1@Ua0H81-SXTIjtK z+)HxAFJhTH50|TpVU!4B0Bx}a@13#bq>ui)9i02LfmQ#1`Rh2Eo7q_R6@ItxUl7)= zL8aGIUA>l*?;k)_{0O4*3pT9ZK+~xv+^$Z13MCuXZ=m7e0Ti}J7!}*FZM1Rjv(IpM z-9n+(uzvjpPBk^r@8}>G>!S=juOJrefLK2el3AhGq&{_~J&2*Sz6&@&c7vim>V z>n|54BYu~am8ErUruyGRkqP-y-_Mr($TFlm21d%yCWJ_$weiu7qU0z(M|_sfYZnj- zD<&mC?7Kl}<#M`(H>s(qVgLU9NwrSp3(Kc;>xj00*0y_SV95Xk#5FZv!fZAN_k|2$ zI*va&@D>22i&j!uHjlGso6#8yQK)q+sd#|qv&{hLO=cE_(k0Yv+ezc`-^xlCfQM`T zkP}Bg1VCpjq9gF2h8}x9KQDQ&Uq`pY{I_p)LobyrRz_00000NkvXXu0mjflVxXw delta 69733 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∋Vp7`|}<~|N=VPt& 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 JPDHLkV1lYo10?_e From 4df29182926cda50d8b4211f8a7da783a99ab329 Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Sat, 12 Mar 2016 17:53:54 +0000 Subject: [PATCH 75/77] Automatic changelog generation for PR #16042 --- html/changelogs/AutoChangeLog-pr-16042.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-16042.yml diff --git a/html/changelogs/AutoChangeLog-pr-16042.yml b/html/changelogs/AutoChangeLog-pr-16042.yml new file mode 100644 index 00000000000..a51bd7ef0db --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-16042.yml @@ -0,0 +1,4 @@ +author: Jordie0608 +delete-after: True +changes: + - rscadd: "Show Server Revision will now tell you if a PR is test merged currently." From 8a2680f14f076af42c3d7c3158654233cb6e7d1c Mon Sep 17 00:00:00 2001 From: sybil-tgstation13 Date: Sat, 12 Mar 2016 18:14:33 +0000 Subject: [PATCH 76/77] Automatic changelog compile --- html/changelog.html | 28 ++++++++++++++++++++++ html/changelogs/.all_changelog.yml | 22 +++++++++++++++++ html/changelogs/AutoChangeLog-pr-15819.yml | 7 ------ html/changelogs/AutoChangeLog-pr-15825.yml | 4 ---- html/changelogs/AutoChangeLog-pr-16007.yml | 4 ---- html/changelogs/AutoChangeLog-pr-16018.yml | 5 ---- html/changelogs/AutoChangeLog-pr-16020.yml | 5 ---- html/changelogs/AutoChangeLog-pr-16042.yml | 4 ---- 8 files changed, 50 insertions(+), 29 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-15819.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-15825.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-16007.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-16018.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-16020.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-16042.yml diff --git a/html/changelog.html b/html/changelog.html index 9c6ba8962bd..bc185ede4db 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -55,6 +55,34 @@ -->
      +

      12 March 2016

      +

      Joan updated:

      +
        +
      • Blobbernauts and blob spores can now move near blob tiles in no gravity.
      • +
      • Boiling Oil does slightly more damage and takes slightly less damage when extinguished.
      • +
      • Flammable Goo now applies firestacks to targets, but does not ignite them.
      • +
      +

      Jordie0608 updated:

      +
        +
      • Show Server Revision will now tell you if a PR is test merged currently.
      • +
      +

      PKPenguin321 updated:

      +
        +
      • Added reinforced bolas. They do a very short stun in addition to normal functions, and take twice as long to break out of when compared to regular bolas.
      • +
      • The traitor's Throwing Star Box has been made into the Throwing Weapons Box. It now contains two reinforced bolas in addition to its old contents. It also costs 5 TCs, down from 6.
      • +
      +

      tkdrg updated:

      +
        +
      • The detective's revolver now takes three full seconds to reload.
      • +
      +

      xxalpha updated:

      +
        +
      • Detective can be a Traitor/Double Agent.
      • +
      • Removed Detective's access to security lockers and secbots.
      • +
      • Removed bowman's headset from Detective's locker.
      • +
      • Box Brig Security Office and Locker Room require a higher access level (Security Officer level).
      • +
      +

      10 March 2016

      Joan updated:

        diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 31b3cae5234..ceaf44d068c 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -3883,3 +3883,25 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. the tesla. - experiment: Electromagnetic Web takes full brute damage, lasers will now one-hit normal blobs, and the death EMP is smaller. +2016-03-12: + Joan: + - bugfix: Blobbernauts and blob spores can now move near blob tiles in no gravity. + - tweak: Boiling Oil does slightly more damage and takes slightly less damage when + extinguished. + - rscadd: Flammable Goo now applies firestacks to targets, but does not ignite them. + Jordie0608: + - rscadd: Show Server Revision will now tell you if a PR is test merged currently. + PKPenguin321: + - rscadd: Added reinforced bolas. They do a very short stun in addition to normal + functions, and take twice as long to break out of when compared to regular bolas. + - tweak: The traitor's Throwing Star Box has been made into the Throwing Weapons + Box. It now contains two reinforced bolas in addition to its old contents. It + also costs 5 TCs, down from 6. + tkdrg: + - tweak: The detective's revolver now takes three full seconds to reload. + xxalpha: + - rscadd: Detective can be a Traitor/Double Agent. + - tweak: Removed Detective's access to security lockers and secbots. + - tweak: Removed bowman's headset from Detective's locker. + - tweak: Box Brig Security Office and Locker Room require a higher access level + (Security Officer level). diff --git a/html/changelogs/AutoChangeLog-pr-15819.yml b/html/changelogs/AutoChangeLog-pr-15819.yml deleted file mode 100644 index c422b5c347f..00000000000 --- a/html/changelogs/AutoChangeLog-pr-15819.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: xxalpha -delete-after: True -changes: - - rscadd: "Detective can be a Traitor/Double Agent." - - tweak: "Removed Detective's access to security lockers and secbots." - - tweak: "Removed bowman's headset from Detective's locker." - - tweak: "Box Brig Security Office and Locker Room require a higher access level (Security Officer level)." diff --git a/html/changelogs/AutoChangeLog-pr-15825.yml b/html/changelogs/AutoChangeLog-pr-15825.yml deleted file mode 100644 index 0ecb6337e1a..00000000000 --- a/html/changelogs/AutoChangeLog-pr-15825.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: tkdrg -delete-after: True -changes: - - tweak: "The detective's revolver now takes three full seconds to reload." diff --git a/html/changelogs/AutoChangeLog-pr-16007.yml b/html/changelogs/AutoChangeLog-pr-16007.yml deleted file mode 100644 index 1785b623fb5..00000000000 --- a/html/changelogs/AutoChangeLog-pr-16007.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Joan -delete-after: True -changes: - - bugfix: "Blobbernauts and blob spores can now move near blob tiles in no gravity." diff --git a/html/changelogs/AutoChangeLog-pr-16018.yml b/html/changelogs/AutoChangeLog-pr-16018.yml deleted file mode 100644 index d599f680fbd..00000000000 --- a/html/changelogs/AutoChangeLog-pr-16018.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: PKPenguin321 -delete-after: True -changes: - - rscadd: "Added reinforced bolas. They do a very short stun in addition to normal functions, and take twice as long to break out of when compared to regular bolas." - - tweak: "The traitor's Throwing Star Box has been made into the Throwing Weapons Box. It now contains two reinforced bolas in addition to its old contents. It also costs 5 TCs, down from 6." diff --git a/html/changelogs/AutoChangeLog-pr-16020.yml b/html/changelogs/AutoChangeLog-pr-16020.yml deleted file mode 100644 index 58584ff48dd..00000000000 --- a/html/changelogs/AutoChangeLog-pr-16020.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: Joan -delete-after: True -changes: - - tweak: "Boiling Oil does slightly more damage and takes slightly less damage when extinguished." - - rscadd: "Flammable Goo now applies firestacks to targets, but does not ignite them." diff --git a/html/changelogs/AutoChangeLog-pr-16042.yml b/html/changelogs/AutoChangeLog-pr-16042.yml deleted file mode 100644 index a51bd7ef0db..00000000000 --- a/html/changelogs/AutoChangeLog-pr-16042.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Jordie0608 -delete-after: True -changes: - - rscadd: "Show Server Revision will now tell you if a PR is test merged currently." From 0df8bf8a4b94180b368461de5beb06842d1c9d0b Mon Sep 17 00:00:00 2001 From: tgstation-server Date: Sat, 12 Mar 2016 20:17:58 +0000 Subject: [PATCH 77/77] Automatic changelog generation for PR #15999 --- html/changelogs/AutoChangeLog-pr-15999.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-15999.yml diff --git a/html/changelogs/AutoChangeLog-pr-15999.yml b/html/changelogs/AutoChangeLog-pr-15999.yml new file mode 100644 index 00000000000..274ff5a3395 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-15999.yml @@ -0,0 +1,8 @@ +author: Joan +delete-after: True +changes: + - rscdel: "Blob gamemode blobs will no longer burst from people." + - rscadd: "Instead, the blob gamemode spawns overminds, which can place their blob core underneath them in an unobserved area." + - rscadd: "The overminds can, until they have placed a blob core, move to any non-space, non-shuttle tile." + - rscadd: "If the overminds fail to place a blob core within a time limit, it will be automatically placed for them at a random blob spawnpoint." + - tweak: "The time before the overmind automatically places the core is slightly lower than the previous average time it'd take a blob to burst."
Blob
Progress: [blobs_legit.len]/[mode.blobwincount]