From aac8f9ebc8ef3caeb8eab29f6009b7c90358e040 Mon Sep 17 00:00:00 2001 From: CIB Date: Sat, 7 Jul 2012 17:57:05 +0300 Subject: [PATCH 01/15] Fixed an issue where laws would not properly be added if they were too high of a number. --- code/datums/ai_laws.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/datums/ai_laws.dm b/code/datums/ai_laws.dm index abc41257458..5bb04339ba3 100644 --- a/code/datums/ai_laws.dm +++ b/code/datums/ai_laws.dm @@ -1,4 +1,3 @@ - /datum/ai_laws var/name = "Unknown Laws" var/randomly_selectable = 0 @@ -93,9 +92,9 @@ src.inherent = list() /datum/ai_laws/proc/add_supplied_law(var/number, var/law) -// while (src.supplied.len < number + 1) -// src.supplied += "" -//Infinite loop + // This is not an infinite loop, don't be an idiot Sky + while (src.supplied.len < number + 1) + src.supplied += "" src.supplied[number + 1] = law From 7efa3b38fe5f2255f41509dabaa2c1a0cc7a7c6f Mon Sep 17 00:00:00 2001 From: CIB Date: Sun, 8 Jul 2012 00:13:26 +0300 Subject: [PATCH 02/15] Automatic votes default to "none" now, but I added some extra info to the announcement. --- code/game/vote.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/vote.dm b/code/game/vote.dm index 4ec854055f6..a798a3e5f04 100644 --- a/code/game/vote.dm +++ b/code/game/vote.dm @@ -466,7 +466,8 @@ proc/automatic_crew_shuttle_vote() vote.endvote() world << "\red*** An *automatic* vote to call the crew transfer shuttle has been initiated." - world << "\red You have [vote.timetext(config.vote_period)] to vote. Note that your vote defaults to *yes*." + world << "\red You have [vote.timetext(config.vote_period)] to vote." + world << "\red*** Please make sure to only vote 'no' if you yourself are currently enjoying the round. If you find the round to have gone stale, you should always vote 'yes', regardless of how others are feeling about the round." log_vote("Automatic vote to call the crew transfer shuttle.") @@ -475,6 +476,6 @@ proc/automatic_crew_shuttle_vote() if( !CM.is_player_active() ) CM.client.vote = "none" else - CM.client.vote = "restart" + CM.client.vote = "none" return \ No newline at end of file From c1711f41ee5dbd4dd0e78c906a9339e65cc78ff5 Mon Sep 17 00:00:00 2001 From: Mloc Date: Sun, 8 Jul 2012 00:11:19 +0200 Subject: [PATCH 03/15] Removed Asanadas's custom items by his request. --- config/custom_items.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/config/custom_items.txt b/config/custom_items.txt index 507ac4fd99d..2e32aedef1e 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -1,4 +1,3 @@ -asanadas: Book Berner: /obj/item/clothing/under/chameleon/psyche, /obj/item/clothing/glasses/meson/fluff/book_berner_1 atomicdog92: Seth Sealis: /obj/item/clothing/suit/storage/det_suit/fluff/leatherjack botanistpower: Walter Brooks: /obj/item/clothing/gloves/fluff/walter_brooks_1 chinsky: Victor Kaminski: /obj/item/fluff/victor_kaminsky_1 From c968343d6fe5269469f26fde0e1dab67e17062f7 Mon Sep 17 00:00:00 2001 From: Uristqwerty Date: Sat, 7 Jul 2012 23:16:40 -0400 Subject: [PATCH 04/15] Infinite loop fix for splitting on null --- code/defines/procs/helpers.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/defines/procs/helpers.dm b/code/defines/procs/helpers.dm index 341d5944b5a..fa7b71f4735 100644 --- a/code/defines/procs/helpers.dm +++ b/code/defines/procs/helpers.dm @@ -1753,6 +1753,9 @@ proc/oview_or_orange(distance = world.view , center = usr , type) return /proc/stringsplit(txt, character) + if(length(character) < 1) //Do not infinite loop when splitting on "" or null + return list(txt) + var/cur_text = txt var/last_found = 1 var/found_char = findtext(cur_text,character) From 4100df644dd88ee8de65fd2ef198ae460887035e Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Sun, 8 Jul 2012 20:23:07 +1000 Subject: [PATCH 05/15] crystals shouldn't spam as much Signed-off-by: caelaislinn --- .../research/xenoarchaeology/artifact_archaeo.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/research/xenoarchaeology/artifact_archaeo.dm b/code/modules/research/xenoarchaeology/artifact_archaeo.dm index cc03ad685d6..3a4bc2934a0 100644 --- a/code/modules/research/xenoarchaeology/artifact_archaeo.dm +++ b/code/modules/research/xenoarchaeology/artifact_archaeo.dm @@ -138,12 +138,12 @@ for(var/Xa = 1,Xa 20 + rand(10,20)) + words.Remove(words[1]) + if(!words["[lowertext(seperate[Xa])]"]) words["[lowertext(seperate[Xa])]"] = list() - var/list/w = words["[lowertext(seperate[Xa])]"] + var/list/w = words["[lowertext(seperate[Xa])]"] + if(w) w.Add("[lowertext(seperate[next])]") //world << "Adding [lowertext(seperate[next])] to [lowertext(seperate[Xa])]" @@ -167,7 +167,7 @@ if(!word) text = "[pick(words)]" else - text = pick(stringsplit(word)) + text = pick(stringsplit(word, " ")) if(lentext(text)==1) text=uppertext(text) else From 089c1db537732be0056c2ff29a668a3c107b9b56 Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Sun, 8 Jul 2012 20:23:23 +1000 Subject: [PATCH 06/15] fixed some area issues with the research outpost Signed-off-by: caelaislinn --- code/defines/area/Space Station 13 areas.dm | 6 +- maps/tgstation.2.0.8.dmm | 830 ++++++++++---------- 2 files changed, 416 insertions(+), 420 deletions(-) diff --git a/code/defines/area/Space Station 13 areas.dm b/code/defines/area/Space Station 13 areas.dm index 7b8c20e33d2..3de45c7d960 100755 --- a/code/defines/area/Space Station 13 areas.dm +++ b/code/defines/area/Space Station 13 areas.dm @@ -1278,14 +1278,10 @@ proc/process_ghost_teleport_locs() //Anomaly -/area/anomaly +/area/anomaly/lab name = "Anomaly Lab" icon_state = "anomaly" -/area/anomaly/shuttledock - name = "Research Shuttle Dock" - icon_state = "anomaly" - /area/anomaly/outpost name = "Research Outpost" icon_state = "anomaly" diff --git a/maps/tgstation.2.0.8.dmm b/maps/tgstation.2.0.8.dmm index 61eaa7dce6a..60c6ac8cd8f 100755 --- a/maps/tgstation.2.0.8.dmm +++ b/maps/tgstation.2.0.8.dmm @@ -3200,7 +3200,7 @@ "bjB" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) "bjC" = (/obj/effect/decal/warning_stripes{icon_state = "W-corner"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) "bjD" = (/obj/structure/window/reinforced,/obj/structure/ore_box,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) -"bjE" = (/turf/simulated/wall/r_wall,/area/anomaly) +"bjE" = (/turf/simulated/wall/r_wall,/area/anomaly/lab) "bjF" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "admin_shuttle_pump"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) "bjG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "admin_shuttle_inner"; locked = 1; name = "Arrival Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) "bjH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "warning"},/area/hallway/secondary/entry) @@ -3275,11 +3275,11 @@ "bkY" = (/obj/machinery/computer/research_shuttle,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) "bkZ" = (/obj/structure/shuttle/engine/heater{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) "bla" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/space,/area/shuttle/research/station) -"blb" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science{pixel_x = 4; pixel_y = 4},/turf/simulated/floor{icon_state = "white"; dir = 8},/area/anomaly) -"blc" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "Anomaly Lab APC"; pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bld" = (/obj/machinery/analyser_pad,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"ble" = (/obj/machinery/artifact_harvester,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"blf" = (/obj/machinery/artifact_analyser,/turf/simulated/floor{icon_state = "white"},/area/anomaly) +"blb" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science{pixel_x = 4; pixel_y = 4},/turf/simulated/floor{icon_state = "white"; dir = 8},/area/anomaly/lab) +"blc" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "Anomaly Lab APC"; pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bld" = (/obj/machinery/analyser_pad,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"ble" = (/obj/machinery/artifact_harvester,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"blf" = (/obj/machinery/artifact_analyser,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) "blg" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "admin_shuttle_outer"; locked = 1; name = "Arrival Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; layer = 5; master_tag = "admin_shuttle_airlock"; name = "External Access Button"; pixel_x = -24; pixel_y = -12; req_access_txt = "0"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) "blh" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "admin_shuttle_outer"; locked = 1; name = "Arrival Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) "bli" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/secondary/entry) @@ -3359,10 +3359,10 @@ "bmE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bmF" = (/turf/simulated/floor/plating,/area) "bmG" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/crate,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) -"bmH" = (/turf/simulated/floor{icon_state = "dark"},/area/anomaly) -"bmI" = (/obj/structure/table,/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bmJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bmK" = (/turf/simulated/floor{icon_state = "white"},/area/anomaly) +"bmH" = (/turf/simulated/floor{icon_state = "dark"},/area/anomaly/lab) +"bmI" = (/obj/structure/table,/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bmJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bmK" = (/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) "bmL" = (/turf/space,/area/shuttle/administration/station) "bmM" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"},/turf/simulated/floor/plating,/area/quartermaster/storage) "bmN" = (/turf/simulated/floor/plating,/area/quartermaster/storage) @@ -3435,12 +3435,12 @@ "boc" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) "bod" = (/obj/structure/shuttle/window{icon_state = "4"},/turf/simulated/shuttle/floor{icon_state = "floor3"},/area/shuttle/research/station) "boe" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"; dir = 2},/area/shuttle/research/station) -"bof" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/anomaly) -"bog" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/anomaly) -"boh" = (/obj/structure/filingcabinet,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"boi" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"boj" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bok" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor{icon_state = "white"},/area/anomaly) +"bof" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/anomaly/lab) +"bog" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/anomaly/lab) +"boh" = (/obj/structure/filingcabinet,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"boi" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"boj" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bok" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) "bol" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/effect/sign/securearea{name = "EXTERNAL AIRLOCK"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; pixel_x = -1},/turf/simulated/floor/plating,/area/quartermaster/storage) "bom" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #3"},/turf/simulated/floor{icon_state = "bot"},/area/quartermaster/storage) "bon" = (/obj/structure/table,/obj/item/device/multitool,/turf/simulated/floor,/area/quartermaster/storage) @@ -3494,385 +3494,385 @@ "bpj" = (/obj/structure/rack,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bpk" = (/obj/structure/closet/wardrobe/toxins_white,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bpl" = (/turf/simulated/wall/r_wall,/area/maintenance/asmaint2) -"bpm" = (/turf/simulated/wall,/area/anomaly) -"bpn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/anomaly) -"bpo" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/anomaly) -"bpp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/anomaly) -"bpq" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "7"},/turf/simulated/floor,/area/anomaly) -"bpr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/anomaly) -"bps" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark"},/area/anomaly) -"bpt" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor{icon_state = "dark"},/area/anomaly) -"bpu" = (/obj/machinery/door/airlock/research{name = "Long Term Storage"; req_access_txt = "47;1"},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bpv" = (/obj/structure/table,/obj/item/weapon/anobattery{pixel_x = -3; pixel_y = 6},/obj/item/weapon/anobattery{pixel_x = 3; pixel_y = -3},/obj/item/weapon/anobattery{pixel_x = -6; pixel_y = -3},/obj/item/weapon/anobattery{pixel_x = 6; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bpw" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/clothing/head/helmet/welding{pixel_x = -3; pixel_y = 5},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bpx" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bpy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/status_display{density = 0; layer = 4; supply_display = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bpz" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock"; dir = 4; network = "Cargo"},/turf/simulated/floor{dir = 8; icon_state = "warning"},/area/quartermaster/storage) -"bpA" = (/obj/structure/closet/crate/medical,/turf/simulated/floor,/area/quartermaster/storage) -"bpB" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #4"},/turf/simulated/floor{icon_state = "bot"},/area/quartermaster/storage) -"bpC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bpD" = (/obj/structure/table,/obj/item/stack/medical/ointment{pixel_y = 4},/obj/item/stack/medical/bruise_pack,/turf/simulated/floor,/area/quartermaster/storage) -"bpE" = (/obj/structure/closet/secure_closet/cargo_tech_personal,/turf/simulated/floor,/area/quartermaster/storage) -"bpF" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor,/area/quartermaster/storage) -"bpG" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/quartermaster) -"bpH" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/quartermaster) -"bpI" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"},/turf/simulated/floor,/area/quartermaster) -"bpJ" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/hallway/primary/central) -"bpK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central) -"bpL" = (/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/hallway/primary/central) -"bpM" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/secure{name = "Teleport Access"; req_access_txt = "17"},/turf/simulated/floor,/area/teleporter) -"bpN" = (/obj/item/device/radio/beacon,/turf/simulated/floor,/area/teleporter) -"bpO" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/requests_console{department = "Teleporter"; pixel_x = 30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/teleporter) -"bpP" = (/obj/machinery/atmospherics/pipe/manifold{color = "blue"; dir = 4; icon_state = "manifold-b-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/teleporter) -"bpQ" = (/obj/machinery/turretid{id = "upload"; pixel_x = -5; pixel_y = -24},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpS" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/turf/simulated/floor,/area/bridge/meeting_room) -"bpT" = (/obj/structure/stool/bed/chair/comfy/teal{dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/bridge/meeting_room) -"bpU" = (/obj/structure/table,/turf/simulated/floor,/area/bridge/meeting_room) -"bpV" = (/obj/structure/table,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor,/area/bridge/meeting_room) -"bpW" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor{icon_state = "whitehall"; dir = 8},/area/bridge/meeting_room) -"bpX" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/bridge/meeting_room) -"bpY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bpZ" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = -1; pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bqa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bqb" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table,/obj/machinery/juicer,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bqc" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqd" = (/obj/machinery/door/window/northleft{name = "Bar"; req_access_txt = "25"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqe" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqf" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqg" = (/obj/structure/stool{pixel_y = 5},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqi" = (/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqj" = (/obj/structure/device/piano{dir = 4},/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqk" = (/obj/structure/stool{pixel_y = 5},/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bql" = (/obj/effect/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 = 28; pixel_y = 4},/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqm" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/cafeteria) -"bqo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 4; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bqp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/medbay) -"bqq" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass/glass_medical{id_tag = ""; name = "Medbay Office"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bqr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay) -"bqs" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5;1"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bqt" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5;1"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bqu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bqv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bqw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "Chemistry Desk"},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bqx" = (/obj/machinery/camera{c_tag = "Chemistry South"; dir = 1; network = "Medbay"; pixel_x = 22},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 0; pixel_y = -30},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bqy" = (/obj/structure/stool/bed/chair/office/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bqz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/window/eastright{name = "Chemistry Desk"},/obj/machinery/door/window/westleft{name = "Chemistry Desk"; req_access_txt = "33"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bqA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1},/obj/structure/stool/bed/chair/office/light,/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"bqB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"bqC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"bqD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass/glass_research{name = "Research Lab"; req_access_txt = "7"},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"bqE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/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{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bqF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bqG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bqH" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bqI" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bqJ" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bqK" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/medical/research{name = "Research Division"}) -"bqL" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/maintenance/asmaint2) -"bqM" = (/obj/effect/sign/electricshock{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/maintenance/asmaint2) -"bqN" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/maintenance/asmaint2) -"bqO" = (/obj/effect/landmark{name = "emcloset"},/turf/simulated/floor,/area/maintenance/asmaint2) -"bqP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/anomaly) -"bqQ" = (/obj/machinery/computer/research_shuttle,/turf/simulated/floor{dir = 9; icon_state = "brown"},/area/anomaly) -"bqR" = (/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/anomaly) -"bqS" = (/turf/simulated/floor{dir = 5; icon_state = "brown"},/area/anomaly) -"bqT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/anomaly) -"bqU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall/r_wall,/area/anomaly) -"bqV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/anomaly) -"bqW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/anomaly) -"bqX" = (/obj/effect/sign/nosmoking_2{pixel_x = -32},/obj/machinery/camera{c_tag = "Anomaly Lab"; dir = 4; network = "Research"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bqY" = (/obj/structure/table,/obj/item/weapon/anodevice{pixel_x = 3; pixel_y = 3},/obj/item/weapon/anodevice{pixel_x = -3; pixel_y = -3},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bqZ" = (/obj/structure/table,/obj/item/weapon/melee/baton,/obj/item/weapon/reagent_containers/food/drinks/waterbottle,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bra" = (/obj/machinery/door/window/southleft{dir = 8; req_access_txt = "7"},/turf/simulated/floor{dir = 8; icon_state = "warnwhite"},/area/anomaly) -"brb" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) -"brc" = (/obj/machinery/conveyor_switch{id = "QMLoad"},/obj/machinery/door_control{id = "QMLoaddoor"; name = "Loading Doors"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "warning"},/area/quartermaster/storage) -"brd" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor,/area/quartermaster/storage) -"bre" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/quartermaster/storage) -"brf" = (/obj/machinery/conveyor_switch{id = "QMLoad"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/quartermaster/storage) -"brg" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor,/area/quartermaster/storage) -"brh" = (/obj/machinery/autolathe,/turf/simulated/floor,/area/quartermaster/storage) -"bri" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) -"brj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster) -"brk" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/teleporter) -"brl" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/teleporter) -"brm" = (/obj/machinery/atmospherics/pipe/manifold{color = "blue"; dir = 8; icon_state = "manifold-b-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/teleporter) -"brn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bro" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/secure{name = "AI Upload"; req_access_txt = "16"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"brp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"brq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"brr" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor,/area/bridge/meeting_room) -"brs" = (/obj/structure/table,/obj/item/kitchen/donut_box,/turf/simulated/floor,/area/bridge/meeting_room) -"brt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact-b-f"; dir = 1; level = 2; color = "blue"},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"bru" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/kitchen) -"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/kitchen) -"brw" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"brx" = (/obj/structure/table/reinforced,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/clothing/head/helmet/that{throwforce = 1; throwing = 1},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = -30; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bry" = (/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"brz" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1; dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"brA" = (/obj/structure/table,/obj/item/ashtray/plastic{pixel_x = 5},/obj/machinery/light/lamp/green{pixel_x = -5},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"brB" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1; dir = 8},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"brC" = (/obj/machinery/atm{pixel_x = 25},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"brD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"brF" = (/obj/machinery/door/airlock/maintenance{name = "Medical Maintenance"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay) -"brG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"brH" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"brI" = (/obj/machinery/door_control{id = "Patient Room 1 Shutters"; name = "Privacy Shutters"; pixel_y = 25},/obj/structure/stool/bed/chair/office/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"brJ" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/obj/machinery/vending/wallmed1{pixel_y = 28},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"brK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Hallway East"; dir = 4; network = "Medbay"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"brL" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"brM" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/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/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"brN" = (/obj/machinery/light,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/cell,/obj/item/weapon/cell,/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"brO" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "RnD Lab South"; dir = 1; network = "Research"},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) -"brP" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Division Centre"; dir = 1; network = "Research"; pixel_x = 22},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brT" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 4; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brU" = (/obj/structure/noticeboard{pixel_y = -27},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"brX" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/medical/research{name = "Research Division"}) -"brY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) -"brZ" = (/obj/effect/sign/nosmoking_2{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) -"bsa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) -"bsb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/anomaly) -"bsc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly) -"bsd" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly) -"bse" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/anomaly) -"bsf" = (/obj/structure/closet/emcloset,/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/anomaly) -"bsg" = (/turf/simulated/floor,/area/anomaly) -"bsh" = (/obj/machinery/camera{c_tag = "Research Shuttle Bay"; dir = 8; network = "Research"; pixel_x = 0},/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/anomaly) -"bsi" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly) -"bsj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly) -"bsk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = -1},/turf/simulated/wall/r_wall,/area/anomaly) -"bsl" = (/obj/structure/rack,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{dir = 2; icon_state = "whitebot"; tag = "icon-warnwhite (NORTH)"},/area/anomaly) -"bsm" = (/obj/structure/rack,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/latex,/obj/machinery/light{dir = 1},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{dir = 2; icon_state = "whitebot"; tag = "icon-warnwhite (NORTH)"},/area/anomaly) -"bsn" = (/obj/structure/rack,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/latex,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{dir = 2; icon_state = "whitebot"; tag = "icon-warnwhite (NORTH)"},/area/anomaly) -"bso" = (/obj/structure/noticeboard/anomaly{icon_state = "nboard05"; notices = 4; pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bsp" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bsq" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "warnwhite"},/area/anomaly) -"bsr" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id = "QMLoaddoor"; name = "Supply Dock Loading Door"; opacity = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bss" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bst" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/quartermaster/storage) -"bsu" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/quartermaster/storage) -"bsv" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass/glass_mining{name = "Cargo Bay"; req_access = null; req_access_txt = "31"},/turf/simulated/floor,/area/quartermaster/storage) -"bsw" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor,/area/quartermaster) -"bsx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster) -"bsy" = (/obj/structure/closet/crate,/turf/simulated/floor,/area/teleporter) -"bsz" = (/obj/machinery/shieldwallgen,/turf/simulated/floor{icon_state = "bot"},/area/teleporter) -"bsA" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/teleporter) -"bsB" = (/turf/simulated/floor{dir = 10; icon_state = "warning"},/area/teleporter) -"bsC" = (/turf/simulated/floor{icon_state = "warning"},/area/teleporter) -"bsD" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Teleporter APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{dir = 6; icon_state = "warning"},/area/teleporter) -"bsE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/teleporter) -"bsF" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/space,/area) -"bsG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) -"bsH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) -"bsI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bsJ" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) -"bsK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) -"bsL" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/obj/effect/sign/electricshock{pixel_y = 32},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) -"bsM" = (/obj/machinery/atmospherics/pipe/manifold{color = "blue"; icon_state = "manifold-b-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bsN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = -1},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) -"bsO" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"bsP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/bridge/meeting_room) -"bsQ" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/turf/simulated/floor,/area/bridge/meeting_room) -"bsR" = (/obj/structure/stool/bed/chair/comfy/lime{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/bridge/meeting_room) -"bsS" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/bridge/meeting_room) -"bsT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"bsU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/kitchen) -"bsV" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/closet/secure_closet/chef_personal,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bsW" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = -1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bsX" = (/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bsY" = (/obj/machinery/gibber,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bsZ" = (/obj/machinery/camera{c_tag = "Bar West"; dir = 4; network = "Mess Hall"},/obj/machinery/vending/boozeomat,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bta" = (/obj/effect/landmark/start{name = "Bartender"},/obj/structure/stool{pixel_y = 5},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"btb" = (/obj/structure/table/reinforced,/obj/item/weapon/rag,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"btc" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"btd" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Cafeteria South East"; dir = 8; network = "Mess Hall"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bte" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/structure/disposalpipe/sortjunction{icon_state = "pipe-j2s"; sortType = list("Medbay")},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"btf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"btg" = (/obj/machinery/vending/medical{pixel_x = -2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bth" = (/obj/machinery/disposal,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bti" = (/obj/structure/noticeboard{pixel_y = -27},/obj/structure/table,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"btj" = (/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"btk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"btl" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/table,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"btm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/sign/securearea{pixel_x = -32; pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"btn" = (/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/simple/supply/hidden,/obj/effect/sign/securearea{pixel_x = 32; pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bto" = (/turf/simulated/wall,/area/medical/genetics) -"btp" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"btq" = (/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"btr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/machinery/alarm{frequency = 1437; pixel_y = 23},/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"bts" = (/turf/simulated/wall/r_wall,/area/medical/genetics) -"btt" = (/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/wall/r_wall,/area/medical/genetics) -"btu" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"btv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"btw" = (/turf/simulated/wall/r_wall,/area/toxins/gasstorage) -"btx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/toxins/gasstorage) -"bty" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/gasstorage) -"btz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/toxins/gasstorage) -"btA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/maintenance/asmaint2) -"btB" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "warning"},/area/maintenance/asmaint2) -"btC" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/effect/sign/securearea{desc = "A large yellow warning sign which reads 'WARNING: ANOMALOUS MATERIALS TESTING'."; name = "ANOMALOUS MATERIALS"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor{dir = 9; icon_state = "warning"},/area/anomaly) -"btD" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/anomaly) -"btE" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "browncorner"},/area/anomaly) -"btF" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/anomaly) -"btG" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/anomaly) -"btH" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/effect/sign/nosmoking_2{pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Anomaly Lab Hallway"; dir = 2; network = "Research"; pixel_x = 22},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/anomaly) -"btI" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 5; icon_state = "warning"},/area/anomaly) -"btJ" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/turf/simulated/floor{dir = 5; icon_state = "whitedelivery"},/area/anomaly) -"btK" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"btL" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"btM" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/structure/stool/bed/chair/office/light,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"btN" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"btO" = (/obj/machinery/emitter{anchored = 1; dir = 1; req_access_txt = "7"; state = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"; pixel_y = 0},/obj/machinery/door/window/southleft{dir = 8; req_access_txt = "7"},/turf/simulated/floor{dir = 8; icon_state = "warnwhite"},/area/anomaly) -"btP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"btQ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor{dir = 8; icon_state = "warning"},/area/quartermaster/storage) -"btR" = (/obj/machinery/camera{c_tag = "Cargo Loading Area South"; dir = 1; network = "Cargo"},/obj/machinery/power/apc{dir = 2; name = "Cargo APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/quartermaster/storage) -"btS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/firealarm{dir = 2; pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/quartermaster/storage) -"btT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/quartermaster/storage) -"btU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/quartermaster/storage) -"btV" = (/obj/machinery/conveyor_switch{id = "miningToQM"},/turf/simulated/floor,/area/quartermaster/storage) -"btW" = (/obj/machinery/mineral/output,/turf/simulated/floor{icon_state = "delivery"},/area/quartermaster/storage) -"btX" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/machinery/supply_depot_console{pixel_y = -30},/turf/simulated/floor,/area/quartermaster/storage) -"btY" = (/obj/machinery/camera{c_tag = "Cargo Office Foyer South"; dir = 1; network = "Cargo"},/obj/machinery/light,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = -30},/turf/simulated/floor,/area/quartermaster/storage) -"btZ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bua" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/floor{dir = 2; icon_state = "browncorner"},/area/quartermaster) -"bub" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/turf/simulated/floor{dir = 2; icon_state = "brown"},/area/quartermaster) -"buc" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor{dir = 8; icon_state = "browncorner"},/area/quartermaster) -"bud" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/structure/noticeboard{pixel_y = -27},/turf/simulated/floor,/area/quartermaster) -"bue" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/power/apc{dir = 2; name = "Cargo Foyer APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/quartermaster) -"buf" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "browncorner"},/area/hallway/primary/central) -"bug" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor,/area/hallway/primary/central) -"buh" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/shieldwallgen,/turf/simulated/floor{icon_state = "bot"},/area/teleporter) -"bui" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/teleporter) -"buj" = (/obj/machinery/computer/teleporter,/turf/simulated/floor{icon_state = "floorgrime"},/area/teleporter) -"buk" = (/obj/machinery/teleport/station,/turf/simulated/floor{icon_state = "floorgrime"},/area/teleporter) -"bul" = (/obj/machinery/teleport/hub,/turf/simulated/floor{icon_state = "floorgrime"},/area/teleporter) -"bum" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/rack,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/teleporter) -"bun" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) -"buo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) -"bup" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/space,/area) -"buq" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; icon_state = "manifold-r-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bur" = (/obj/machinery/light/small,/obj/machinery/turretid{id = "upload"; pixel_x = -24; pixel_y = 5},/obj/machinery/camera{c_tag = "AI Upload Foyer"; dir = 1; network = "Command"},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_x = -26; pixel_y = -10},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/turret_protected/ai_upload_foyer) -"bus" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/turret_protected/ai_upload_foyer) -"but" = (/obj/machinery/light/small,/obj/machinery/power/apc{dir = 4; name = "Upload Foyer APC"; pixel_x = 27; pixel_y = -2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/turret_protected/ai_upload_foyer) -"buu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"buv" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; icon_state = "manifold-r-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"buw" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Bridge Delivery"; req_access_txt = "19"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/bridge/meeting_room) -"bux" = (/obj/machinery/light,/turf/simulated/floor,/area/bridge/meeting_room) -"buy" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor,/area/bridge/meeting_room) -"buz" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/central) -"buA" = (/obj/structure/kitchenspike,/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"buB" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"buC" = (/obj/structure/closet/wardrobe/chef_white,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"buD" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/reinforced,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "Remeber, due to NanoTrasen firearm regulations, illegal modifications of, or possession of, the shotgun outside the bar area is considered a Contraband offence.

--CentCom Regulatory Body"; name = "Firearm Regulations"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"buE" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"buF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/crew_quarters/cafeteria) -"buG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/structure/disposalpipe/sortjunction{sortType = list("Diner")},/turf/simulated/wall,/area/maintenance/maintcentral) -"buH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"buI" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"buJ" = (/obj/structure/sink{icon_state = "sink"; dir = 4; pixel_x = 11; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"buK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"buL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"buM" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "Genetics Outer Shutters"; name = "Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buO" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buP" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/obj/machinery/door_control{dir = 4; id = "Genetics Inner Shutters"; name = "Genetics Inner Shutters"; pixel_x = 22; pixel_y = -6},/obj/machinery/door_control{dir = 4; id = "Genetics Outer Shutters"; name = "Genetics Outer Shutters"; pixel_x = 22; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buQ" = (/obj/structure/disposalpipe/segment,/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buR" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buS" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"buT" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"buU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"buV" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table,/obj/item/weapon/cigpacket{layer = 2.7},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor,/area/toxins/gasstorage) -"buW" = (/obj/structure/table,/obj/item/clothing/mask/gas,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/toxins/gasstorage) -"buX" = (/obj/machinery/camera{c_tag = "Toxins Primary Storage"; dir = 2; network = "Research"; pixel_x = 22},/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/toxins/gasstorage) -"buY" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) -"buZ" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) -"bva" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) -"bvb" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) -"bvc" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) -"bvd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) -"bve" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "warning"},/area/maintenance/asmaint2) -"bvf" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/effect/sign/securearea{desc = "A large yellow warning sign which reads 'WARNING: ANOMALOUS MATERIALS TESTING'."; name = "ANOMALOUS MATERIALS"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 10; icon_state = "warning"},/area/anomaly) -"bvg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 2; icon_state = "warning"},/area/anomaly) -"bvh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor{dir = 2; icon_state = "warning"},/area/anomaly) -"bvi" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 2; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/effect/sign/biohazard{pixel_y = -32},/turf/simulated/floor{dir = 6; icon_state = "warning"},/area/anomaly) -"bvj" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 5; icon_state = "whitedelivery"},/area/anomaly) -"bvk" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bvl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bvm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/artifact_database,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bvn" = (/obj/structure/table,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bvo" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bvp" = (/obj/structure/table,/obj/item/weapon/clipboard,/turf/simulated/floor{icon_state = "white"},/area/anomaly) -"bvq" = (/turf/simulated/wall,/area/quartermaster/storage) -"bvr" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/storage) -"bvs" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "31"; req_combined_access_txt = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bvt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bvu" = (/obj/machinery/supply_depot,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bvv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/quartermaster/storage) -"bvw" = (/turf/simulated/wall,/area/quartermaster/qm) -"bvx" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/mining{name = "Quartermaster's Office"; req_access_txt = "41"},/turf/simulated/floor,/area/quartermaster/qm) -"bvy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/westleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Quartermaster"; req_access_txt = "0"},/obj/machinery/door/window/westleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Quartermaster"; req_access_txt = "41"},/turf/simulated/floor,/area/quartermaster/qm) -"bvz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/quartermaster/qm) -"bvA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/quartermaster/qm) -"bvB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall,/area/quartermaster/qm) -"bvC" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/hallway/primary/aft) -"bvD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/aft) -"bvE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/teleporter) -"bvF" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 1; icon_state = "manifold-r-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/teleporter) -"bvG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/teleporter) -"bvH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/hallway/primary/aft) -"bvI" = (/turf/simulated/wall/r_wall,/area/hallway/primary/aft) -"bvJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/hallway/primary/aft) -"bvK" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bvL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/machinery/door/airlock/secure{name = "AI Upload"; req_access_txt = "16"},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) -"bvM" = (/obj/effect/sign/securearea,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bvN" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor{icon_state = "bot"},/area/bridge/meeting_room) -"bvO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"bvP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"bvQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"bvR" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"bvS" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"bvT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"bvU" = (/obj/structure/kitchenspike,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bvV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bvW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bvX" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) -"bvY" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bvZ" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bwa" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1; dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) -"bwb" = (/obj/machinery/power/apc{dir = 8; name = "Cent. Maint. APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bwc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"bwd" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/obj/structure/table,/obj/item/weapon/storage/firstaid/fire{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/fire{pixel_x = -2; pixel_y = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bwe" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -2; pixel_y = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bwf" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bwg" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"bwh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Hallway North"; dir = 8; network = "Medbay"; pixel_x = 0; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_scrubber{on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bwi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "Patient Room 1 Shutters"; name = "Privacy Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/medbay) -"bwj" = (/obj/machinery/door/airlock/medical{name = "Patient Room 1"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bwk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "Patient Room 1 Shutters"; name = "Privacy Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"bwl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "Genetics Outer Shutters"; name = "Shutters"; opacity = 0},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"bwm" = (/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"bwn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"bwo" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Genetics APC"; pixel_x = 25},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"bwp" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bwq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bwr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 8; name = "Gas Storage APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/toxins/gasstorage) -"bws" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/turf/simulated/floor,/area/toxins/gasstorage) -"bwt" = (/turf/simulated/floor,/area/toxins/gasstorage) -"bwu" = (/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) -"bwv" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) -"bww" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) -"bwx" = (/obj/item/weapon/cigbutt,/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) -"bwy" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) -"bwz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bwA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/anomaly) +"bpm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/anomaly/lab) +"bpn" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/anomaly/lab) +"bpo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/anomaly/lab) +"bpp" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "7"},/turf/simulated/floor,/area/anomaly/lab) +"bpq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/anomaly/lab) +"bpr" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark"},/area/anomaly/lab) +"bps" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor{icon_state = "dark"},/area/anomaly/lab) +"bpt" = (/obj/machinery/door/airlock/research{name = "Long Term Storage"; req_access_txt = "47;1"},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bpu" = (/obj/structure/table,/obj/item/weapon/anobattery{pixel_x = -3; pixel_y = 6},/obj/item/weapon/anobattery{pixel_x = 3; pixel_y = -3},/obj/item/weapon/anobattery{pixel_x = -6; pixel_y = -3},/obj/item/weapon/anobattery{pixel_x = 6; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bpv" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/clothing/head/helmet/welding{pixel_x = -3; pixel_y = 5},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bpw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bpx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/status_display{density = 0; layer = 4; supply_display = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bpy" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock"; dir = 4; network = "Cargo"},/turf/simulated/floor{dir = 8; icon_state = "warning"},/area/quartermaster/storage) +"bpz" = (/obj/structure/closet/crate/medical,/turf/simulated/floor,/area/quartermaster/storage) +"bpA" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #4"},/turf/simulated/floor{icon_state = "bot"},/area/quartermaster/storage) +"bpB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bpC" = (/obj/structure/table,/obj/item/stack/medical/ointment{pixel_y = 4},/obj/item/stack/medical/bruise_pack,/turf/simulated/floor,/area/quartermaster/storage) +"bpD" = (/obj/structure/closet/secure_closet/cargo_tech_personal,/turf/simulated/floor,/area/quartermaster/storage) +"bpE" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor,/area/quartermaster/storage) +"bpF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/quartermaster) +"bpG" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/quartermaster) +"bpH" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/door/firedoor/border_only{dir = 8},/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"},/turf/simulated/floor,/area/quartermaster) +"bpI" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/hallway/primary/central) +"bpJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor,/area/hallway/primary/central) +"bpK" = (/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/hallway/primary/central) +"bpL" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/secure{name = "Teleport Access"; req_access_txt = "17"},/turf/simulated/floor,/area/teleporter) +"bpM" = (/obj/item/device/radio/beacon,/turf/simulated/floor,/area/teleporter) +"bpN" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/requests_console{department = "Teleporter"; pixel_x = 30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/teleporter) +"bpO" = (/obj/machinery/atmospherics/pipe/manifold{color = "blue"; dir = 4; icon_state = "manifold-b-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/teleporter) +"bpP" = (/obj/machinery/turretid{id = "upload"; pixel_x = -5; pixel_y = -24},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) +"bpQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) +"bpR" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/turf/simulated/floor,/area/bridge/meeting_room) +"bpS" = (/obj/structure/stool/bed/chair/comfy/teal{dir = 4},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/bridge/meeting_room) +"bpT" = (/obj/structure/table,/turf/simulated/floor,/area/bridge/meeting_room) +"bpU" = (/obj/structure/table,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor,/area/bridge/meeting_room) +"bpV" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor{icon_state = "whitehall"; dir = 8},/area/bridge/meeting_room) +"bpW" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/turf/simulated/floor,/area/bridge/meeting_room) +"bpX" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bpY" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = -1; pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bpZ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bqa" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table,/obj/machinery/juicer,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bqb" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqc" = (/obj/machinery/door/window/northleft{name = "Bar"; req_access_txt = "25"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqd" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqe" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqf" = (/obj/structure/stool{pixel_y = 5},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqg" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqh" = (/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqi" = (/obj/structure/device/piano{dir = 4},/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqj" = (/obj/structure/stool{pixel_y = 5},/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqk" = (/obj/effect/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 = 28; pixel_y = 4},/obj/structure/window/reinforced/tinted,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bql" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bqm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/cafeteria) +"bqn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 4; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) +"bqo" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/medbay) +"bqp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass/glass_medical{id_tag = ""; name = "Medbay Office"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bqq" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay) +"bqr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5;1"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bqs" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5;1"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bqt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bqu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bqv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "Chemistry Desk"},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) +"bqw" = (/obj/machinery/camera{c_tag = "Chemistry South"; dir = 1; network = "Medbay"; pixel_x = 22},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 0; pixel_y = -30},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) +"bqx" = (/obj/structure/stool/bed/chair/office/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) +"bqy" = (/obj/machinery/door/firedoor/border_only,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/window/eastright{name = "Chemistry Desk"},/obj/machinery/door/window/westleft{name = "Chemistry Desk"; req_access_txt = "33"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) +"bqz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1},/obj/structure/stool/bed/chair/office/light,/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"bqA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"bqB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"bqC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass/glass_research{name = "Research Lab"; req_access_txt = "7"},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"bqD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/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{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bqE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bqF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = "Streight"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bqG" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bqH" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bqI" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bqJ" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/medical/research{name = "Research Division"}) +"bqK" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/maintenance/asmaint2) +"bqL" = (/obj/effect/sign/electricshock{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/maintenance/asmaint2) +"bqM" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/maintenance/asmaint2) +"bqN" = (/obj/effect/landmark{name = "emcloset"},/turf/simulated/floor,/area/maintenance/asmaint2) +"bqO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/anomaly/lab) +"bqP" = (/obj/machinery/computer/research_shuttle,/turf/simulated/floor{dir = 9; icon_state = "brown"},/area/anomaly/lab) +"bqQ" = (/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/anomaly/lab) +"bqR" = (/turf/simulated/floor{dir = 5; icon_state = "brown"},/area/anomaly/lab) +"bqS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/anomaly/lab) +"bqT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall/r_wall,/area/anomaly/lab) +"bqU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/anomaly/lab) +"bqV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/anomaly/lab) +"bqW" = (/obj/effect/sign/nosmoking_2{pixel_x = -32},/obj/machinery/camera{c_tag = "Anomaly Lab"; dir = 4; network = "Research"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bqX" = (/obj/structure/table,/obj/item/weapon/anodevice{pixel_x = 3; pixel_y = 3},/obj/item/weapon/anodevice{pixel_x = -3; pixel_y = -3},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bqY" = (/obj/structure/table,/obj/item/weapon/melee/baton,/obj/item/weapon/reagent_containers/food/drinks/waterbottle,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bqZ" = (/obj/machinery/door/window/southleft{dir = 8; req_access_txt = "7"},/turf/simulated/floor{dir = 8; icon_state = "warnwhite"},/area/anomaly/lab) +"bra" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) +"brb" = (/obj/machinery/conveyor_switch{id = "QMLoad"},/obj/machinery/door_control{id = "QMLoaddoor"; name = "Loading Doors"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{dir = 8; icon_state = "warning"},/area/quartermaster/storage) +"brc" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor,/area/quartermaster/storage) +"brd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/quartermaster/storage) +"bre" = (/obj/machinery/conveyor_switch{id = "QMLoad"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/quartermaster/storage) +"brf" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor,/area/quartermaster/storage) +"brg" = (/obj/machinery/autolathe,/turf/simulated/floor,/area/quartermaster/storage) +"brh" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bri" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster) +"brj" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/teleporter) +"brk" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/teleporter) +"brl" = (/obj/machinery/atmospherics/pipe/manifold{color = "blue"; dir = 8; icon_state = "manifold-b-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/teleporter) +"brm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"brn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/secure{name = "AI Upload"; req_access_txt = "16"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) +"bro" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"brp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"brq" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor,/area/bridge/meeting_room) +"brr" = (/obj/structure/table,/obj/item/kitchen/donut_box,/turf/simulated/floor,/area/bridge/meeting_room) +"brs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/obj/machinery/atmospherics/pipe/simple{icon_state = "intact-b-f"; dir = 1; level = 2; color = "blue"},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"brt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/kitchen) +"bru" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/kitchen) +"brv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"brw" = (/obj/structure/table/reinforced,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/clothing/head/helmet/that{throwforce = 1; throwing = 1},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = -30; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"brx" = (/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bry" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1; dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"brz" = (/obj/structure/table,/obj/item/ashtray/plastic{pixel_x = 5},/obj/machinery/light/lamp/green{pixel_x = -5},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"brA" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1; dir = 8},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"brB" = (/obj/machinery/atm{pixel_x = 25},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"brC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) +"brD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral) +"brE" = (/obj/machinery/door/airlock/maintenance{name = "Medical Maintenance"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay) +"brF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"brG" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"brH" = (/obj/machinery/door_control{id = "Patient Room 1 Shutters"; name = "Privacy Shutters"; pixel_y = 25},/obj/structure/stool/bed/chair/office/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"brI" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/obj/machinery/vending/wallmed1{pixel_y = 28},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"brJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Hallway East"; dir = 4; network = "Medbay"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"brK" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"brL" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/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/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"brM" = (/obj/machinery/light,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/cell,/obj/item/weapon/cell,/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"brN" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "RnD Lab South"; dir = 1; network = "Research"},/turf/simulated/floor{icon_state = "white"},/area/toxins/lab) +"brO" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Division Centre"; dir = 1; network = "Research"; pixel_x = 22},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brS" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 4; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brT" = (/obj/structure/noticeboard{pixel_y = -27},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"brW" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/medical/research{name = "Research Division"}) +"brX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) +"brY" = (/obj/effect/sign/nosmoking_2{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) +"brZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) +"bsa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/anomaly/lab) +"bsb" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly/lab) +"bsc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly/lab) +"bsd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/anomaly/lab) +"bse" = (/obj/structure/closet/emcloset,/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/anomaly/lab) +"bsf" = (/turf/simulated/floor,/area/anomaly/lab) +"bsg" = (/obj/machinery/camera{c_tag = "Research Shuttle Bay"; dir = 8; network = "Research"; pixel_x = 0},/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/anomaly/lab) +"bsh" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly/lab) +"bsi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/anomaly/lab) +"bsj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = -1},/turf/simulated/wall/r_wall,/area/anomaly/lab) +"bsk" = (/obj/structure/rack,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{dir = 2; icon_state = "whitebot"; tag = "icon-warnwhite (NORTH)"},/area/anomaly/lab) +"bsl" = (/obj/structure/rack,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/latex,/obj/machinery/light{dir = 1},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{dir = 2; icon_state = "whitebot"; tag = "icon-warnwhite (NORTH)"},/area/anomaly/lab) +"bsm" = (/obj/structure/rack,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/latex,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{dir = 2; icon_state = "whitebot"; tag = "icon-warnwhite (NORTH)"},/area/anomaly/lab) +"bsn" = (/obj/structure/noticeboard/anomaly{icon_state = "nboard05"; notices = 4; pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bso" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bsp" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "warnwhite"},/area/anomaly/lab) +"bsq" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id = "QMLoaddoor"; name = "Supply Dock Loading Door"; opacity = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bsr" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bss" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/quartermaster/storage) +"bst" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light,/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/quartermaster/storage) +"bsu" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/machinery/door/airlock/glass/glass_mining{name = "Cargo Bay"; req_access = null; req_access_txt = "31"},/turf/simulated/floor,/area/quartermaster/storage) +"bsv" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor,/area/quartermaster) +"bsw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster) +"bsx" = (/obj/structure/closet/crate,/turf/simulated/floor,/area/teleporter) +"bsy" = (/obj/machinery/shieldwallgen,/turf/simulated/floor{icon_state = "bot"},/area/teleporter) +"bsz" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/teleporter) +"bsA" = (/turf/simulated/floor{dir = 10; icon_state = "warning"},/area/teleporter) +"bsB" = (/turf/simulated/floor{icon_state = "warning"},/area/teleporter) +"bsC" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Teleporter APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{dir = 6; icon_state = "warning"},/area/teleporter) +"bsD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/teleporter) +"bsE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/space,/area) +"bsF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) +"bsG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) +"bsH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) +"bsI" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) +"bsJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) +"bsK" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/obj/effect/sign/electricshock{pixel_y = 32},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) +"bsL" = (/obj/machinery/atmospherics/pipe/manifold{color = "blue"; icon_state = "manifold-b-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) +"bsM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = -1},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) +"bsN" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"bsO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/bridge/meeting_room) +"bsP" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/turf/simulated/floor,/area/bridge/meeting_room) +"bsQ" = (/obj/structure/stool/bed/chair/comfy/lime{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/bridge/meeting_room) +"bsR" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor,/area/bridge/meeting_room) +"bsS" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor,/area/hallway/primary/central) +"bsT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/kitchen) +"bsU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/closet/secure_closet/chef_personal,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bsV" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = -1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bsW" = (/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bsX" = (/obj/machinery/gibber,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bsY" = (/obj/machinery/camera{c_tag = "Bar West"; dir = 4; network = "Mess Hall"},/obj/machinery/vending/boozeomat,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bsZ" = (/obj/effect/landmark/start{name = "Bartender"},/obj/structure/stool{pixel_y = 5},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bta" = (/obj/structure/table/reinforced,/obj/item/weapon/rag,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"btb" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"btc" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Cafeteria South East"; dir = 8; network = "Mess Hall"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"btd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/structure/disposalpipe/sortjunction{icon_state = "pipe-j2s"; sortType = list("Medbay")},/turf/simulated/floor/plating,/area/maintenance/maintcentral) +"bte" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/medical/medbay) +"btf" = (/obj/machinery/vending/medical{pixel_x = -2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"btg" = (/obj/machinery/disposal,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bth" = (/obj/structure/noticeboard{pixel_y = -27},/obj/structure/table,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bti" = (/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"btj" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"btk" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/table,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"btl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/sign/securearea{pixel_x = -32; pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"btm" = (/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/simple/supply/hidden,/obj/effect/sign/securearea{pixel_x = 32; pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"btn" = (/turf/simulated/wall,/area/medical/genetics) +"bto" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"btp" = (/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"btq" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/machinery/alarm{frequency = 1437; pixel_y = 23},/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"btr" = (/turf/simulated/wall/r_wall,/area/medical/genetics) +"bts" = (/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/wall/r_wall,/area/medical/genetics) +"btt" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"btu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"btv" = (/turf/simulated/wall/r_wall,/area/toxins/gasstorage) +"btw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/toxins/gasstorage) +"btx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/gasstorage) +"bty" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/toxins/gasstorage) +"btz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/maintenance/asmaint2) +"btA" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 4; icon_state = "warning"},/area/maintenance/asmaint2) +"btB" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/effect/sign/securearea{desc = "A large yellow warning sign which reads 'WARNING: ANOMALOUS MATERIALS TESTING'."; name = "ANOMALOUS MATERIALS"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor{dir = 9; icon_state = "warning"},/area/anomaly/lab) +"btC" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/anomaly/lab) +"btD" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "browncorner"},/area/anomaly/lab) +"btE" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor,/area/anomaly/lab) +"btF" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/anomaly/lab) +"btG" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/effect/sign/nosmoking_2{pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Anomaly Lab Hallway"; dir = 2; network = "Research"; pixel_x = 22},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/anomaly/lab) +"btH" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 5; icon_state = "warning"},/area/anomaly/lab) +"btI" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/turf/simulated/floor{dir = 5; icon_state = "whitedelivery"},/area/anomaly/lab) +"btJ" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"btK" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"btL" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/structure/stool/bed/chair/office/light,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"btM" = (/obj/structure/cable{icon_state = "4-8"; pixel_x = 1; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"btN" = (/obj/machinery/emitter{anchored = 1; dir = 1; req_access_txt = "7"; state = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"; pixel_y = 0},/obj/machinery/door/window/southleft{dir = 8; req_access_txt = "7"},/turf/simulated/floor{dir = 8; icon_state = "warnwhite"},/area/anomaly/lab) +"btO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"btP" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor{dir = 8; icon_state = "warning"},/area/quartermaster/storage) +"btQ" = (/obj/machinery/camera{c_tag = "Cargo Loading Area South"; dir = 1; network = "Cargo"},/obj/machinery/power/apc{dir = 2; name = "Cargo APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/quartermaster/storage) +"btR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/firealarm{dir = 2; pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor,/area/quartermaster/storage) +"btS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/machinery/door/firedoor/border_only{dir = 8},/turf/simulated/floor,/area/quartermaster/storage) +"btT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = "90Curve"},/turf/simulated/floor,/area/quartermaster/storage) +"btU" = (/obj/machinery/conveyor_switch{id = "miningToQM"},/turf/simulated/floor,/area/quartermaster/storage) +"btV" = (/obj/machinery/mineral/output,/turf/simulated/floor{icon_state = "delivery"},/area/quartermaster/storage) +"btW" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/machinery/supply_depot_console{pixel_y = -30},/turf/simulated/floor,/area/quartermaster/storage) +"btX" = (/obj/machinery/camera{c_tag = "Cargo Office Foyer South"; dir = 1; network = "Cargo"},/obj/machinery/light,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = -30},/turf/simulated/floor,/area/quartermaster/storage) +"btY" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) +"btZ" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/floor{dir = 2; icon_state = "browncorner"},/area/quartermaster) +"bua" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/turf/simulated/floor{dir = 2; icon_state = "brown"},/area/quartermaster) +"bub" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = "90Curve"},/turf/simulated/floor{dir = 8; icon_state = "browncorner"},/area/quartermaster) +"buc" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/structure/noticeboard{pixel_y = -27},/turf/simulated/floor,/area/quartermaster) +"bud" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/power/apc{dir = 2; name = "Cargo Foyer APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/quartermaster) +"bue" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "browncorner"},/area/hallway/primary/central) +"buf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor,/area/hallway/primary/central) +"bug" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/shieldwallgen,/turf/simulated/floor{icon_state = "bot"},/area/teleporter) +"buh" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "bot"},/area/teleporter) +"bui" = (/obj/machinery/computer/teleporter,/turf/simulated/floor{icon_state = "floorgrime"},/area/teleporter) +"buj" = (/obj/machinery/teleport/station,/turf/simulated/floor{icon_state = "floorgrime"},/area/teleporter) +"buk" = (/obj/machinery/teleport/hub,/turf/simulated/floor{icon_state = "floorgrime"},/area/teleporter) +"bul" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/rack,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/turf/simulated/floor,/area/teleporter) +"bum" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) +"bun" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) +"buo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/space,/area) +"bup" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; icon_state = "manifold-r-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) +"buq" = (/obj/machinery/light/small,/obj/machinery/turretid{id = "upload"; pixel_x = -24; pixel_y = 5},/obj/machinery/camera{c_tag = "AI Upload Foyer"; dir = 1; network = "Command"},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_x = -26; pixel_y = -10},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/turret_protected/ai_upload_foyer) +"bur" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/turret_protected/ai_upload_foyer) +"bus" = (/obj/machinery/light/small,/obj/machinery/power/apc{dir = 4; name = "Upload Foyer APC"; pixel_x = 27; pixel_y = -2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor{dir = 0; icon_state = "blue"},/area/turret_protected/ai_upload_foyer) +"but" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) +"buu" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; icon_state = "manifold-r-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"buv" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Bridge Delivery"; req_access_txt = "19"},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/bridge/meeting_room) +"buw" = (/obj/machinery/light,/turf/simulated/floor,/area/bridge/meeting_room) +"bux" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor,/area/bridge/meeting_room) +"buy" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/central) +"buz" = (/obj/structure/kitchenspike,/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"buA" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"buB" = (/obj/structure/closet/wardrobe/chef_white,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"buC" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/reinforced,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "Remeber, due to NanoTrasen firearm regulations, illegal modifications of, or possession of, the shotgun outside the bar area is considered a Contraband offence.

--CentCom Regulatory Body"; name = "Firearm Regulations"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"buD" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"buE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/crew_quarters/cafeteria) +"buF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/structure/disposalpipe/sortjunction{sortType = list("Diner")},/turf/simulated/wall,/area/maintenance/maintcentral) +"buG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"buH" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"buI" = (/obj/structure/sink{icon_state = "sink"; dir = 4; pixel_x = 11; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"buJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"buK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"buL" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "Genetics Outer Shutters"; name = "Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buN" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buO" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/obj/machinery/door_control{dir = 4; id = "Genetics Inner Shutters"; name = "Genetics Inner Shutters"; pixel_x = 22; pixel_y = -6},/obj/machinery/door_control{dir = 4; id = "Genetics Outer Shutters"; name = "Genetics Outer Shutters"; pixel_x = 22; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buP" = (/obj/structure/disposalpipe/segment,/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buQ" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buR" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"buS" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"buT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"buU" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table,/obj/item/weapon/cigpacket{layer = 2.7},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor,/area/toxins/gasstorage) +"buV" = (/obj/structure/table,/obj/item/clothing/mask/gas,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/toxins/gasstorage) +"buW" = (/obj/machinery/camera{c_tag = "Toxins Primary Storage"; dir = 2; network = "Research"; pixel_x = 22},/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/toxins/gasstorage) +"buX" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) +"buY" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) +"buZ" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) +"bva" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) +"bvb" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "delivery"; name = "floor"},/area/toxins/gasstorage) +"bvc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/asmaint2) +"bvd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "warning"},/area/maintenance/asmaint2) +"bve" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/effect/sign/securearea{desc = "A large yellow warning sign which reads 'WARNING: ANOMALOUS MATERIALS TESTING'."; name = "ANOMALOUS MATERIALS"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 10; icon_state = "warning"},/area/anomaly/lab) +"bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 2; icon_state = "warning"},/area/anomaly/lab) +"bvg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor{dir = 2; icon_state = "warning"},/area/anomaly/lab) +"bvh" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 2; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/effect/sign/biohazard{pixel_y = -32},/turf/simulated/floor{dir = 6; icon_state = "warning"},/area/anomaly/lab) +"bvi" = (/obj/machinery/door/airlock/glass/glass_research{name = "Anomaly Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 5; icon_state = "whitedelivery"},/area/anomaly/lab) +"bvj" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bvk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bvl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/artifact_database,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bvm" = (/obj/structure/table,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bvn" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bvo" = (/obj/structure/table,/obj/item/weapon/clipboard,/turf/simulated/floor{icon_state = "white"},/area/anomaly/lab) +"bvp" = (/turf/simulated/wall,/area/quartermaster/storage) +"bvq" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/storage) +"bvr" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "31"; req_combined_access_txt = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bvs" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bvt" = (/obj/machinery/supply_depot,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bvu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/quartermaster/storage) +"bvv" = (/turf/simulated/wall,/area/quartermaster/qm) +"bvw" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/mining{name = "Quartermaster's Office"; req_access_txt = "41"},/turf/simulated/floor,/area/quartermaster/qm) +"bvx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/westleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Quartermaster"; req_access_txt = "0"},/obj/machinery/door/window/westleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Quartermaster"; req_access_txt = "41"},/turf/simulated/floor,/area/quartermaster/qm) +"bvy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/quartermaster/qm) +"bvz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/quartermaster/qm) +"bvA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall,/area/quartermaster/qm) +"bvB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/hallway/primary/aft) +"bvC" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/aft) +"bvD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/teleporter) +"bvE" = (/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 1; icon_state = "manifold-r-f"; level = 1; name = "pipe manifold"},/turf/simulated/wall/r_wall,/area/teleporter) +"bvF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/teleporter) +"bvG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/hallway/primary/aft) +"bvH" = (/turf/simulated/wall/r_wall,/area/hallway/primary/aft) +"bvI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/hallway/primary/aft) +"bvJ" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) +"bvK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/obj/machinery/door/airlock/secure{name = "AI Upload"; req_access_txt = "16"},/turf/simulated/floor,/area/turret_protected/ai_upload_foyer) +"bvL" = (/obj/effect/sign/securearea,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) +"bvM" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor{icon_state = "bot"},/area/bridge/meeting_room) +"bvN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"bvO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"bvP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "heads_meeting"; name = "Meeting Room Window Shields"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) +"bvQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"bvR" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"bvS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor,/area/hallway/primary/aft) +"bvT" = (/obj/structure/kitchenspike,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bvU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bvV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bvW" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/kitchen) +"bvX" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bvY" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bvZ" = (/obj/structure/stool/bed/chair/comfy/black{anchored = 1; dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/cafeteria) +"bwa" = (/obj/machinery/power/apc{dir = 8; name = "Cent. Maint. APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/obj/structure/disposalpipe/segment{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral) +"bwb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral) +"bwc" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/obj/structure/table,/obj/item/weapon/storage/firstaid/fire{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/fire{pixel_x = -2; pixel_y = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bwd" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -2; pixel_y = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bwe" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bwf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) +"bwg" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Hallway North"; dir = 8; network = "Medbay"; pixel_x = 0; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_scrubber{on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bwh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "Patient Room 1 Shutters"; name = "Privacy Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/medbay) +"bwi" = (/obj/machinery/door/airlock/medical{name = "Patient Room 1"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) +"bwj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "Patient Room 1 Shutters"; name = "Privacy Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/medical/medbay) +"bwk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/poddoor/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "Genetics Outer Shutters"; name = "Shutters"; opacity = 0},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"bwl" = (/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"bwm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"bwn" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Genetics APC"; pixel_x = 25},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) +"bwo" = (/obj/structure/disposalpipe/segment{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bwp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/manifold{color = "red"; dir = 8; icon_state = "manifold-r-f"; initialize_directions = 11; level = 1; name = "pipe manifold"},/turf/simulated/floor{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bwq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 8; name = "Gas Storage APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/toxins/gasstorage) +"bwr" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 1},/turf/simulated/floor,/area/toxins/gasstorage) +"bws" = (/turf/simulated/floor,/area/toxins/gasstorage) +"bwt" = (/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) +"bwu" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) +"bwv" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) +"bww" = (/obj/item/weapon/cigbutt,/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) +"bwx" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor{dir = 1; icon_state = "warning"},/area/toxins/gasstorage) +"bwy" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"bwz" = (/turf/simulated/wall,/area/anomaly/lab) +"bwA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/anomaly/lab) "bwB" = (/turf/simulated/wall,/area/maintenance/apmaint) "bwC" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) "bwD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor/plating,/area/maintenance/apmaint) @@ -9371,35 +9371,35 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhSasNbjFbjGbjHbjHbjIbjJbjKbbvbjLbbvbcPbjMbcQbbvbbvaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaabjObjPbjQbjRbiebiebiebiebiebiebjSbjTbjUbiebiebjVbjWbjXbjYbjXbjZbkabkbaVwaVwbkcbkdbkebbIaQKaQKaQKaQKbkfbkgbkhbkibkjbixbkkbklbklbkmbklbklbknbixbiDbkobkpbkqbkrbksbktbfzbfzbkubkvaGMbkwbkxbkybkzbhebiUbiUbiUbhebhebhhbhjbhjbiXbiZbkAbjabhjbhjbkBbhpbkCbkDbkEbkFbkGbkGbkGbdZbkHbcEbebbfFbkIbcGbkJbefbkKbfIbkLbkMbcGbkNbjobkObjqbkPbkQbcJbkRbkSbkTbkUbepbetbetbetbkVbkWaaeaaeaaeaaaaaeaaaaaaaaebkXbkYbjAbjzbjCbkZblabjEbjEbjEbjEbjEblbblcbldbleblfbldbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavablgblhblibljarUarUblkbllbcOaaaaaaaaaarTaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnbloblpbieblqblrbiebiebiebieblsbltblublvbiebieblwblxblyblzblAblBblCblDblEblFaGMbkdaGMblGblGblGblGblGblGblHblIblJblKblLblMblNblOblPblOblQblRblSblTblUblVblWblWblWblXblWblWblXblYaGMaGMblZbmabkzbhebhebmbbhebhebhebmcbhjbhjbiXbmdbmebjabhjbhjbmfbhpbjcbmgbdXbmhbmibmjbmkbdZbmlbcEbebbfFbmmbmnbmobmpbmqbfIbkLbmrbcGbmsbmtbmubmvbmwbmxbcJbmybmzbmAbmBbepbmCbmCbmDbetbmEbmFaaeaaaaaeaaaaaeaaeaaabjybjzbjzbjzbjCbmGbjybjEbmHbmHbmHbjEbmIbmJbmKbmKbmKbmKbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNbmMbmNbmMbiebiebmObmPbiebiebiebmQblsbmRbmSbmTbiebiebiebiebiebmUbmVbmVblCbmVbmWbmXaGMbkdbmYblGbmZbnabnbbncbndbnebnfblJbkjbixbklbngbnhbnibnhbnjbklbixbiDblUbnkbnlbnmbnnbnobnpbnqbnrbnsbgGbntbnubnvbnwbhebnxbcrbnybnzbnybnAbhjbhjbiXbiYbkAbjabhjbhjbnBbhpbjcbmgbdXbnCbdZbnDbnEbdZbnFbcEbebbfFbnGbnHbnIbdZbnJbfIbnKbnLbnMbnNbnObnPbfLbnQbnRbnSbnTbnUbjubnVbnWbnXbnYbepbetbnZbmFaaeaaeaaaaaeaaaaaaaaeboabhPbobbocbodbhPboebjEbofbmHbogbjEbohbmJboibojbmKbokbjEaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnbolbjPbiebmObmPbiebiebiebieblsbombmSbonbiebiebiebieboobopbmVbmVblCbmVbmVboqaGMbkdborblHbosbotbosbosbosbosboublJbkjbixbixbovbowboxbnhboybixbixbozblUboAboBboCboCboBboBboDboEboFaGMaGMbcrboGbkzbheboHbcrboIbhjbhjbhjbhjbhjbhjboJbhjbhjboKbhjboLbfwboMboNbdXboObdZboPbkGbdZbdZbcEboQboRboSboTboUboVboWboXboYboZbpabpbbpcbpdbnSbpebcJbcJbfSbpfbpgbphbpibpjbpkbepbcKbplbplbcLbpmaaeaaaaaeaaeaaabpnbpobppbpqbpraaeaaebjEbpsbmHbptbpubmKbmJbpvbpwbmKbpxbjEbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaeaaabpybpzbiebmObpAbiebiebiebieblsbpBbpCbpDbiebpEbgmbiebpFbjObmVbmVbpGbpHbpHbpIbpJbpKbpLbpMbosbosbosbosbpNbosbpObpPbkjbixbixbixbpQbpRbnhbixbixbixbozblUbpSbpTbpUbpVbpWboBbpXboEboFaGMaGMbcrbpYbpZbqabqbbcrbqcbqdbqebqfbqgbqhbqibqjbqkbqlbhpbqibqmbqnbqobmgbdXbqpbqqbqrbczbqsbqtbdXbdXbdXbdXbdXbqubqvbqwbfHbqxbqybqzbqAbqBbqCbqDbqEbqFbqGbqHbqIbqHbqJbqHbqHbqHbqKbqLbqMbqNbqObpmaaeaaeaaeaaeaaebqPbqQbqRbqSbqPaaeaaebqTbqUbqVbqWbqVbqXbmJbqYbqZbmKbmKbrabjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnbrbbrcbiebrdbrebrebrebrfbrebrebrgbjTbrhbiebpEbgmbiebiebribmVbmVblCbmVbmWbrjaGMaGMbpLblGbrkbosbosbosbosbosbrlbrmbrnblSblSblSblSbroblSbrpbixbixbrqblUbrrbpTbpUbpUbpWboBbrsbrtboFaGMaGMbrubrvbctbrwbcrbcrbrxbhjbhjbrybqgbhjbhjbhjbhjbrzbrAbrBbrCbhpbrDbrEbrFbrGbrGbrGbrGbrHbdZbdXboPbrIbrJbdXbrKbrLbcGbcGbcGbcGbcGbrMbrNbrObcJbrPbrQbrRbrSbrTbrUbrVbrWbrWbrWbrXbrYbrZbsabrYbsbbscbsdbsdbsdbsdbsebsfbsgbshbsibsdbsjbskbslbsmbsnbjEbsobmJbmKbmKbspbmKbsqbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNbsrbssbsrbstbstbsubstbstbstbsubjPbiebjRbigbiebiebiebiebiebiebsvbmVbmVblCbmVbswbsxaGMaGMaGMblGbsybszbsAbsBbsCbsCbsDbsEbsFbsGbsHbsIbsJbsKbsLbsMbsGbsGbsNbsObsPbsQbsRbsRboBboBbsSblXbsTaGMaGMbsUbsVbsWbsXbsYbcrbsZbhjbtabtbbqgbhjbhjbtcbhjbhjbhjbhjbtdbhpbtebrEbtfbtgbthbtibtjbtkbdZbdXbtlbdZbdZbdXbtmbtnbtobtpbtqbtrbtsbttbtsbtsbtsbtubtvbtwbtwbtxbtybtybtybtybtybtybtybtzbtAbtBbtCbtDbtDbtDbtDbtDbtDbtEbtFbtFbtGbtHbtGbtHbtGbtGbtIbtJbtKbtLbtKbtMbtNbtKbtObjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnblnblnblnblnblnblnblnbtPbtQbtRbtSbtTbtUbtVbtWbtXbtYbiebtZbuabubbucbudbuebmXbufbeObugblGbsybuhbuibujbukbulbumblGbunbuobupbuqburbusbutbuubuobuobuobuvbuwblWboBboBboBbuxbuyblXbuzbeObeObsUbuAbuBbsXbuCbcrbuDbhjbhjbrybqgbhjbhjbrAbhjbrzbrAbrBbuEbuFbuGbmgbdXbdXbdXbdXbdXbuHbdZbdXbuIbdZbuJbdXbuKbuLbuMbuNbuObuPbtobuQbuRbuSbtsbuTbuUbtwbuVbuWbuXbuYbuZbuZbvabvbbvcbtxbvdbvebvfbvgbvgbvgbvgbvgbvgbvgbvhbvgbvgbvgbvgbvgbvgbvgbvibvjbvkbvlbvmbvnbvobvpbjEbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaabribvqbvqbvqbvrbvsbvtbvubvvbvwbvxbvwbvwbvybvwbvzbvAbvBbvCbvDbvDblGblGblGbvEbvFbvGbvGbvGbvGbvHbvIbvJbvKbvKbvLbvKbvMbvIbvIbvIblWbvNblWbvObvPbvQbvRbvSblXbvTbvDbvDbsUbvUbvVbvWbvXbcrbvYbhjbvZbrybqgbhjbhjbwabhjbhjbhjbhjbhjbhpbwbbwcbhsbwdbwebwfbwgbtkbwhbdXbwibwjbwkbdXbqubqvbwlbwmbwnbwobtobuQbwmbwmbtsbwpbwqbtybwrbwsbwtbwubwvbwubwwbwxbwybtwbwzbcLbpmbwAbpobpobpobpobpobpobpobpobpobpobpobpobpobppbjEbjEbjEbjEbjEbjEbjEbjEbjEaaeaaaarTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbwCbwDbwEbwFbwGbwHbwIbwJbwKbwLbwMbwNbwObwPbwQbwRbwRbwRbwSbwTbwRbwUbwRbwRbwRbwRbwVbwWbwXbwYbwZbxabxbbxcbxdbxebwWbwTbwRbxfbwRbwRbwRbxgbxhbxibxgbwRbwRbxjbxkbxlbxmbxnbcrbhpbxobhpbhpbxpbhjbhjbhjbhjbrzbrAbrBbxqbhpbxrbwcbhsbxsbxtbxtbxubxvbxwbxxbxybxzbxAbxBbxCbxDbxEbxFbxGbwmbxHbxIbxJbxKbtsbxLbxMbxNbxObxPbxQbxPbxPbxPbxRbxPbxSbtwbxTbcLaaeaaaaaeaaeaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCZaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbxUbxVbxWbxXbxYbxZbyabybbybbycbwKbydbyebyfbwQbygbwRbwRbwRbwTbwRbwRbwRbwRbwRbwRbwRbwRbwXbyhbwRbxabwRbyibwRbwRbwRbwTbwRbwRbwRbwRbwRbxgbwRbwXbxgbwRbyjbsUbcrbykbylbymbymbynbyobypbhpbyqbyrbyrbysbyrbyrbysbysbytbhpbyubyvbdXbywbyxbyybkEbyzbyAbyBbyCbyDbyEbyFbyGbyHbyIbtobyJbyKbyLbyMbwmbwmbyNbyObyPbyQbyRbySbyTbyUbyVbyWbyXbyYbyZbtwbxTbcLbcLbcLbcLbzaaaeaaaaaaaaeaaeaaeaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbwBbwBbwBbzbbzcbzdbzebzfbzgbzhbybbzibzjbzkbzlbzmbznbzmbzmbzobzpbzpbzpbzpbzpbzpbzpbzqbzrbzsbztbxabwRbwRbwRbwRbwRbwTbwRbwRbwRbwRbwRbzubzvbzwbzxbzvbzybzzbzAbzBbzCbhpbzDbyobyobzEbhpbzFaaaaaaaaaaaaaaaaaaaaaaaabzGbzHbzIbkEbzJbzKbzLbdXbzMbzNbdXbzObzPbdXbdXbzQbzRbzPbtobzSbzTbzUbzVbwmbzWbzXbzYbzZbtwbtwbtwbtwbtwbtwbAabAbbtwbtwbtwbAcbAdbAdbAebAfbAgbAhbAibAibAibAibAibAibAibAiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbzbbAjbvwbvwbvwbvwbvwbAkbAlbAmbAnbAobApbvwbAqbAqbArbAsbAtbAtbAubAvbAwbAtbAtbAtbAxbAybAzbAAbABbACbACbACbACbADbACbACbACbzGbAEbAFbAGbAHbAIbAJbzzbAKbzBbzAbhpbALbAMbANbAObhpbAPaaaaaaaaaaaaaaaaaaaaaaaabzGbAQbmgbdXbARbdZbASbdXbATbdZbAUbAVbAWbAXbdXbAYbdZbAZbtobBabwmbwmbwmbwmbBbbBcbBdbBebBfbBgbBhbBibBhbBjbBkbBhbBfbBfbBfbBfbBfbBfbxTbAibBlbBmbBnbBobBpbBqbBqbBrbBsbAiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbzbbBtbBubBvbBwbBvbBxbBybBzbBAbBBbBCbBDbvAbBEbBFbBGaaaaaeaaabBHbBIbBHaaaaaeaaabBJbBKbBLbBMbBNbBObBPbBQbBRbBSbBTbBUbBVbBWbBXbBYbBZbCabCabCabCbbCcbCdbBYbCebCebCfbCgbChbCibCjbCabCabCkbClbzGaaaaaaaaabzGbzHbmgbdXbCmbdZbdZbCnbATbdZbCobkGbdZbCpbdXbCqbdZbCpbtobwmbCrbwmbwmbwmbCsbtsbCtbCubBfbCvbCwbBhbCxbCybCzbBhbCAbCBbCCbCDbCEbBfbxTbAibCFbCGbCHbCIbCJbCKbCLbCMbCNbCOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabArbArbArbCPbCQbCRbCSbCSbCSbCTbCUbCVbCWbCWbCXbCYbCZbDabDbbDcaaebDdbDdbDebDfbDebDdbDdaaebDgbDhbxabDibAHbACbDjbDkbDlbDmbDnbDobDpbDqbDrbDsbDtbDubDvbDwbDxbDybDzbDxbDAbDBbDxbDCbDDbDEbDEbDFbDGbDHbDIbzGaaaaaaaaabzGbzHbzIbkEbDJbDKbDLbwgbATbdZbDMbDNbDObDPbdXboPbDQbDRbtobtpbDSbDTbDUbtpbDVbtsbDWbrTbBfbDXbBhbDYbDZbEabEbbBhbEcbEdbEebEfbEgbBfbxTbAibEhbEibEjbEkbElbEmbEnbEobEpbCOaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarTaaaaaaaaaaaabEqbErbEsbErbEtaaaaaaaaaaaabArbEubEvbEwbExbEybEzbBFbEAbArbvwbEBbvwbEBbECbEDbEEbBFbEFbDcaaabDdbEGbEHbEIbEJbEKbDdaaabDgbDhbxabELbEMbACbACbENbEObEPbEQbERbESbETbEUbEVbEWbEXbEYbEZbETbFabETbETbETbFbbFcbFdbFebETbFbbFfbFbbFgbDIbzGaaaaaaaaabzGbFhbFibFjbFjbFjbFjbFjbFkbFlbFmbFmbFmbFmbFmbFmbFmbFmbtobtobtsbtsbtsbtsbtsbtsbFnbjubBfbFobFobFpbFqbFqbFrbFsbFtbFubFvbFwbFxbBfbFybAibFzbFAbCHbFBbFCbFDbFEbEobFFbCOaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFGbFHbFIbFIbFGbFJbFKbFLbArbArbFMbBFbBFbBFbFNbFObFPbFQbFRbFSbFTbFUbFTbFVbFWbFXbFYbFZbDcaaebDdbGabGbbEIbGcbGdbDdaaebDgbDhbGebGfbGgbGhbACbGibACbACbACbACbACbzGbGjbAEbzGbzGbzGbAGbzGbGkbzGbGlbGmbzGbzGbzGbGnbGobGpbGqbGobGrbGsbzGaaaaaabzGbzGbGtbGubGvbGwbGxbGybFjbGzbGAbFmbGBbGCbGDbGEbGEbGFbFmbGGbGHbGIbGJbGKbGLbGMbGNbwpbGObGPbGQbGQbGRbGQbGQbGQbGQbGQbGRbGQbGQbGQbGSbGTbGUbGVbGWbGXbGXbGXbGYbEnbEobEpbCOaaaaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaabGZbHabHabHbbHcbHcbHcbHcbHcbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnbolbjPbiebmObmPbiebiebiebieblsbombmSbonbiebiebiebieboobopbmVbmVblCbmVbmVboqaGMbkdborblHbosbotbosbosbosbosboublJbkjbixbixbovbowboxbnhboybixbixbozblUboAboBboCboCboBboBboDboEboFaGMaGMbcrboGbkzbheboHbcrboIbhjbhjbhjbhjbhjbhjboJbhjbhjboKbhjboLbfwboMboNbdXboObdZboPbkGbdZbdZbcEboQboRboSboTboUboVboWboXboYboZbpabpbbpcbpdbnSbpebcJbcJbfSbpfbpgbphbpibpjbpkbepbcKbplbplbcLbcLaaeaaaaaeaaeaaabpmbpnbpobppbpqaaeaaebjEbprbmHbpsbptbmKbmJbpubpvbmKbpwbjEbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaeaaabpxbpybiebmObpzbiebiebiebieblsbpAbpBbpCbiebpDbgmbiebpEbjObmVbmVbpFbpGbpGbpHbpIbpJbpKbpLbosbosbosbosbpMbosbpNbpObkjbixbixbixbpPbpQbnhbixbixbixbozblUbpRbpSbpTbpUbpVboBbpWboEboFaGMaGMbcrbpXbpYbpZbqabcrbqbbqcbqdbqebqfbqgbqhbqibqjbqkbhpbqhbqlbqmbqnbmgbdXbqobqpbqqbczbqrbqsbdXbdXbdXbdXbdXbqtbqubqvbfHbqwbqxbqybqzbqAbqBbqCbqDbqEbqFbqGbqHbqGbqIbqGbqGbqGbqJbqKbqLbqMbqNbcLaaeaaeaaeaaeaaebqObqPbqQbqRbqOaaeaaebqSbqTbqUbqVbqUbqWbmJbqXbqYbmKbmKbqZbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnbrabrbbiebrcbrdbrdbrdbrebrdbrdbrfbjTbrgbiebpDbgmbiebiebrhbmVbmVblCbmVbmWbriaGMaGMbpKblGbrjbosbosbosbosbosbrkbrlbrmblSblSblSblSbrnblSbrobixbixbrpblUbrqbpSbpTbpTbpVboBbrrbrsboFaGMaGMbrtbrubctbrvbcrbcrbrwbhjbhjbrxbqfbhjbhjbhjbhjbrybrzbrAbrBbhpbrCbrDbrEbrFbrFbrFbrFbrGbdZbdXboPbrHbrIbdXbrJbrKbcGbcGbcGbcGbcGbrLbrMbrNbcJbrObrPbrQbrRbrSbrTbrUbrVbrVbrVbrWbrXbrYbrZbrXbsabsbbscbscbscbscbsdbsebsfbsgbshbscbsibsjbskbslbsmbjEbsnbmJbmKbmKbsobmKbspbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNbsqbsrbsqbssbssbstbssbssbssbstbjPbiebjRbigbiebiebiebiebiebiebsubmVbmVblCbmVbsvbswaGMaGMaGMblGbsxbsybszbsAbsBbsBbsCbsDbsEbsFbsGbsHbsIbsJbsKbsLbsFbsFbsMbsNbsObsPbsQbsQboBboBbsRblXbsSaGMaGMbsTbsUbsVbsWbsXbcrbsYbhjbsZbtabqfbhjbhjbtbbhjbhjbhjbhjbtcbhpbtdbrDbtebtfbtgbthbtibtjbdZbdXbtkbdZbdZbdXbtlbtmbtnbtobtpbtqbtrbtsbtrbtrbtrbttbtubtvbtvbtwbtxbtxbtxbtxbtxbtxbtxbtybtzbtAbtBbtCbtCbtCbtCbtCbtCbtDbtEbtEbtFbtGbtFbtGbtFbtFbtHbtIbtJbtKbtJbtLbtMbtJbtNbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNblmblnblnblnblnblnblnblnblnbtObtPbtQbtRbtSbtTbtUbtVbtWbtXbiebtYbtZbuabubbucbudbmXbuebeObufblGbsxbugbuhbuibujbukbulblGbumbunbuobupbuqburbusbutbunbunbunbuubuvblWboBboBboBbuwbuxblXbuybeObeObsTbuzbuAbsWbuBbcrbuCbhjbhjbrxbqfbhjbhjbrzbhjbrybrzbrAbuDbuEbuFbmgbdXbdXbdXbdXbdXbuGbdZbdXbuHbdZbuIbdXbuJbuKbuLbuMbuNbuObtnbuPbuQbuRbtrbuSbuTbtvbuUbuVbuWbuXbuYbuYbuZbvabvbbtwbvcbvdbvebvfbvfbvfbvfbvfbvfbvfbvgbvfbvfbvfbvfbvfbvfbvfbvhbvibvjbvkbvlbvmbvnbvobjEbjEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaabrhbvpbvpbvpbvqbvrbvsbvtbvubvvbvwbvvbvvbvxbvvbvybvzbvAbvBbvCbvCblGblGblGbvDbvEbvFbvFbvFbvFbvGbvHbvIbvJbvJbvKbvJbvLbvHbvHbvHblWbvMblWbvNbvObvPbvQbvRblXbvSbvCbvCbsTbvTbvUbvVbvWbcrbvXbhjbvYbrxbqfbhjbhjbvZbhjbhjbhjbhjbhjbhpbwabwbbhsbwcbwdbwebwfbtjbwgbdXbwhbwibwjbdXbqtbqubwkbwlbwmbwnbtnbuPbwlbwlbtrbwobwpbtxbwqbwrbwsbwtbwubwtbwvbwwbwxbtvbwybcLbwzbwAbpnbpnbpnbpnbpnbpnbpnbpnbpnbpnbpnbpnbpnbpobjEbjEbjEbjEbjEbjEbjEbjEbjEaaeaaaarTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbwCbwDbwEbwFbwGbwHbwIbwJbwKbwLbwMbwNbwObwPbwQbwRbwRbwRbwSbwTbwRbwUbwRbwRbwRbwRbwVbwWbwXbwYbwZbxabxbbxcbxdbxebwWbwTbwRbxfbwRbwRbwRbxgbxhbxibxgbwRbwRbxjbxkbxlbxmbxnbcrbhpbxobhpbhpbxpbhjbhjbhjbhjbrybrzbrAbxqbhpbxrbwbbhsbxsbxtbxtbxubxvbxwbxxbxybxzbxAbxBbxCbxDbxEbxFbxGbwlbxHbxIbxJbxKbtrbxLbxMbxNbxObxPbxQbxPbxPbxPbxRbxPbxSbtvbxTbcLaaeaaaaaeaaeaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCZaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbxUbxVbxWbxXbxYbxZbyabybbybbycbwKbydbyebyfbwQbygbwRbwRbwRbwTbwRbwRbwRbwRbwRbwRbwRbwRbwXbyhbwRbxabwRbyibwRbwRbwRbwTbwRbwRbwRbwRbwRbxgbwRbwXbxgbwRbyjbsTbcrbykbylbymbymbynbyobypbhpbyqbyrbyrbysbyrbyrbysbysbytbhpbyubyvbdXbywbyxbyybkEbyzbyAbyBbyCbyDbyEbyFbyGbyHbyIbtnbyJbyKbyLbyMbwlbwlbyNbyObyPbyQbyRbySbyTbyUbyVbyWbyXbyYbyZbtvbxTbcLbcLbcLbcLbzaaaeaaaaaaaaeaaeaaeaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjNbjNbjNbjNbjNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbwBbwBbwBbzbbzcbzdbzebzfbzgbzhbybbzibzjbzkbzlbzmbznbzmbzmbzobzpbzpbzpbzpbzpbzpbzpbzqbzrbzsbztbxabwRbwRbwRbwRbwRbwTbwRbwRbwRbwRbwRbzubzvbzwbzxbzvbzybzzbzAbzBbzCbhpbzDbyobyobzEbhpbzFaaaaaaaaaaaaaaaaaaaaaaaabzGbzHbzIbkEbzJbzKbzLbdXbzMbzNbdXbzObzPbdXbdXbzQbzRbzPbtnbzSbzTbzUbzVbwlbzWbzXbzYbzZbtvbtvbtvbtvbtvbtvbAabAbbtvbtvbtvbAcbAdbAdbAebAfbAgbAhbAibAibAibAibAibAibAibAiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbzbbAjbvvbvvbvvbvvbvvbAkbAlbAmbAnbAobApbvvbAqbAqbArbAsbAtbAtbAubAvbAwbAtbAtbAtbAxbAybAzbAAbABbACbACbACbACbADbACbACbACbzGbAEbAFbAGbAHbAIbAJbzzbAKbzBbzAbhpbALbAMbANbAObhpbAPaaaaaaaaaaaaaaaaaaaaaaaabzGbAQbmgbdXbARbdZbASbdXbATbdZbAUbAVbAWbAXbdXbAYbdZbAZbtnbBabwlbwlbwlbwlbBbbBcbBdbBebBfbBgbBhbBibBhbBjbBkbBhbBfbBfbBfbBfbBfbBfbxTbAibBlbBmbBnbBobBpbBqbBqbBrbBsbAiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwBbzbbBtbBubBvbBwbBvbBxbBybBzbBAbBBbBCbBDbvzbBEbBFbBGaaaaaeaaabBHbBIbBHaaaaaeaaabBJbBKbBLbBMbBNbBObBPbBQbBRbBSbBTbBUbBVbBWbBXbBYbBZbCabCabCabCbbCcbCdbBYbCebCebCfbCgbChbCibCjbCabCabCkbClbzGaaaaaaaaabzGbzHbmgbdXbCmbdZbdZbCnbATbdZbCobkGbdZbCpbdXbCqbdZbCpbtnbwlbCrbwlbwlbwlbCsbtrbCtbCubBfbCvbCwbBhbCxbCybCzbBhbCAbCBbCCbCDbCEbBfbxTbAibCFbCGbCHbCIbCJbCKbCLbCMbCNbCOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabArbArbArbCPbCQbCRbCSbCSbCSbCTbCUbCVbCWbCWbCXbCYbCZbDabDbbDcaaebDdbDdbDebDfbDebDdbDdaaebDgbDhbxabDibAHbACbDjbDkbDlbDmbDnbDobDpbDqbDrbDsbDtbDubDvbDwbDxbDybDzbDxbDAbDBbDxbDCbDDbDEbDEbDFbDGbDHbDIbzGaaaaaaaaabzGbzHbzIbkEbDJbDKbDLbwfbATbdZbDMbDNbDObDPbdXboPbDQbDRbtnbtobDSbDTbDUbtobDVbtrbDWbrSbBfbDXbBhbDYbDZbEabEbbBhbEcbEdbEebEfbEgbBfbxTbAibEhbEibEjbEkbElbEmbEnbEobEpbCOaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarTaaaaaaaaaaaabEqbErbEsbErbEtaaaaaaaaaaaabArbEubEvbEwbExbEybEzbBFbEAbArbvvbEBbvvbEBbECbEDbEEbBFbEFbDcaaabDdbEGbEHbEIbEJbEKbDdaaabDgbDhbxabELbEMbACbACbENbEObEPbEQbERbESbETbEUbEVbEWbEXbEYbEZbETbFabETbETbETbFbbFcbFdbFebETbFbbFfbFbbFgbDIbzGaaaaaaaaabzGbFhbFibFjbFjbFjbFjbFjbFkbFlbFmbFmbFmbFmbFmbFmbFmbFmbtnbtnbtrbtrbtrbtrbtrbtrbFnbjubBfbFobFobFpbFqbFqbFrbFsbFtbFubFvbFwbFxbBfbFybAibFzbFAbCHbFBbFCbFDbFEbEobFFbCOaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLbmLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFGbFHbFIbFIbFGbFJbFKbFLbArbArbFMbBFbBFbBFbFNbFObFPbFQbFRbFSbFTbFUbFTbFVbFWbFXbFYbFZbDcaaebDdbGabGbbEIbGcbGdbDdaaebDgbDhbGebGfbGgbGhbACbGibACbACbACbACbACbzGbGjbAEbzGbzGbzGbAGbzGbGkbzGbGlbGmbzGbzGbzGbGnbGobGpbGqbGobGrbGsbzGaaaaaabzGbzGbGtbGubGvbGwbGxbGybFjbGzbGAbFmbGBbGCbGDbGEbGEbGFbFmbGGbGHbGIbGJbGKbGLbGMbGNbwobGObGPbGQbGQbGRbGQbGQbGQbGQbGQbGRbGQbGQbGQbGSbGTbGUbGVbGWbGXbGXbGXbGYbEnbEobEpbCOaaaaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaabGZbHabHabHbbHcbHcbHcbHcbHcbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHdbHebHebFIbHfbHgbHhbHibHjbHkbBFbHlbBFbBFbBFbBFbHmbBFbHnbHobHobHpbHqbHrbHsbHtbBFbBFbHuaaabDdbHvbGbbHwbGcbHxbDdaaabDgbHybxabwRbAFbHzbHAbHBbGobGobGobGobGobGobHCbHDbHEbHFbzAbHGbHHbHIbHJaaaaaaaaeaaabzGbzGbzGbzGbHKbzGbHLbHMbFbbFbbFbbFbbHNbHObHPbHQbHRbHSbHTbHUbHVbHWbHXbHYbHYbHYbHZbIabIbbIcbIdbIebIfbIgbIhbIibIjbIkbyObyPbIlbImbImbImbImbInbImbIobIpbImbImbImbIqbIrbIsbItbIubIvbCHbIwbIxbIybFEbEobFFbCOaaaaaeaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaeaaaaaaaaaaaeaaaaaabIzbIAbIBbIAbHcbHcbHcbICbIDbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFGbIEbFIbFIbIFbIGbBFbBFbBFbBFbBFbBFbBFbHlbBFbBFbIHbArbArbIIbIJbArbArbIKbILbIMbINbIObIPbIQbIRbISbITbIUbIVbIWbIRbIQbIXbIYbIZbJabFbbJbbFbbFbbJcbJdbJebJfbJgbzAbzAbJhbJibzAbzAbHGbJjbzAbJkaaeaaeachaaeaaeaaebJlbJmbJnbJobJpbJqbJrbJrbJrbJrbJsbJtbFjbJubJvbJwbJwbJxbJybJzbJAbJBbJBbJCbJDbJEbJFbIcbJGbJHbIibJIbJJbJKbJLbJMbJNbJObBfbJPbJQbJRbJQbJSbJTbJUbJVbJWbJXbJYbJZbBfbFybAibKabKbbKcbFAbKdbKebKfbFEbEpbCOaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaebKgbIAbKhbKibHcbHcbICbICbKjbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHdbHebHebHebKkbKlbKmbKnbHjbKobBFbKpbBFbBFbBFbBFbBFbKqaaeaaeaaabKrbKsbKtbKubKvbKwbKxbwBaaabDdbKybDebDdbDebDdbDdaaabKzbDhbxabKAbzGbKBbKCbKDbKEbKFbKFbKFbKFbKFbKFbKGbKHbKFbKFbKIbKJbKKbKKbKLbKMbKMbKNaaeaaaaaabzGbzGbzGbzGbzGbzGbzAbzAbzAbKObJjbFjbKPbHRbKQbKRbKSbATbdZbKTbKUbKVbKWbKXbKYbKZbIcbLabLbbIibIibLcbIibLdbLebBdbLfbBfbLgbLhbLibLjbLkbLlbLlbLlbLlbLlbLlbLmbplbxTbLnbLobLpbLqbLrbLsbLnbAibAibAibAiaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaeaaaaaaaaaaaeaaaaaabHcbHcbKgbHcbHcbICbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFGbLtbLubLvbFGbLwbFKbFLbArbArbLxbLybLzbLAbLBbLCbLBbLDaaaaaeaaabLEbLFbLGbLHbLIbLJbLKbwBaaaaaebLLbLMbLNbLMaaeaaeaaabLObDhbxabwRbLPbLQbLRbLSbLTbLUbLVbLWbLXbLYbLZbMabMbbLSbMcbMdbMebMfbMgbMhbMibMjbMkaaeaaaaaaaaaaaaaaaaaeaaabzGbzGbzGbzGbKObJjbFjbFjbMlbMmbMnbMobATbdZbMpbMqbJEbKWbJDbJEbMrbIcbMsbMtbMubMvbLcbMwbMxbIkbwpbwqbMybMybMybMybMybMybMybMzbMAbMzbMBbLlbMCbMDbMEbLnbMFbMGbMHbMIbMJbMKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaebHcbHcbMLbMMbMMbICbICbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabMNbErbMObErbMPaaaaaeaaaaaabArbArbIIbMQbMQbMQbMQbIJbMRaaaaaaaaabwBbMSbMTbMUbMVbMWbMXbMYbMZbNabNbbNcbNdbNebNabNfbNfbNgbNhbNibNjbCkbNkbLSbNlbLTbNmbNnbLSbLSbNobLSbMabMbbLSbNpbNqbNrbLSbNsbNtbMibNubNvbNwaaaaaaaaaaaaaaaaaeaaaaaaaaaaaabzGbNxbNybNzbNAbNAbNAbNBbNAbNCbrGbNDbNEbNFbNGbNHbNIbNJbIcbNKbNKbNLbNMbNNbNObNPbNQbNRbNSbNTbNUbNVbNWbNXbNYbNTbNZbOabObbOabLlbOcbOdbetbLnbOebOfbOgbOhbOgbOiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarTaaaaaaaaeaaaaaabHcbHcbOjbICbICbICbICbOkbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaeaaeaaeaaeaaaaaaaaabwBbwBbMTbOlbOmbOnbwBbwBbwBbwBbOobOpbLMbOpbOqbOrbOsbOtbOubxabOvbzGbOwbLSbLSbOxbLSbLSbLSbLSbOybOzbOAbOBbOCbODbOEbOFbOGbOHbOIbOJbOKbMkaaebOLbOLbOLbOLbOLaaeaaeaaeaaeaaebzGbzAbOMbONbOObOPbOQbORbOSbOTbOUbFmbFmbFmbOVbOWbOXbFmbFmbFmbIcbOYbOZbPabPbbPcbNQbwpbPdbLlbPebPfbPgbObbPhbLlbPibPjbPkbPlbLlbPmbPnbPobPpbPqbPrbPsbOfbOgbPtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHcbICbICbICbICbICbICbPubICbPvbICbICbICbICbICbHcbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaeaaeaaeaaaaaaaaaaaebwBbMTbPwbPxbPybPxbPxbPzbwBbPAbPBbPCbPBbPDbOrbPEbPFbPGbPHbPIbzGbPJbLSbLSbLTbPKbLSbLSbLSbMbbPLbMabLSbOCbPMbPNbPObPPbNsbOHbPQbPRbPSbPTbPUbPVbPWbPWbOLaaeaaaaaaaaaaaebPXbzAbOMbONbPYbPZbQabQabQbbQcbQdbFmbQebQfbQgbQhbJEbQibQjbQkbIcbQlbNQbQmbNQbQlbNQbwpbQnbQobQpbQqbQrbQrbQrbQsbQrbMBbQtbQubLlbLlbQvbQwbLnbQxbLnbQybQzbQAbLnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHcbQBbQCbQDbQDbQDbQDbQEbICbQFbQDbPvbICbICbICbICbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFGbLtbLubLvbFGbLwbFKbFLbArbArbLxbLybLzbLAbLBbLCbLBbLDaaaaaeaaabLEbLFbLGbLHbLIbLJbLKbwBaaaaaebLLbLMbLNbLMaaeaaeaaabLObDhbxabwRbLPbLQbLRbLSbLTbLUbLVbLWbLXbLYbLZbMabMbbLSbMcbMdbMebMfbMgbMhbMibMjbMkaaeaaaaaaaaaaaaaaaaaeaaabzGbzGbzGbzGbKObJjbFjbFjbMlbMmbMnbMobATbdZbMpbMqbJEbKWbJDbJEbMrbIcbMsbMtbMubMvbLcbMwbMxbIkbwobwpbMybMybMybMybMybMybMybMzbMAbMzbMBbLlbMCbMDbMEbLnbMFbMGbMHbMIbMJbMKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaebHcbHcbMLbMMbMMbICbICbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabMNbErbMObErbMPaaaaaeaaaaaabArbArbIIbMQbMQbMQbMQbIJbMRaaaaaaaaabwBbMSbMTbMUbMVbMWbMXbMYbMZbNabNbbNcbNdbNebNabNfbNfbNgbNhbNibNjbCkbNkbLSbNlbLTbNmbNnbLSbLSbNobLSbMabMbbLSbNpbNqbNrbLSbNsbNtbMibNubNvbNwaaaaaaaaaaaaaaaaaeaaaaaaaaaaaabzGbNxbNybNzbNAbNAbNAbNBbNAbNCbrFbNDbNEbNFbNGbNHbNIbNJbIcbNKbNKbNLbNMbNNbNObNPbNQbNRbNSbNTbNUbNVbNWbNXbNYbNTbNZbOabObbOabLlbOcbOdbetbLnbOebOfbOgbOhbOgbOiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarTaaaaaaaaeaaaaaabHcbHcbOjbICbICbICbICbOkbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaeaaeaaeaaeaaaaaaaaabwBbwBbMTbOlbOmbOnbwBbwBbwBbwBbOobOpbLMbOpbOqbOrbOsbOtbOubxabOvbzGbOwbLSbLSbOxbLSbLSbLSbLSbOybOzbOAbOBbOCbODbOEbOFbOGbOHbOIbOJbOKbMkaaebOLbOLbOLbOLbOLaaeaaeaaeaaeaaebzGbzAbOMbONbOObOPbOQbORbOSbOTbOUbFmbFmbFmbOVbOWbOXbFmbFmbFmbIcbOYbOZbPabPbbPcbNQbwobPdbLlbPebPfbPgbObbPhbLlbPibPjbPkbPlbLlbPmbPnbPobPpbPqbPrbPsbOfbOgbPtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHcbICbICbICbICbICbICbPubICbPvbICbICbICbICbICbHcbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaaaaaeaaeaaeaaaaaaaaaaaebwBbMTbPwbPxbPybPxbPxbPzbwBbPAbPBbPCbPBbPDbOrbPEbPFbPGbPHbPIbzGbPJbLSbLSbLTbPKbLSbLSbLSbMbbPLbMabLSbOCbPMbPNbPObPPbNsbOHbPQbPRbPSbPTbPUbPVbPWbPWbOLaaeaaaaaaaaaaaebPXbzAbOMbONbPYbPZbQabQabQbbQcbQdbFmbQebQfbQgbQhbJEbQibQjbQkbIcbQlbNQbQmbNQbQlbNQbwobQnbQobQpbQqbQrbQrbQrbQsbQrbMBbQtbQubLlbLlbQvbQwbLnbQxbLnbQybQzbQAbLnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHcbQBbQCbQDbQDbQDbQDbQEbICbQFbQDbPvbICbICbICbICbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeachaaaaaaaaaaaeaaeaaeaaeaaeaaeaaebwBbQGbQHbwBbOnbwBbwBbQIbQJbPxbPxbQKbwEbwEbOrbQLbPFbwRbxabwRbQMbLSbLSbQNbQObQPbQQbQRbQSbQTbQUbMabLSbOCbODbQUbQVbLSbNsbQWbQXbQYbMkaaebQZbRabPWbRbbOLaaeaaaaaaaaaaaebRcbzAbRdbRebRfbRgbRhbRibRjbRkbRlbRmbRnbRobRpbRqbRrbRsbRtbRubIcbRvbRwbPabRxbRybNQbRzbRAbNTbRBbRCbObbRDbObbRCbObbObbREbREbRFbLlbQvbQwbLnbRGbRHbRIbRIbRIbRJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabRKbIAbIAbIAbIAbIAbIAbIAbRLbIDbICbICbICbICbRMbIDbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaaeaaeaaeaaeaaaaaaaaabRNbMTbOlbRObRPbRQbwBbwBbwBbwBbwBbwBbRRbwBbOrbRSbRTbwRbxabRUbRVbRWbRXbRYbQObRZbSabSbbScbQTbQUbMabLSbSdbSebQUbQVbSfbSgbShbSibSjbSkbSlbPUbSmbPWbPWbOLaaeaaeaaeaaeaaebRcbzAbOMbONbSnbSobSobQabSpbATbSqbSrbSsbStbSubSvbJEbJEbSwbSxbIcbSybPabSzbPabSAbNQbSBbSCbLlbSDbSEbSFbSGbSHbSIbSJbSKbSLbSMbSNbSObSPbQwbLnbLnbLnbLnbLnbLnbLnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaabHcbSQbSRbSSbMMbMMbMMbSTbICbMLbMMbSUbICbICbICbICbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaeaaeaaeaaaaaeaaaaaaaaabSVbMTbSWbRObSXbSYbSZbSYbTabSYbSZbSYbTbbRObOrbOrbTcbTdbTebTfbTgbThbKKbKKbLTbKKbKKbKKbKKbTibQUbMabTjbTkbTlbTmbQVbTnbTobQWbLSbLSbMkaaebOLbOLbOLbOLbOLaaeaaaaaaaaaaaebRcbzAbOMbTpbTqbTrbTsbTtbTubTvbyEbTwbTxbTybTzbTAbJBbJBbJCbTBbIcbTCbRwbTDbRwbTEbNQbTFbTGbLlbTHbTIbTJbTKbTLbTMbTNbTKbTObTLbTHbLlbTPbQwbcLaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaebHcbICbICbICbICbICbICbPubICbSUbICbICbICbICbICbHcbHcaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaaaaabwBbwBbwBbwBbwBbTQbTRbTSbTTbTUbTVbTWbTbbTUbTVbTWbTbbTXbTYbTZbUabwRbxabUbbUcbUdbUebUfbUgbUhbUibUjbUkbUlbUmbUnbUobUpbUqbUrbUsbPPbNsbUtbOJbUubUvbPTbPUbUwbUxbUxbOLaaeaaaaaaaaaaaebRcbzAbOMbONbUybUzbUAbUBbUCbATbUDbFmbUEbUFbUGbUHbJEbUIbUJbUKbIcbULbULbULbULbNQbNQbTFbUMbLlbLlbLlbUNbUObUObUObUPbUObUObLlbLlbLlbQvbQwbcLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaeaaaaaaaaaaaeaaaaaabHcbHcbOjbICbICbICbICbUQbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaabRNbURbwEbUSbUTbUUbUVbUWbUXbTbbTbbTbbTbbTbbTbbTbbTbbTXbTYbwRbUabwRbxabUYbUZbThbLSbLSbVabVbbVcbVdbVebVfbVgbVhbVhbVibVhbVhbVjbVkbNsbQWbQXbVlbMkaaebQZbVmbVnbVobOLaaeaaeaaeaaeaaebJkbzAbOMbAGbNAbNAbNAbNAbNAbATbdZbFmbFmbFmbFmbFmbOXbULbULbULbULbVpbVqbVrbULbVsbVtbVubVvbVwbVxbLlbUObUObUObUObVybUObUObLlbVzbVAbVBbVCbVDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaebHcbHcbQFbQDbQDbICbICbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaaaaaaaeaaabSVbLFbwEbVEbwEbMTbwBbRObVFbSYbSYbSYbTbbSYbSYbSYbVGbRObRObRObVHbVIbxabVJbVKbVLbVMbPQbVNbVObVPbVQbVRbVSbQUbVTbQNbQNbLSbVUbVVbVWbVXbVYbSibVZbWabWbbPUbWcbUxbUxbOLaaeaaaaaaaaaaaebzGbzAbOMbHGbWdbWebWfbWgbdZbATbdZbWhbWibWjbWkbWlbJEbWmbWnbWobWpbWqbWrbWsbWtbWubWvbWwbWxbWybWzbLlbWAbWBbUObUObUObWBbWCbLlbQvbQwbQwbQwbWDbVDbcLaaaaaeaaaaaaayGayGayGaaaaaaaaeaaaaaaaaeayGayGayGaaaaaaaaeaaaaaaaaeaaaaaaaaeaaaaaabHcbHcbKgbHcbHcbICbICbICbICbICbICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaabWEbWEbWEbwBbwEbWFbwBbQGbwBbRQbTbbTUbTVbWGbTbbTUbTVbTWbTbbTbbWHbTbbWIbwRbxabWJbvIbvIbKKbWKbWLbWMbWNbWObKKbWPbQUbWQbWRbLSbWSbWTbWUbWVbNsbQWbLSbWWbMkaaebOLbOLbOLbOLbOLaaeaaaaaaaaaaaebzGbzAbOMbHGbzGbdXbWXbtgbrGbWYbdZbWZbJEbJEbXabJEbJEbXbbXcbXdbXebXfbXcbXgbULbXhbXhbXibXjbXhbXhbLlbUObUObUObXkbUObUObUObLlbXlbPobPobPobXmbXnbXobXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXqbXrbXsbXtbHcbHcbICbICbXubICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaabWEbXvbXwbwBbwEbVEbwBbXxbXybRQbTbbTbbXzbTbbXAbTbbXBbTbbTbbTbbXBbTbbWIbwRbxabwRbXCbXDbvIbXEbKKbPKbXFbXGbUkbXHbXIbWQbXJbLSbQXbXKbXLbXMbNsbXNbOJbXObUvbPTbPUbXPbXQbXRbOLaaeaaeaaeaaeaaebzGbzGbXSbXTbXUbkEbkEbkEbXVbATbXWbWhbXXbXYbXZbYabXYbWmbYbbYcbULbYdbXcbYebULbYfbYgbYgbYgbYgbYhbULbLlbLlbLlbLlbLlbLlbLlbLlbTPbYibYjbYkbcLbcLbcLaaaaaeaaaaaaayGayGayGaaaaaaachaaaaaaaaeayGayGayGaaaaaaaaeaaaaaaaaeaaaaaaaaeaaeaaebYlbYmbYnbKibHcbHcbHcbICbIDbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaabWEbWEbWEbwBbwEbWFbwBbQGbwBbRQbTbbTUbTVbWGbTbbTUbTVbTWbTbbTbbWHbTbbWIbwRbxabWJbvHbvHbKKbWKbWLbWMbWNbWObKKbWPbQUbWQbWRbLSbWSbWTbWUbWVbNsbQWbLSbWWbMkaaebOLbOLbOLbOLbOLaaeaaaaaaaaaaaebzGbzAbOMbHGbzGbdXbWXbtfbrFbWYbdZbWZbJEbJEbXabJEbJEbXbbXcbXdbXebXfbXcbXgbULbXhbXhbXibXjbXhbXhbLlbUObUObUObXkbUObUObUObLlbXlbPobPobPobXmbXnbXobXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXpbXqbXrbXsbXtbHcbHcbICbICbXubICbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaabWEbXvbXwbwBbwEbVEbwBbXxbXybRQbTbbTbbXzbTbbXAbTbbXBbTbbTbbTbbXBbTbbWIbwRbxabwRbXCbXDbvHbXEbKKbPKbXFbXGbUkbXHbXIbWQbXJbLSbQXbXKbXLbXMbNsbXNbOJbXObUvbPTbPUbXPbXQbXRbOLaaeaaeaaeaaeaaebzGbzGbXSbXTbXUbkEbkEbkEbXVbATbXWbWhbXXbXYbXZbYabXYbWmbYbbYcbULbYdbXcbYebULbYfbYgbYgbYgbYgbYhbULbLlbLlbLlbLlbLlbLlbLlbLlbTPbYibYjbYkbcLbcLbcLaaaaaeaaaaaaayGayGayGaaaaaaachaaaaaaaaeayGayGayGaaaaaaaaeaaaaaaaaeaaaaaaaaeaaeaaebYlbYmbYnbKibHcbHcbHcbICbIDbICbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaabWEbXvbYobYpbPxbYqbwBbYrbYrbYsbYsbYsbYsbYsbYsbYsbYsbYtbYtbYsbYsbYsbYubYvbYwbwRbYxbYybYzbYAbYBbLSbXFbYCbYDbYEbYFbYGbYHbYIbYJbYKbLSbMgbYLbQWbQXbYMbMkaaebQZbYNbYObYPbOLaaeaaaaaaaaaaaeaaebzGbYQbYRbYSbYTbYUbhsbhsbYVbYWbFmbFmbFmbFmbFmbFmbULbULbYXbYYbYZbZabZbbYgbZcbZdbZebZfbZebZgbULbZhbZibZjbZkbZkbZkbZkbZkbVBbZlaaaaaaaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaeaaebZmbHabHabHbbHcbHcbHcbHcbHcbHcbHcaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaadaadaagaadaadaadajHaadaadaadaagaagaaaaaaaaeaaeaaaaaaaaaaaaaaaaaabWEbXvbZnbYsbYsbZobYsbZpbZqbYsbZrbZsbZtbYsbZubZvbZwbZxbZxbZybZzbZAbZBbwRbxabZCbZDbZEbZEbZEbKKbKKbWLbZFbKKbZGbVgbZHbZIbZJbVibVkbMgbZKbZLbVYbSibZMbWabWbbPUbZNbXQbXQbOLaaeaaaaaaaaaaaaaaebzGbzGbzGbzGbzGbGnbGobGobZObDAbDAbDAbDAbDAbZPbDAbDAbDAbZQbZRbZSbXcbZTbZUbZVbXcbZWbZVbZXbXcbULbxTbZYbYibZZbcLbcLbcLbcLbcLbcLaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaeaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaeaaeaaaaaeaaeaaaaaaaaeaaeaaeaaaaagaaaaaeaaeaaaaaaaaaaaaaaaaaaaaabWEbXvbZncaacabbZxcaccadbZxcaecafcagbZxcahbZxcagbZxbZxbZxcaicajbwRcakcalbxacamcancaocapcaqcarcascatcaubKKcavbQUbMgcawbMhcaxbMhcaycazbOHcaAbLSbLSbMkaaebOLbOLbOLbOLbOLaaeaaaaaaaaaaaaaaaaaeaaeaaaaaebzGbzGbzGbzAbzAbzAcaBcaCcaCcaCcaDcaCcaCcaCbxTbZRcaEbXccaFcaGbZVcaHcaIcaJcaKcaLbULbxTbZYcaMaaaaaaaaaaaaaaeaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa From 89ff98a2d028f5379889ed5a5277adebd03549b3 Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Sun, 8 Jul 2012 20:40:52 +1000 Subject: [PATCH 07/15] fix for [name] drops what they were holding, their l_hand malfunctioning! Signed-off-by: caelaislinn --- code/modules/mob/living/carbon/human/life.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index a0a0b8da8a9..72afe3247fd 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -908,7 +908,7 @@ if(E.name == "l_hand" || E.name == "l_arm") if(hand && equipped()) drop_item() - emote("custom v drops what they were holding, their [E] malfunctioning!") + emote("custom v drops what they were holding, their [E.display_name?"[E.display_name]":"[E]"] malfunctioning!") var/datum/effect/effect/system/spark_spread/spark_system = new /datum/effect/effect/system/spark_spread() spark_system.set_up(5, 0, src) spark_system.attach(src) @@ -918,7 +918,7 @@ else if(E.name == "r_hand" || E.name == "r_arm") if(!hand && equipped()) drop_item() - emote("custom v drops what they were holding, their [E] malfunctioning!") + emote("custom v drops what they were holding, their [E.display_name?"[E.display_name]":"[E]"] malfunctioning!") var/datum/effect/effect/system/spark_spread/spark_system = new /datum/effect/effect/system/spark_spread() spark_system.set_up(5, 0, src) spark_system.attach(src) From bfa9fed8629903cdbc92b12226d80aa1e42c00a8 Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Mon, 9 Jul 2012 01:06:10 +1000 Subject: [PATCH 08/15] new chemistry reagent and recipe used with xenoarch Signed-off-by: caelaislinn --- code/modules/chemical/Chemistry-Machinery.dm | 2 +- code/modules/chemical/Chemistry-Reagents.dm | 7 +++++++ code/modules/chemical/Chemistry-Recipes.dm | 7 +++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/code/modules/chemical/Chemistry-Machinery.dm b/code/modules/chemical/Chemistry-Machinery.dm index be45c0fa5d9..54123e84aac 100644 --- a/code/modules/chemical/Chemistry-Machinery.dm +++ b/code/modules/chemical/Chemistry-Machinery.dm @@ -14,7 +14,7 @@ var/max_energy = 75 var/amount = 30 var/beaker = null - var/list/dispensable_reagents = list("hydrogen","lithium","carbon","nitrogen","oxygen","fluorine","sodium","aluminum","silicon","phosphorus","sulfur","chlorine","potassium","iron","copper","mercury","radium","water","ethanol","sugar","acid","milk",) + var/list/dispensable_reagents = list("hydrogen","lithium","carbon","nitrogen","oxygen","fluorine","sodium","aluminum","silicon","phosphorus","sulfur","chlorine","potassium","iron","copper","mercury","tungsten","radium","water","ethanol","sugar","acid","milk",) var/charging_reagents = 0 ex_act(severity) diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 753fafc8d94..d4af81e5f45 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -657,6 +657,13 @@ datum reagent_state = SOLID color = "#832828" // rgb: 131, 40, 40 + tungsten //used purely to make lith-sodi-tungs, which is used in xenoarch + name = "Tungsten" + id = "tungsten" + description = "A chemical element, and a strong oxidising agent." + reagent_state = SOLID + color = "#808080" // rgb: 128, 128, 128, meant to be a silvery grey but idrc + lithium name = "Lithium" id = "lithium" diff --git a/code/modules/chemical/Chemistry-Recipes.dm b/code/modules/chemical/Chemistry-Recipes.dm index 43052a475f3..8674fb43cd6 100644 --- a/code/modules/chemical/Chemistry-Recipes.dm +++ b/code/modules/chemical/Chemistry-Recipes.dm @@ -312,6 +312,13 @@ datum required_reagents = list("sodium" = 1, "chlorine" = 1) result_amount = 2 + lithiumsodiumtungstate //LiNa2WO4, not the easiest chem to mix + name = "Lithium Sodium Tungstate" + id = "lithiumsodiumtungstate" + result = "lithiumsodiumtungstate" + required_reagents = list("lithium" = 1, "sodium" = 2, "tungsten" = 1, "oxygen" = 4) + result_amount = 8 + flash_powder name = "Flash powder" id = "flash_powder" From a3ea5fb087baaefcc323e51393e5fd39f3d0560d Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Sun, 8 Jul 2012 19:25:10 +0300 Subject: [PATCH 09/15] Fixed a bug where rig helmet lights would not turn off and a bug with door assembly icons. --- baystation12.dme | 2 -- code/game/objects/devices/flashlight.dm | 2 +- code/game/objects/door_assembly.dm | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/baystation12.dme b/baystation12.dme index f9c0cf04725..ba6a1f7196d 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -170,7 +170,6 @@ #define FILE_DIR "code/WorkInProgress/Apples" #define FILE_DIR "code/WorkInProgress/Cael_Aislinn" #define FILE_DIR "code/WorkInProgress/Cael_Aislinn/BirdMan" -#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Jumper" #define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Rust" #define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Supermatter" #define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Tajara" @@ -210,7 +209,6 @@ #define FILE_DIR "icons/vending_icons" #define FILE_DIR "interface" #define FILE_DIR "maps" -#define FILE_DIR "maps/backup" #define FILE_DIR "maps/RandomZLevels" #define FILE_DIR "sound" #define FILE_DIR "sound/AI" diff --git a/code/game/objects/devices/flashlight.dm b/code/game/objects/devices/flashlight.dm index 33956b55d68..316663a5be7 100644 --- a/code/game/objects/devices/flashlight.dm +++ b/code/game/objects/devices/flashlight.dm @@ -174,7 +174,7 @@ if(on) user.ul_SetLuminosity(user.LuminosityRed + brightness_on, user.LuminosityGreen + (brightness_on - 1), user.LuminosityBlue) else - user.ul_SetLuminosity(user.LuminosityRed + brightness_on, user.LuminosityGreen + (brightness_on - 1), user.LuminosityBlue) + user.ul_SetLuminosity(user.LuminosityRed - brightness_on, user.LuminosityGreen - (brightness_on - 1), user.LuminosityBlue) /obj/item/clothing/head/helmet/space/rig/pickup(mob/user) if(on) diff --git a/code/game/objects/door_assembly.dm b/code/game/objects/door_assembly.dm index fb0adfec859..2b919028882 100644 --- a/code/game/objects/door_assembly.dm +++ b/code/game/objects/door_assembly.dm @@ -379,7 +379,7 @@ obj/structure/door_assembly src.mineral = "glass" src.name = "Near finished Window Airlock Assembly" src.airlock_type = /obj/machinery/door/airlock/glass - src.base_icon_state = "door_as_glass" //this will be applied to the icon_state with the correct state number at the proc's end. + src.base_icon_state = "door_as_g" //this will be applied to the icon_state with the correct state number at the proc's end. if(/obj/item/stack/sheet/gold) if(G.amount>=2) playsound(src.loc, 'Crowbar.ogg', 100, 1) From a4dbea9fd80bafa90b87c8f27cf34ee27569a199 Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Sun, 8 Jul 2012 19:44:39 +0300 Subject: [PATCH 10/15] Updated with new icons from Hawk's closed pull request. --- icons/policetape.dmi | Bin 2181 -> 1931 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/policetape.dmi b/icons/policetape.dmi index 533d6cca8a669c3a85a95faeea794a37bf804a90..b064e190aa87af7138fb5625b03cd7dfc29ac735 100644 GIT binary patch literal 1931 zcmV;62Xy#}P)C0000&P)t-s0001O z&I`^93r|k~zrO(C;Q&E6BUe`o!omyU;tK!(0P3j||I9Q0{rWF2dtF`g{{H^`{r~^} z|MTfFDZ*Bkpc$}4z z%L>9U5JlI?SA=#izP4_pMY^!RAjOQyfK5s=)ZaH4goEyV*h*%WqLDJ-C|ltZL}AdS`J?|6kv%7H2=G=`X-H&WcfFhZWcVLx$M z?S0^~mJ7~B5S&2=5YQQ>+h>CzxGbSe~KD9000IyNkl1z8g&lgF^=4Q-~XQ&fTJh-KaQ`aIYkg=AOkRE;F$zy+ZBTC^gIqgFGIXuuZ#>z zsiwIcz=e6GWWean>s1Dz_4}=L{_1qQk}^>Awk-nCT7TZId@=<2_DBZoJOqEeN<2V! zf9o8#>63Wr#bkH_8M6J=34hM?-=oLAD)I-!KKr5Ou!mKC2}HcvFB;2%T+5 zyScO@L}F6vprLc6aX;`+hyTI9*pdT?U65@@*E7V+kA@%(%?!{501XjzUEl$XpgFg( z3A61kI(mRJ!7_MbjN@wloj#961f87)vhCjVo`PjyO_bVeLO;eGLjdD!1hkt=J3=HTrK13`3u1stWfX)VdOsS}ArByd=G?~@!5{Vj2x>jM9lHF#rRC#Q>zTFuh_7v;!HV z;8_5=uRaKRmDmlZ&JRci@DG{|N79RR^2djG?yIsr{e zw`Sn41p&$MwG50bL&1vZ3WA~~*%bsT2I%eua0oHLogTpQorx$9(05-xALvavz`65- z*aOCt18{Zh{6Ls6yYa~boH{=c09`S_x$}bxCOmh3P{D-fiU24#VQqi|9+=;+tzADq zuy%c8at6SySO@FMkUu}5_6317;ZXpJZgq};qFWUa2!O*G&=B2ekRwnK-DwaJRLg)% z064(sK%O5A798MnklPzdfUS>SgZPvIs%(6IFjz$ypvroJO$lIb?6DFBU-j>Vp6g*4 zGzcIGAh1=gU4Z}rft-j0fSVeiGWfB7M}LgrSGy&EC4f;FfdMQ5jI$B8GvMPJ3~spc z@pAyN3u1uD1)CmN&3`uo3`C$g_u~9uAOgj?uWmvj(Aiml2vj@^RGkNS8qA&_@H80h zq3g|rsQc=JU`U-GR0KG7eo*&mc%b}g0NvLCj*o&`04Gcsl)sMx+_W|OClB!LRq>In zSzUntiwTbcY!y8eoAj|&3IXhw0Xl0VfX(j*R0inc1xLKqx*VX30ET&meFuOv;n21# z1WMHg5GI7Rentjd0#*lzP3Xc5DH&-0GYs_sOm87O+&-UATJfSrfnZX;IR17Z|# z$VmpDdW^0v7zNqm2b5t>{q+5St1~ctKY(PQ=;8i_gDogu+`eQA>+AZz|6HyER#ibn~5|h$4fRAr6xaG>n zj{!smXva$sgC7m5zyquK?<9cq0PZ;zXM$z$#<;dQ@0+L}hbh za%pgMX>V=-0C=2@&pismFboCY**=9x_R_!AOGzjmk}DKbtG1xEgDlePcgT`bO1w$% zJ$SE$OMkT^bc5A1a-p2SzP=oE7&slZibx^K@)U7`V4#`ulkRvc;#eB3JaGX7 z2dy6LUbx)9I8U|K=ghS>*1~xcVhWTHnNq0S_MNC0xDISLU+cg1Tj<9Qy20uX0SJmh zgr%*n000M|Nkl8s&GEW62LnMuT|{gN;L(2w zs)(26C@*;QmwAqit1CeQ5usC79w>7_9Y_<+MMS&`pFeg00H40h;rmYLdBI5;b~uRa zlVfiM`Mwk0-|xOJ7QlEc){7>B*Ra7rd>%akz|Jv5#9|>n$76jGR89wk^Z_{u@O>c# zR3M9(N}7XZ*{9m@=j~3C@{&M~mz_>!e|?+-$Up$yG$0~{qJ$UT@0UkHRrYlxNfqss zU&!HveqVg1BEa{ZmFlJeadBjZBVt6(n^fV=^TkQfJYzQI5$dAMdHS&ZZwu^pGUCDL2;5a7^s~N zMC`}PRxAPX&C5xTF5=KO+Mbt$D(r{hjsRW;fk(SalK%g%lRDZ}NR%L1cgN%1g^Jb7Ha?2iYWp`+W-1E$JfU>uC4?jpFei+`C}(COhHS(A3a_rhgpz13FkqPxu7ijTsFv= zT+3yRrQDRRo79n>s_at^;AC-dxg!uEzx^%mmT*ml)WEzU#`o}J|vhklX?2|K#82LOjmIOp=2`3}dV4SX|>!NP^X%N?O zBk=uZIJyKRjU{mjGX#`~G{f75fRd3kyln`m0CAFJ2&fP$Niqaf3|W#40X2Y2k|Cf* z_`VYw0%}I?=K%)AppgXlzO%Z#bXH;LgpMPYq96EFg;F2LRDq`_;QCs>oVwnRXk-nL z@$!Oo5#`kJe#E;VpeWSweuN=lgSy_2Xmk!B?SFaEFRQNiBN|OWkx)gyO8=8`L)Q1> zj0DvTQv-5<`WzG2wgBMnVYvqKJ)dqg0Z&iW+2S3&>9A|P&Y!pYCa!Irb}rBxWq)Sf zXbHN$E~XQf1mAa7(_z<|xVANM?TGU!`d{bIm=3#E)*gAI2>`0A1+vp=nYgy4Lqek^ z2oN=(h-T;^Q1rjfpSRIY+D{-7sCG<;U8^?|BqT{vtL{Opw>-~BcD|f+fhZX}f?#cr zO_}zE3`0b)I~#yqurIQe9LNAQQvkc|n`klDNFk$`VCcTO2f0 z%s=y%)kKJ<>1+)w4@zz8>S|wlR7ou^(b2xR^Y}iB{FfK3btI_Bv7kdZ?Ofn>{v1iP zz0qtX*B_khL{(BzR+j>ZxIG(Q0Y4JLpdAT^x? z^M*_g(4)$eKW5u)H#b;o%?mo#-|yGK&qo_)xBJ7;SrCz+I)1;usi5fp`DkmE6Ct3E z-|ufSDEhAUkxEaIQy^^jilLR~Wy05K&OYUw^zsgx|a9jq=G*Y6AGrY)yw!57Tw9*14PZMpyY~O(suE|n%j$A~>~vZtu6@)bl%4}9`ZrUw z0qnG&KqOG@m=3$>jf(p{&bJKRen2b%vh(Gn3q;A-5yTR7!vAs|`}+xrH9#>x9@F8j z6Ve;aFmdfo)X(5~!O5NPghar^wPQ)3_Y;6!=Z1G|bh`O6ROSAwNq;TPP(TnPCZ+B} zCV?a=t|t6^6!OKB8f^n`FxegI49SjBm3wx(gwAL@*)C)#q70mNE^zm-+}4ak$C0yS zC&e90>u0yiy=^j7%vBY%4hw<+77KFE~llFGwppJjzt-hxV(= z)fu~yQECz Date: Mon, 9 Jul 2012 09:09:31 +0300 Subject: [PATCH 11/15] Fixed a bug where non-admins would receive a message about mod reports on login --- code/game/player/admin_report.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/player/admin_report.dm b/code/game/player/admin_report.dm index 1234bab076f..85e2d7f6fa2 100644 --- a/code/game/player/admin_report.dm +++ b/code/game/player/admin_report.dm @@ -69,6 +69,7 @@ proc/load_reports() // check if there are any unhandled reports client/proc/unhandled_reports() + if(!src.holder) return 0 var/list/reports = load_reports() for(var/datum/admin_report/N in reports) From 6d80fb92b0888fcd220053235c50d4e2acd25f73 Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Mon, 9 Jul 2012 09:25:37 +0300 Subject: [PATCH 12/15] Updated alienwhitelist.txt --- config/alienwhitelist.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt index a9968503e5a..fd0dbe1bfff 100644 --- a/config/alienwhitelist.txt +++ b/config/alienwhitelist.txt @@ -12,6 +12,7 @@ forsamori - Soghun galenus - Soghun masterofstuff - Skrell mangled - Skrell +quilan - Tajaran searif - Soghun searif - Tajaran searif - Skrell From 9f7c037d3f63653bbc422e614ea60918f2319a77 Mon Sep 17 00:00:00 2001 From: CIB Date: Mon, 9 Jul 2012 11:59:23 +0300 Subject: [PATCH 13/15] Moved the restart vote reminder inside the vote dialog. --- code/game/vote.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/vote.dm b/code/game/vote.dm index a798a3e5f04..97b45c72d61 100644 --- a/code/game/vote.dm +++ b/code/game/vote.dm @@ -264,9 +264,11 @@ text += "[vote.endwait()] until voting is closed.
" if(vote.instant_restart) - text += "Restart the world? ONLY PRESS THIS IF THERE'S A ROUND-BREAKING GLITCH.
    " + text += "Restart the world? ONLY PRESS THIS IF THERE'S A ROUND-BREAKING GLITCH.
    " else - text += "Call the Crew Transfer Shuttle?
      " + text += "Call the Crew Transfer Shuttle?
      " + + text += "*** Please make sure to only vote 'no' if you yourself are currently enjoying the round. If you find the round to have gone stale, you should always vote 'yes', regardless of how others are feeling about the round.
        " var/list/VL = list("default","restart") @@ -467,7 +469,6 @@ proc/automatic_crew_shuttle_vote() world << "\red*** An *automatic* vote to call the crew transfer shuttle has been initiated." world << "\red You have [vote.timetext(config.vote_period)] to vote." - world << "\red*** Please make sure to only vote 'no' if you yourself are currently enjoying the round. If you find the round to have gone stale, you should always vote 'yes', regardless of how others are feeling about the round." log_vote("Automatic vote to call the crew transfer shuttle.") From a491ca08832347518c0e02304f5d5c712fd4d34a Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 9 Jul 2012 20:03:29 +0300 Subject: [PATCH 14/15] Fixed tape quirks Sprites having non-transparent background and tape being placed 'diagonaly' even though user gets message that it could not be --- code/WorkInProgress/Ported/policetape.dm | 1 + icons/policetape.dmi | Bin 1931 -> 1855 bytes 2 files changed, 1 insertion(+) diff --git a/code/WorkInProgress/Ported/policetape.dm b/code/WorkInProgress/Ported/policetape.dm index 0514c12cc34..fcb6643af8f 100644 --- a/code/WorkInProgress/Ported/policetape.dm +++ b/code/WorkInProgress/Ported/policetape.dm @@ -35,6 +35,7 @@ end = get_turf(src) if(start.y != end.y && start.x != end.x || start.z != end.z) usr << "\blue [src] can only be laid horizontally or vertically." + return var/turf/cur = start var/dir diff --git a/icons/policetape.dmi b/icons/policetape.dmi index b064e190aa87af7138fb5625b03cd7dfc29ac735..bf3d726ada23be57defb53423a986d122d0522c5 100644 GIT binary patch delta 1602 zcmV-I2EF-<55EqOBnU82OjJd{z`&6#Bn>YwdtF`gz`($D+)L4sZ_s}Q{7FPXRCt`_ znvHg=DiDQjP)R_1|Hr+|4^e?3qNwYxLtDBUtn;yFgFw=C&zHZyzs(O-OL@Iso1gXo zT>bGEzp?;u_2RE>Q4IjF*NYMf!0WXDBntGZ1;R=J{@x<26o|{v_h$*d3J3sS1zuTz zaV!wDkmpBH!!QVGP)dLG{pA2Y%#ce1M(>BA?q*uQ-&)tUt27N1eH^O*wAP=uFCT$G zZjaJ{ormDVP~!o*`&&x{rS?@Cg7g@@%7Pm1?lqPO%I%znMf%F<*g?o}=wlK>Y7c=p z4HUgf`sM!AL#p0-XS?sQf)dgYcV7P}-|L`f`t$i{5I7|e+d+T&o+&U5QRj{M6iXD~ zO#!+j(PBH=&C8AunMuh&gYl*JU+{;)zu-@7kpjdn5Zlr93^9b!u#%x)0L%)YCjzqo zd?kvQGcJGZ3HdO0%ChGeW2hpa88ukYr-(mWCmclePepX z7-$DFhH$rhge`y3zV^(B=QNNnDgcta*S4<+Fb&911JJHyM#Jq0<(1Mc1ma5RE`t0@ z=~e_t!;=8rbEDu(pdJQjvUB^livIW~^zIq=8h}0lxbyq~0Fw2fOADn(84?yHagSFn=j%lFiiS)k# zAU-KTm5qO{g7~BWRbSJQF1UBYG>DyN0Lg?9*lN$NApt1?1h&vi1qoOYfb^CrFb&12 z`6qxSfG#lt16Ts+79*hDyzB@ePfFDQu?u2=Z{TF4M417&BG?Q-DjU-)#y~re zG4=ys-ir@{DW_`g{D9IxzNi5Bc|Ndv;lXJ@h8lo&MH~&VEWZOF`-mn0`C-(YAU7%9 zr+~0hx>13S(+~p`Rzz12R4vJ_AW$)YxfdXrJG8me1DSHyL?i=D=Hc^!$<_n3JU`IJ z+IoKgu8y4_!~jOz_{adK&JPj*Qw?zL{2&52V#0Ih2Qk0_6Sgd{?t2{IfCrZU*UpvC z51cD+OwIuK73=JLndS2XYA+Cg36BC$bf+Z(itbdAzylmsKtpt&1BpOEbf1GF!3hPt z0N{Y2L3(~LJ8(eIK-wFo06X7$h4`cZRW5%%KbV~&1*md)f=mivZk(`63cect6MC-a zdDf7ClmG%d<=Yh`KqP>PC;{+O15_5@_BZs)T7EUW{muZ60J_8o4B!Z$lZ=p4AjG#A z+;SD-O8~J8VgSJf84ncoHw(Z_1e&!^&JSiHP^^7(6B2n8kF^!&6*XZN&8or?hO{gjILNW9=EZ?!G}FcH8kt+1~FNKH78V}YQxJQ)+hT3<*5 zE&-bZ#3uA%=3E+R|1;0+0n$~kO4ENp(Z}%~fH)196@bYes?Z=L0AW6un0J{U5!~1JJn#zBh|$sO~(>Z8KI$!B=B|I0YcR zV+u?|t@H+-FHkw!|I;t$_*JvH7$%|^0E(9#A>>J^01)Ck4DPrJ@ne8Q0os4@62u%v zLyZhY{Y?sxdI0yFik09r1Y_(dXH6JPA1F8toRbSCqQr!2(<{b6JCHG&1Eljnauuh6 zd~rEIu5cQVp*4Vf7QG=jFdCWyWFOH@0L)&1(n{$Rfb=xX5ad@%rvdhuFd#r08UxgA z%`O=QRa-NkhQ_|NsC0^Yj1t`TzX< z|6F$tu902Pe+D*5L_t(|oZXs@mZK;Th10=EA};Pav+w_^OZ}iofr_G;v-D~DbTHOO z-3tQAWBhV?jN{MG&*GP=xjdiG#czE8_zQ9QhhLcixO(!>vZx9G*y}kH0^s?a0YnBG zbq?V%j@*6U|DPCuqbK`6j<2RUMG$5n12ARanFMIte-(o5^gIqgFGIXuuZ#>zsiwIc zz=e6GWWean>s1Dz_4}=L{_1qQk}^>Awk-nCT7TZId@=<2_DBZoJOqEeN<2V!f9o8< zT6-XaPd!H8F+KtSxVy`7j$pl=WtdaHD|!gvItU8;K8g^zb{~jkpy)eN9|OSssfSd( zBZ6$Zf9tV=;$?_CuQ$pB06o*6&qqUoB|)|wQr|EI$`EzF>prU`0(et^Q3#!FN4vSS zBSd0S>Y$->rEx#-Plx}(zu1xkh+U9vN7pmN%a4X24b2SD1po~ZbY0*9jG#HUu?e&7 zE;@REGr=-=V~pc!{+&LLMFgFl1+wkl^qzuce_&0N+G|2T(If`odi%okiZRd*WQ@$+ zrV>uYA0WzKnr=^wc$R^DQ2-!x7X({3n+Z?`WGDfsR}!P)UV!8y`d)ywmC`)`xs}p= z04&2d0mko*f{8$V8DPiG?P`F{@`nNFk9$Jzo^h`MXavBu=LZr%tOu?=KiC6s>iocL ze@w?a0M4Bs^v0|b!~kxUmd(JS^Mk%^R|u5a0dTIUzV9xmW^;z*;^%Lpy+KY0g@*4(Y5P}dtc@P*C%RE5G-WC&O`9NFYy3HH#$c^(Tz$H z%rf}YV|0}m1=$Q}i0(AV5x{-n?nweKf5V)5zh2#)0ha)9fX{*4A3&1l9EADic9eml z2kmeGLjdD!1hkt=J3=HTrK13`3u1stWfX)VdOsS}ArByd=G?~@f59LG z0_8`WZ$L*v`U!$%@W$Am0V2@ZS%3(X9E0BUo?;peY>d*0C@}y7g2e!&vM{}34739o zqu^Npy01P6dX?A>r_K*Z2J%J8!)WUW`ePeP4z^zyZ>&lQnKcMynfi&S!0E%vPj)0=*vYtPr)2p|a{uvM;IfdB!4oQMQ~n;M`p__2RSe~jT*yCr}nfKeEM0W1NGvk|s4;Nu$% zZn*OCa{#dmVt~m7n;uxre}6Xv3`C$g_u~9uAOgj?uWmvj(Aiml2vj@^RGkNS8qA&_ z@H80hq3g|rsQc=JU`U-GR0KG7eo*&mc%b}g0NvLCj*o&`04Gcsl)sMx+_W|OClB!L zRq>InSzUntiwTbcY!y8eoAj|&3IXhw0Xl0VfX(j*R0inc1xLKqf4Ur?ivWgsg?$Hr zG~v*;D+Ef_1`sBMwSGnhTmn`Hh)w9i3@I6C|1%8r0pzMzNf{`5+uj2Z%YdDS;BF&U z-2-A2aL7pppL&e0E*J&b;|G*sPW|-#fU7eweLsL?py=WLf2-`>dgTD<+yg(GMHzz5 z?*o9jZNN$te056#e@MM$3X~x}1=|L2LmMhf`+xdlEx+0=?gkT43;@NY9U&5v(l&sP zZ!x&#%EylZL@lH702yj~plEA$$tWn=nmHM2OCVRp8wk}suy+*rQXQbcgu4L# Y1BJ?~P=olTK>z>%07*qoM6N<$f~i;kPXGV_ From d5f633a79a5c3ca52b0af1438abd5aa1b93a3ed4 Mon Sep 17 00:00:00 2001 From: CIB Date: Mon, 9 Jul 2012 21:30:35 +0300 Subject: [PATCH 15/15] Radiation protection was unbalanced: A full rad suit would only give 15% protection --- code/modules/mob/living/damage_procs.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/damage_procs.dm b/code/modules/mob/living/damage_procs.dm index dd38ee299fb..49b106e7109 100644 --- a/code/modules/mob/living/damage_procs.dm +++ b/code/modules/mob/living/damage_procs.dm @@ -1,4 +1,3 @@ - /* apply_damage(a,b,c) args @@ -51,7 +50,7 @@ if(PARALYZE) Paralyse(effect/(blocked+1)) if(IRRADIATE) - radiation += max((((effect - (effect*(getarmor(null, "rad")/100))))/(blocked+1)),0)//Rads auto check armor + radiation += max((((effect - (effect*(getarmor(null, "rad")/15))))/(blocked+1)),0)//Rads auto check armor if(STUTTER) if(canstun) // stun is usually associated with stutter stuttering = max(stuttering,(effect/(blocked+1)))